Advertisement
SomeEditor

Untitled

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