Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.38 KB | None | 0 0
  1. Player=script.Parent.Parent
  2. repeat wait() until Player.Character
  3. Character=Player.Character
  4. Tool=Instance.new("Tool", Character)
  5. Tool.RequiresHandle=false
  6. Tool.Name="Frenzy"
  7. Tool2=Instance.new("Tool", Character)
  8. Tool2.Name="Unleash"
  9. Tool2.RequiresHandle=false
  10. Tool3=Instance.new("Tool",Character)
  11. Tool3.Name="Azure Combat"
  12. Tool3.RequiresHandle=false
  13. first=true
  14. second=true
  15. enabled=true
  16. Regen=1
  17. Health=Character.Humanoid.Health
  18. RS=Character.Torso["Right Shoulder"]
  19. RH=Character.Torso["Right Hip"]
  20. third=true
  21. LS=Character.Torso["Left Shoulder"]
  22. Torso=Character.Torso
  23. LA=Character["Left Arm"]
  24. RA=Character["Right Arm"]
  25. H=Character["Head"]
  26. LL=Character["Left Leg"]
  27. RL=Character["Right Leg"]
  28.  
  29. function Shoot(Part)
  30. local Part=Instance.new("Part")
  31. Part.Parent=workspace
  32. Part.CFrame=Character.Torso.CFrame*CFrame.new(0,0,-4)
  33. Part.Size=Vector3.new(1,1,1.7)
  34. Part.CanCollide=false
  35. local Mesh=Instance.new("SpecialMesh")
  36. Mesh.MeshId="http://www.roblox.com/asset/?id=13640868"
  37. Mesh.TextureId="http://www.roblox.com/asset/?id=64895513"
  38. Mesh.Parent=Part
  39. local bv=Instance.new("BodyVelocity")
  40. bv.Velocity=Character.Torso.CFrame.lookVector*70
  41. bv.MaxForce=Vector3.new(math.huge,math.huge,math.huge)
  42. bv.Parent=Part
  43. local i=math.random(1,6) if i==6 then
  44. Part.Size=Vector3.new(5,5,5)
  45. Mesh.Scale=Vector3.new(4,4,4)
  46. end
  47. game.Debris:AddItem(Part,2)
  48. repeat wait() until Part.Parent
  49.  
  50. local function Damage(Part)
  51. if Part.Parent.Name~= game.Players.LocalPlayer.Name and Part.Parent:FindFirstChild("Humanoid") then
  52. Part.Parent.Humanoid:TakeDamage(1.5)
  53. end
  54. end
  55. Part.Touched:connect(Damage)
  56. end
  57. Tool.Activated:connect(Shoot)
  58.  
  59. function Frenzy(Azure)
  60. if enabled==true then
  61. enabled=false
  62. Character.Humanoid.WalkSpeed=25
  63. local Part2=Instance.new("Part", Character)
  64. Part2.Size=Vector3.new(5,5,5)
  65. local weld=Instance.new("Weld", Character["Torso"])
  66. weld.Part0=Part2.Parent["Torso"]
  67. weld.Part1=Part2
  68. local mesh=Instance.new("SpecialMesh")
  69. mesh.MeshId="http://www.roblox.com/asset/?id=13640868"
  70. mesh.TextureId="http://www.roblox.com/asset/?id=64895513"
  71. mesh.Parent=Part2
  72. mesh.Scale=Vector3.new(4,4,4)
  73. repeat wait()
  74. Regen=Regen+0.5
  75. Character.Humanoid.Health=Character.Humanoid.Health+1.2
  76. until Regen==100
  77. game.Debris:AddItem(Part2,3)
  78. wait(3)
  79. Character.Humanoid.WalkSpeed=16
  80. wait(20)
  81. enabled=true
  82. end
  83. end
  84. Tool2.Activated:connect(Frenzy)
  85.  
  86. function onCombo(Part3)
  87. if first==true then
  88. first=false
  89. local Part=Instance.new("Part",Character)
  90. Part.Size=Vector3.new(1.1,7,1.1)
  91. local Mesh2=Instance.new("SpecialMesh")
  92. Mesh2.MeshId="http://www.roblox.com/asset/?id=13640868"
  93. Mesh2.TextureId="http://www.roblox.com/asset/?id=64895513"
  94. Mesh2.Scale=Vector3.new(1.1,7,1.1)
  95. Mesh2.Parent=Part
  96. local weld2=Instance.new("Weld", Character)
  97. weld2.Part0=Part.Parent["Right Arm"]
  98. weld2.Part1=Part
  99. RS.C0=RS.C0*CFrame.Angles(0,0,1.6)
  100. wait(0.2)
  101. first=true
  102. game.Debris:AddItem(Part,0.2)
  103. RS.C0=RS.C0*CFrame.Angles(0,0,-1.6)
  104. wait()
  105. if second==true then
  106. second=false
  107. RH.C0=RH.C0*CFrame.Angles(0,0,1.6)
  108. weld2.Part0=Character["Right Leg"]
  109. wait(0.5)
  110. second=true
  111. RH.C0=RH.C0*CFrame.Angles(0,0,-1.6)
  112. game.Debris:AddItem(Part,0.2)
  113. wait()
  114. if third==true then
  115. third=false
  116. local Part2=Instance.new("Part", workspace)
  117. Part2.Size=Vector3.new(1,1,1)
  118. Part2.CFrame=Torso.CFrame*CFrame.new(0,0,-4)
  119. local Mesh3=Instance.new("SpecialMesh")
  120. Mesh3.MeshId="http://www.roblox.com/asset/?id=13640868"
  121. Mesh3.TextureId="http://www.roblox.com/asset/?id=64895513"
  122. Mesh3.Parent=Part2
  123. local bv=Instance.new("BodyVelocity")
  124. bv.velocity=Torso.CFrame.lookVector*100
  125. bv.MaxForce=Vector3.new(math.huge,math.huge,math.huge)
  126. bv.Parent=Part2
  127. LS.C0=LS.C0*CFrame.Angles(0,0,-1.6)
  128. wait(0.3)
  129. third=true
  130. LS.C0=LS.C0*CFrame.Angles(0,0,1.6)
  131. cs=game:GetService("Chat")
  132. cs:Chat(Character.Head,"Great energy concentration: mini Azure blast!", "Red")
  133. game.Debris:AddItem(Part2,0.6)
  134. function Damage2(Part2)
  135. if Part2.Parent.Name~=game.Players.LocalPlayer.Name and Part2.Parent:FindFirstChild("Humanoid")
  136. then Part2.Parent.Humanoid:TakeDamage(1)
  137. end
  138. end
  139. Part2.Touched:connect(Damage2)
  140. repeat wait() until Part
  141. wait()
  142. function Damage(Part)
  143. if Part.Parent.Name~= game.Players.LocalPlayer.Name and Part.Parent:FindFirstChild("Humanoid") then
  144. Part.Parent.Humanoid:TakeDamage(3)
  145. end
  146. end
  147. end
  148. end
  149. Part.Touched:connect(Damage)
  150. end
  151. end----pew
  152.  
  153. Tool3.Activated:connect(onCombo)
  154.  
  155. function onBody(Part)
  156. if enabled==true then
  157. enabled=false
  158. wait(5)
  159. enabled=true
  160. if Part.Parent.Name~= game.Players.LocalPlayer.Name and Part.Parent:FindFirstChild("Humanoid") then
  161. Part5=Instance.new("Part", workspace)
  162. Part5.Size=Vector3.new(0.5,0.5,0.5)
  163. Part5.CFrame=Torso.CFrame*CFrame.new(0,0,-4)
  164. mesh4=Instance.new("SpecialMesh")
  165. mesh4.MeshId="http://www.roblox.com/asset/?id=13640868"
  166. mesh4.TextureId="http://www.roblox.com/asset/?id=64895513"
  167. mesh4.Parent=Part5
  168. mesh4.Scale=Vector3.new(0.5,0.5,0.5)
  169. r=Instance.new("RocketPropulsion", Part5)
  170. r.CartoonFactor=1
  171. r.MaxSpeed=200
  172. r.ThrustP=200
  173. r.ThrustD=200
  174. r.MaxThrust=200
  175. r.TurnD=200
  176. r.TurnP=200
  177. r.Target=Part.Parent.Torso
  178. r:Fire()
  179. Part.Parent.Humanoid.WalkSpeed=6
  180. wait(1)
  181. game.Debris:AddItem(Part5,1)
  182. Part.Parent.Humanoid.WalkSpeed=16
  183.  
  184. end
  185. end
  186. end
  187.  
  188. Torso.Touched:connect(onBody)
  189. LA.Touched:connect(onBody)
  190. RA.Touched:connect(onBody)
  191. H.Touched:connect(onBody)
  192. LL.Touched:connect(onBody)
  193. RL.Touched:connect(onBody)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement