Advertisement
Guest User

k final one

a guest
Jun 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. local Char = game.Players.LocalPlayer.Character
  2. local Head = Char.Head
  3.  
  4. local naeeym2 = Instance.new("BillboardGui",Char)
  5. naeeym2.AlwaysOnTop = true
  6. naeeym2.Size = UDim2.new(5,35,2,35)
  7. naeeym2.StudsOffset = Vector3.new(0,2,0)
  8. naeeym2.Adornee = Head
  9. naeeym2.Name = "Name"
  10.  
  11. local tecks2 = Instance.new("TextLabel",naeeym2)
  12. tecks2.BackgroundTransparency = 1
  13. tecks2.TextScaled = true
  14. tecks2.BorderSizePixel = 0
  15. tecks2.Text = "Weird Nova thingy"
  16. tecks2.Font = "Garamond"
  17. tecks2.TextSize = 30
  18. tecks2.TextStrokeTransparency = 0
  19. while true do
  20. tecks2.TextColor3 = Color3.random()
  21. end
  22. tecks2.TextStrokeColor3 = Color3.new(0, 0, 0)
  23. tecks2.Size = UDim2.new(1,0,0.5,0)
  24. tecks2.Parent = naeeym2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement