Advertisement
95audrey

Super

Jan 12th, 2016
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. Player=script.Parent.Parent
  2. mouse=Player:GetMouse()
  3. function Overdrive(key)
  4. Key = key:lower(f)
  5. if key == "g" then
  6. script.Disabled = true
  7. BlastRing = game.Workspace.SuperSayainPack.BlastRing:Clone()
  8. BlastRing.Parent = Player.Character
  9. W = Instance.new("Weld", Player.Character["Right Leg"])
  10. W.Part0 = Player.Character ["Right Leg"]
  11. W.Part1 = BlastRing
  12. W.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) *CFrame.new(0, 0, 0)
  13. BlastRing.CanCollide = false
  14. BlastRing.Anchored = false
  15. game:GetService("Chat"):Chat(Player.Character.Torso, "I'LL SHOW YOU THE POWER OF THE ALPHA AURA!", Enum.ChatColor.Red)
  16. BlastRing.Transparency = 1
  17. BlastRing.BlastMesh.Scale = Vector3.new(5, 4, 5)
  18. local colors = {"Red","Green","Blue"}
  19. Charge = script.Charge:Clone()
  20. Charge.Parent = Player.Character.Torso
  21. Imbue = script.Imbue:Clone()
  22. Imbue.Parent = Player.Character.Torso
  23. w = 0
  24. w2 = 1
  25. AnimationLookdown = script.Lookdown:Clone()
  26. AnimationLookdown.Parent = Player.Character
  27. wait(2)
  28. for a = 1,10 do
  29. s = Player.Character.Humanoid:LoadAnimation(Player.Character.Lookdown)
  30. s:Play()
  31. w2 = w2-0.1
  32. BlastRing.Transparency = w2
  33. game:GetService("Chat"):Chat(Player.Character.Torso, "GRAH!", colors[math.random(1,3)])
  34. Charge:Play()
  35. wait(1)
  36. end
  37. wait(1)
  38. Imbue:Play()
  39. BlastRing.Transparency = 0
  40. game:GetService("Chat"):Chat(Player.Character.Torso, "Alpha......", colors[math.random(1,3)])
  41. script.Parent.Lookdown.Disabled = false
  42. for i = 0,4 do
  43. w = w+0.1
  44. BlastRing.Transparency = w
  45. wait(0.1)
  46. end
  47. s:Play()
  48. BlastRing.Transparency = 1
  49. wait(4.6)
  50. script.Parent.Lookdown.Disabled = true
  51. Breaker = script.Break:Clone()
  52. Breaker.Parent = Player.Character.Torso
  53. Player.Character.Torso.Break:Play()
  54. BlastRing.Transparency = 0
  55. e = script.Powerup:Clone()
  56. e.Parent = Player.Character
  57. r=Player.Character.Humanoid:LoadAnimation(Player.Character.Powerup)
  58. r:Play()
  59. local d = Player.Character:GetChildren()
  60. for i=1, #d do
  61. if (d[i].className == "Hat") then
  62. d[i]:remove()
  63. end
  64. end
  65. for e = 0,30 do
  66. BlastRing.BlastMesh.Scale = Vector3.new(5, e, 5)
  67. wait()
  68. end
  69. game:GetService("Chat"):Chat(Player.Character.Torso, "OVERDRIVE!", colors[math.random(1,3)])
  70. wait(1)
  71. clone=script.SuperHair:Clone()
  72. clone.Parent = Player.Character
  73. clone.Handle.Anchored = false
  74. clone.Handle.Transparency = 0
  75. BlastRing.Transparency = 1
  76. game:GetService("Chat"):Chat(Player.Character.Torso, "You cannot handle my strength!", colors[math.random(1,3)])
  77. Player.Character.Humanoid.MaxHealth = 500
  78. Player.Character.Humanoid.Health = Player.Character.Humanoid.MaxHealth
  79. Fire = BlastRing.Fire:Clone()
  80. Fire.Enabled = true
  81. Fire.Parent = Player.Character.Torso
  82. BlastRing:Destroy()
  83. Bomb = game.Workspace.SuperSayainPack["Energy Bomb"]:Clone()
  84. Bomb.Parent = script.Parent
  85. Bomb.Handle.Anchored = false
  86. script.Disabled = true
  87. end
  88. end
  89. mouse.KeyDown:connect(Overdrive)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement