Advertisement
UhhLegoboy

Epic Rainbow Hyper Thingy

Jan 24th, 2017
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. wait(0)
  2. player = game.Players.LocalPlayer
  3. char = player.Character
  4. extension = "rbxassetid://"
  5.  
  6. --Sparkles
  7. --Torso
  8. red = Instance.new("Sparkles", char.Torso)
  9. red.SparkleColor = Color3.new(255, 0, 0)
  10. orange = Instance.new("Sparkles", char.Torso)
  11. orange.SparkleColor = Color3.new(255,170,0)
  12. yellow = Instance.new("Sparkles", char.Torso)
  13. yellow.SparkleColor = Color3.new(255,255,0)
  14. green = Instance.new("Sparkles", char.Torso)
  15. green.SparkleColor = Color3.new(0,255,127)
  16. blue = Instance.new("Sparkles", char.Torso)
  17. blue.SparkleColor = Color3.new(0,0,255)
  18. purple = Instance.new("Sparkles", char.Torso)
  19. purple.SparkleColor = Color3.new(170,0,255)
  20. --Head
  21. red = Instance.new("Sparkles", char.Head)
  22. red.SparkleColor = Color3.new(255, 0, 0)
  23. orange = Instance.new("Sparkles", char.Head)
  24. orange.SparkleColor = Color3.new(255,170,0)
  25. yellow = Instance.new("Sparkles", char.Head)
  26. yellow.SparkleColor = Color3.new(255,255,0)
  27. green = Instance.new("Sparkles", char.Head)
  28. green.SparkleColor = Color3.new(0,255,127)
  29. blue = Instance.new("Sparkles", char.Head)
  30. blue.SparkleColor = Color3.new(0,0,255)
  31. purple = Instance.new("Sparkles", char.Head)
  32. purple.SparkleColor = Color3.new(170,0,255)
  33. --Left Arm
  34. red = Instance.new("Sparkles", char ["Left Arm"])
  35. red.SparkleColor = Color3.new(255, 0, 0)
  36. orange = Instance.new("Sparkles", char ["Left Arm"])
  37. orange.SparkleColor = Color3.new(255,170,0)
  38. yellow = Instance.new("Sparkles", char ["Left Arm"])
  39. yellow.SparkleColor = Color3.new(255,255,0)
  40. green = Instance.new("Sparkles", char ["Left Arm"])
  41. green.SparkleColor = Color3.new(0,255,127)
  42. blue = Instance.new("Sparkles", char ["Left Arm"])
  43. blue.SparkleColor = Color3.new(0,0,255)
  44. purple = Instance.new("Sparkles", char ["Left Arm"])
  45. purple.SparkleColor = Color3.new(170,0,255)
  46. --Right Arm
  47. red = Instance.new("Sparkles", char ["Right Arm"])
  48. red.SparkleColor = Color3.new(255, 0, 0)
  49. orange = Instance.new("Sparkles", char ["Right Arm"])
  50. orange.SparkleColor = Color3.new(255,170,0)
  51. yellow = Instance.new("Sparkles", char ["Right Arm"])
  52. yellow.SparkleColor = Color3.new(255,255,0)
  53. green = Instance.new("Sparkles", char ["Right Arm"])
  54. green.SparkleColor = Color3.new(0,255,127)
  55. blue = Instance.new("Sparkles", char ["Right Arm"])
  56. blue.SparkleColor = Color3.new(0,0,255)
  57. purple = Instance.new("Sparkles", char ["Right Arm"])
  58. purple.SparkleColor = Color3.new(170,0,255)
  59.  
  60. --Left Leg
  61. red = Instance.new("Sparkles", char ["Left Leg"])
  62. red.SparkleColor = Color3.new(255, 0, 0)
  63. orange = Instance.new("Sparkles", char ["Left Leg"])
  64. orange.SparkleColor = Color3.new(255,170,0)
  65. yellow = Instance.new("Sparkles", char ["Left Leg"])
  66. yellow.SparkleColor = Color3.new(255,255,0)
  67. green = Instance.new("Sparkles", char ["Left Leg"])
  68. green.SparkleColor = Color3.new(0,255,127)
  69. blue = Instance.new("Sparkles", char ["Left Leg"])
  70. blue.SparkleColor = Color3.new(0,0,255)
  71. purple = Instance.new("Sparkles", char ["Left Leg"])
  72. purple.SparkleColor = Color3.new(170,0,255)
  73. --Right Leg
  74. red = Instance.new("Sparkles", char ["Right Leg"])
  75. red.SparkleColor = Color3.new(255, 0, 0)
  76. orange = Instance.new("Sparkles", char ["Right Leg"])
  77. orange.SparkleColor = Color3.new(255,170,0)
  78. yellow = Instance.new("Sparkles", char ["Right Leg"])
  79. yellow.SparkleColor = Color3.new(255,255,0)
  80. green = Instance.new("Sparkles", char ["Right Leg"])
  81. green.SparkleColor = Color3.new(0,255,127)
  82. blue = Instance.new("Sparkles", char ["Right Leg"])
  83. blue.SparkleColor = Color3.new(0,0,255)
  84. purple = Instance.new("Sparkles", char ["Right Leg"])
  85. purple.SparkleColor = Color3.new(170,0,255)
  86.  
  87. --Sound
  88. sound = Instance.new("Sound", char.Torso)
  89. sound.SoundId = extension .. "413209444"
  90. sound.Looped = true
  91. sound.MaxDistance = 100
  92. sound : play()
  93.  
  94. --Face
  95. char.Head.face.Texture = extension .. "42070872"
  96.  
  97. --Stats
  98. char.Humanoid.MaxHealth = 1000
  99. char.Humanoid.Health = 1000
  100. char.Humanoid.WalkSpeed = 50
  101. char.Humanoid.JumpPower = 500
  102.  
  103. loop = 0
  104. repeat
  105. char.Humanoid.WalkSpeed = char.Humanoid.WalkSpeed+5
  106. loop = loop+1
  107. wait(5)
  108. until loop == 5
  109. Explode = Instance.new("Sound", workspace)
  110. Explode.SoundId = extension .. "165970126"
  111. Explode.Volume = 1
  112. Explode : play()
  113. char.Humanoid.WalkSpeed = 100
  114. sound.PlaybackSpeed = 1.5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement