Advertisement
SomeEditor

Untitled

Mar 25th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
  2.  
  3. game.Players.PlayerAdded:Connect(function(player)
  4.  
  5. player.CharacterAdded:Connect(function(character)
  6.  
  7. if player.Name == "AwezomeHappy11" then
  8. local clonedgui = billboardgui:Clone()
  9. clonedgui.TextLabel.Text = "MAFIA BOSS"
  10. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(128,0,128)
  11. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  12. end
  13.  
  14. end)
  15.  
  16.  
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement