local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui") game.Players.PlayerAdded:Connect(function(player) if player.Name == "ItzSulfonic" then local clonedgui = billboardgui:Clone() clonedgui.Parent = game.Workspace[player.Name].Head clonedgui.TextLabel.Text = "Owner" clonedgui.TextLabel.TextColor3 = Color3.fromRGB(231, 206, 12) end end)
Im trying to make it so ingame i have the word "Owner" above my head only but when i go to test i get this error
16:10:54.665 - ItzSulfonic is not a valid member of Workspace "Workspace"
Try:
local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui") game.Players.PlayerAdded:Connect(function(player) if player.Name == "ItzSulfonic" then local clonedgui = billboardgui:Clone() local you = game.Workspace:WaitForChild("ItzSulfonic") clonedgui.Parent = you.Head clonedgui.TextLabel.Text = "Owner" clonedgui.TextLabel.TextColor3 = Color3.fromRGB(231, 206, 12) end end)