My script won’t work and the billboardgui will not display the player name. The script is in StarterCharacterScripts
local BillBoardGUI = Instance.new("BillboardGui")
local TextBox = Instance.new("TextBox")
local player = script.Parent
BillBoardGUI.Parent = script.Parent.Head
TextBox.Parent = BillBoardGUI
TextBox.Text = player.Name
TextBox.TextScaled = true
TextBox.BackgroundTransparency = 1
BillBoardGUI.StudsOffset = Vector3.new(0, 2, 0)