DrakerMaker

Hotrod

May 30th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 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. mouse = player:GetMouse()
  12.  
  13. sign.StudsOffset=Vector3.new(0.5,2,0)
  14. sign.Size=UDim2.new(3,0,3,0)
  15. text=Instance.new("TextLabel")
  16. text.Text= "Hotrod"
  17. text.TextScaled = true
  18. text.TextStrokeTransparency = 0
  19. text.TextColor3 = Color3.new(255, 0, 0)
  20. text.TextStrokeColor3 = Color3.new(157, 0, 0)
  21. text.Size=UDim2.new(1,0,1,0)
  22. text.Position=UDim2.new(-0.125,0,-0.25,0)
  23. text.BackgroundTransparency = 1
  24. text.Parent=sign
  25. local trail = Instance.new("Trail")
  26. trail.Color = ColorSequence.new[255, 0, 0]
  27. local A0 = Instance.new("Attachment",avatar.Head)
  28. local A1 = Instance.new("Attachment",avatar.HumanoidRootPart)
  29. A0.Name = "Attachment0"
  30. A1.Name = "Attachment1"
  31. trail.Attachment0 = A0
  32. trail.Attachment1 = A1
Add Comment
Please, Sign In to add comment