Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. CV="Maroon"
  2. Player = game.Players.LocalPlayer
  3. Character = Player.Character
  4. local txt = Instance.new("BillboardGui", Character)
  5. txt.Adornee = Character .Head
  6. txt.Name = "_status"
  7. txt.Size = UDim2.new(2, 0, 1.2, 0)
  8. txt.StudsOffset = Vector3.new(-9, 8, 0)
  9. local text = Instance.new("TextLabel", txt)
  10. text.Size = UDim2.new(10, 0, 7, 0)
  11. text.FontSize = "Size24"
  12. text.TextScaled = true
  13. text.TextTransparency = 0
  14. text.BackgroundTransparency = 1
  15. text.TextTransparency = 0
  16. text.TextStrokeTransparency = 0
  17. text.Font = "Bodoni"
  18. text.TextStrokeColor3 = Color3.new(255,0,0)
  19.  
  20. v=Instance.new("Part")
  21. v.Name = "ColorBrick"
  22. v.Parent=Player.Character
  23. v.FormFactor="Symmetric"
  24. v.Anchored=true
  25. v.CanCollide=false
  26. v.BottomSurface="Smooth"
  27. v.TopSurface="Smooth"
  28. v.Size=Vector3.new(3,3,3)
  29. v.Transparency=1
  30. v.CFrame=Character.Torso.CFrame
  31. v.BrickColor=BrickColor.new(CV)
  32. v.Transparency=1
  33. text.TextColor3 = Color3.new(0,0,0)
  34. v.Shape="Block"
  35. text.Text = "Maniac Agent"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement