Hello,
So I have made a overhead name tag and things for my game but I am having an issue with my script which is confusing me in why it will not work. If anyone could point out the mistake I have made if one that will be great!
Server Script:
game.Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
local HeadUI = game.ServerStorage.Overhead:Clone()
HeadUI.Parent = Character.Head
HeadUI.Name.Text = Player.Name
end)
end)