Advertisement
ZKiller

Super Power Guy Script [Roblox VoidSB]

Dec 5th, 2018
3,216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.00 KB | None | 0 0
  1. wait(2)
  2. function sound(id,part)
  3. local s = Instance.new("Sound",part)
  4. s.SoundId = id
  5. s.PlayOnRemove = true
  6. s.Parent = nil
  7. end
  8. local p = game.Players.LocalPlayer
  9. local c = p.Character
  10. local mouse = p:GetMouse()
  11. local d = false
  12. local canZaWarudo = true
  13. local music = Instance.new("Sound",c.Head) music.SoundId = "rbxassetid://1836702066" music.Name = "Music" music.Looped = true music.Volume = 2 music:Play()
  14. function fireball()
  15. if d == false then
  16. sound("rbxassetid://182755400",c.Head)
  17. local ball = Instance.new("Part",game.Workspace)
  18. ball.Touched:connect(function(hit)
  19. local h = hit.Parent:findFirstChildOfClass("Humanoid")
  20. if h ~= nil and hit.Parent ~= c then
  21. h.Health = 0
  22. h.MaxHealth = 1
  23. ball.Parent = nil
  24. end
  25. end)
  26. ball.CanCollide = false
  27. ball.Shape = Enum.PartType.Ball
  28. ball.Size = Vector3.new(3,3,3)
  29. ball.BrickColor = BrickColor.new('CGA brown')
  30. ball.Material = Enum.Material.Neon
  31. local force = Instance.new("BodyForce",ball)
  32. force.Force = Vector3.new(0,ball:GetMass()*game.Workspace.Gravity)
  33. ball.CFrame = CFrame.new(c.HumanoidRootPart.Position,mouse.Hit.Position)
  34. ball.Velocity = ball.CFrame.LookVector*100
  35. local fire = Instance.new("ParticleEmitter",ball)
  36. fire.Rate = 999
  37. fire.Lifetime = NumberRange.new(.3,1)
  38. fire.Acceleration = Vector3.new(0,5,0)
  39. fire.Texture = "rbxassetid://571342640"
  40. fire.LightEmission = 1
  41. fire.Color = ColorSequence.new(Color3.fromRGB(255,15,0))
  42. fire.Size = NumberSequence.new(1,0)
  43. game.Debris:AddItem(ball,10)
  44. end
  45. end
  46. function darkrun()
  47. if d == false then
  48. d = true
  49. c.Humanoid.WalkSpeed = 100
  50. sound("rbxassetid://340722848",c.Head)
  51. local ball = Instance.new("Part",c)
  52. ball.Touched:connect(function(hit)
  53. local h = hit.Parent:findFirstChildOfClass("Humanoid")
  54. if h ~= nil and hit.Parent ~= c then
  55. sound("rbxassetid://2523906052",c.Head)
  56. hit.Parent = nil
  57. ball.Size = ball.Size + Vector3.new(.1,.1,.1)
  58. local weld = Instance.new("Weld",ball)
  59. weld.Part0 = ball
  60. weld.Part1 = c.HumanoidRootPart
  61. end
  62. end)
  63. ball.CanCollide = false
  64. ball.Shape = Enum.PartType.Ball
  65. ball.Size = Vector3.new(8,8,8)
  66. ball.BrickColor = BrickColor.new('Dark indigo')
  67. ball.Material = Enum.Material.Neon
  68. ball.Transparency = .3
  69. local fire = Instance.new("ParticleEmitter",ball)
  70. fire.Rate = 999
  71. fire.Lifetime = NumberRange.new(1,2)
  72. fire.LightEmission = 1
  73. fire.Color = ColorSequence.new(Color3.fromRGB(106,0,255))
  74. fire.Size = NumberSequence.new(4,0)
  75. local weld = Instance.new("Weld",ball)
  76. weld.Part1 = ball
  77. weld.Part0 = c.HumanoidRootPart
  78. wait(30)
  79. for i=1,ball.Size.Magnitude/3*10 do
  80. ball.Size = ball.Size - Vector3.new(.1,.1,.1)
  81. local weld = Instance.new("Weld",ball)
  82. weld.Part1 = ball
  83. weld.Part0 = c.HumanoidRootPart
  84. wait(.01)
  85. end
  86. ball.Parent = nil
  87. c.Humanoid.WalkSpeed = 16
  88. d = false
  89. end
  90. end
  91. function zawarudo()
  92. if d == false and canZaWarudo == true then
  93. d = true
  94. canZaWarudo = false
  95. sound("rbxassetid://2415468768",c.Head)
  96. wait(.4)
  97. for i=1,20 do
  98. game.Lighting.Brightness = game.Lighting.Brightness - .05
  99. music.PlaybackSpeed = music.PlaybackSpeed - .05
  100. wait(.01)
  101. end
  102. local t = game.Workspace:GetChildren()
  103. for i=1,#t do
  104. local h = t[i]:findFirstChildOfClass("Humanoid")
  105. if h ~= nil then
  106. if t[i]:findFirstChild("HumanoidRootPart") ~= nil then
  107. if t[i] ~= c then
  108. t[i].HumanoidRootPart.Anchored = true
  109. end
  110. end
  111. end
  112. end
  113. d = false
  114. wait(9)
  115. sound("rbxassetid://864569342",c.Head)
  116. for i=1,20 do
  117. game.Lighting.Brightness = game.Lighting.Brightness + .05
  118. music.PlaybackSpeed = music.PlaybackSpeed + .05
  119. wait(.01)
  120. end
  121. for i=1,#t do
  122. local h = t[i]:findFirstChildOfClass("Humanoid")
  123. if h ~= nil then
  124. if t[i]:findFirstChild("HumanoidRootPart") ~= nil then
  125. if t[i] ~= c then
  126. t[i].HumanoidRootPart.Anchored = false
  127. end
  128. end
  129. end
  130. end
  131. canZaWarudo = true
  132. end
  133. end
  134. mouse.KeyDown:connect(function(k)
  135. if k == "e" then
  136. fireball()
  137. end
  138. if k == "x" then
  139. darkrun()
  140. end
  141. if k == "r" then
  142. zawarudo()
  143. end
  144. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement