local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui") game.Players.PlayerAdded:Connec(function(player) player.CharacterAdded:Connect(function(character) if player.Name == "milgamer5" then local clonedgui = billboardgui:Clone() clonedgui.TextLabel.Text = "Developer" clonedgui.TextLabel.TextColor3 = Color3.fromRGB(255,255,0) clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head end end) -- here the problem
You forgot to put an end and you also misspelled Connect. These are small problems, next time you should carefully read your script.
local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui") game.Players.PlayerAdded:Connect(function(player) -- And you also misspelled Connect player.CharacterAdded:Connect(function(character) if player.Name == "milgamer5" then local clonedgui = billboardgui:Clone() clonedgui.TextLabel.Text = "Developer" clonedgui.TextLabel.TextColor3 = Color3.fromRGB(255,255,0) clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head end end) -- You forgot to put an end here! end)