DrakerMaker

Nebuladude

May 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. local avatar = player.Character
  4.  
  5. local sign = Instance.new("BillboardGui")
  6.  
  7. sign.Adornee = avatar.Head
  8.  
  9. sign.Parent = avatar.Head
  10.  
  11.  
  12. sign.StudsOffset=Vector3.new(0.5,2,0)
  13. sign.Size=UDim2.new(3,0,3,0)
  14. text=Instance.new("TextLabel")
  15. text.Text= "Nebuladude"
  16. text.TextScaled = true
  17. text.TextColor3 = Color3.new(168, 0, 214)
  18. text.Size=UDim2.new(1,0,1,0)
  19. text.Position=UDim2.new(-0.125,0,-0.25,0)
  20. text.BackgroundTransparency = 1
  21. text.Parent=sign
Add Comment
Please, Sign In to add comment