Hello so I have the problem that only one player from the server is getting the nametag
function NameTag(plr)
plr.CharacterAdded:Connect(function(character)
script:WaitForChild("Player"):Clone().Parent = character:WaitForChild("Head")
character:WaitForChild("Head").Player.Text.Text = plr.Name
end)
script:WaitForChild("Player"):Clone().Parent = plr.Character:WaitForChild("Head")
plr.Character:WaitForChild("Head").Player.Text.Text = plr.Name
end
game.Players.PlayerAdded:Connect(function(plr)
NameTag(plr)
end)