local Players = game:GetService("Players"):GetChildren()
local highlight = Instance.new("Highlight")
highlight.Name = "Highlight"


for i,v in pairs(Players) do
    repeat wait() until v.Character
    local highlightClone = highlight:Clone()
    highlightClone.Adornee = v.Character
    highlightClone.Parent = v.Character:FindFirstChild("HumanoidRootPart")
    highlightClone.AlwaysOnTop.Value = true
end


game.Players.PlayerAdded:Connect(function(Player)
    repeat wait() until player.Character
    local highlight = highlight:Clone()
    highlightClone.Adornee = player.Character
    highlightClone.Parent = player.Character:FindFirstChild("HumanoidRootPart")
    highlightClone.AlwaysOnTop.Value = true
end)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: