Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local billboardgui = game:GetService("ServerStorage"):Waitforchild("BillboardGui")
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(character)
- if player.Name == "KodingKid" then --your name goes here
- local clonedgui = billboardgui:Clone()
- clonedgui.TextLabel.Text = "CREATOR" --any title you want
- clonedgui.TextLabel.TextColor3 = Color3.fromRGB(144,9,123) --any colour you want
- clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement