Advertisement
DreamGamer_real

Overhead gui for me

Oct 18th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 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 == "DreamGamer_real" then
  8. local clonedgui = billboardgui:Clone()
  9. clonedgui.TextLabel.Text = "DreamGamer_real [SGT]"
  10. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(251,255,10)
  11. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  12. end
  13. end)
  14.  
  15.  
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement