What would you do? I know you have to create the GUI and implement it in the head, but how do you make it so it says the player`s name?
Put this in a LocalScript in StarterPack
1 | name = Instance.new( "BillboardGui" ) |
2 | name.BackgroundTransparency = 1 |
3 | name.Parent = game.Players.LocalPlayer.Character.Head |
4 | name.Text = game.Players.LocalPlayer.Name |
EDIT #2