Advertisement
subaru112g

raged me xd

Jan 24th, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. local plr = owner
  2. local char = owner.Character
  3.  
  4. local BillboardGui = Instance.new("BillboardGui")
  5. local TextLabel = Instance.new("TextLabel")
  6.  
  7. BillboardGui.Name = "raged"
  8. BillboardGui.Parent = char.Head
  9. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10. BillboardGui.AlwaysOnTop = true
  11. BillboardGui.ExtentsOffset = Vector3.new(0, 3, 0)
  12. BillboardGui.LightInfluence = 1
  13. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  14.  
  15. TextLabel.Parent = BillboardGui
  16. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  17. TextLabel.BackgroundTransparency = 1
  18. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  19. TextLabel.Font = Enum.Font.SourceSans
  20. TextLabel.Text = "RAGED SUBARU112"
  21. TextLabel.TextColor3 = Color3.new(255, 0, 0)
  22. TextLabel.TextScaled = true
  23. TextLabel.TextSize = 14
  24. TextLabel.TextWrapped = true
  25.  
  26. while true do
  27. wait()
  28. TextLabel.Rotation = math.random(-30,30)
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement