Team_Alex

Untitled

Mar 16th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.14 KB | None | 0 0
  1. wait()
  2.  
  3. local min_damage = 3
  4. local max_damage = 7
  5. local super_damage = 55
  6. local newjumpower = 75
  7.  
  8. local Me = game.Players.LocalPlayer
  9. local Character = Me.Character
  10. local Mouse = Me:GetMouse()
  11.  
  12. local Enabled = false
  13. local Action = false
  14. local Running = false
  15.  
  16. local RS = Character.Torso["Right Shoulder"]
  17. local LS = Character.Torso["Left Shoulder"]
  18. local RH = Character.Torso["Right Hip"]
  19. local LH = Character.Torso["Left Hip"]
  20.  
  21. local RL = Character["Right Leg"]
  22. local LL = Character["Left Leg"]
  23. local RA = Character["Right Arm"]
  24. local LA = Character["Left Arm"]
  25.  
  26. local Torso = Character.Torso
  27.  
  28. local Humanoid = Character.Humanoid
  29. Humanoid.MaxHealth = 500
  30. Humanoid.Health = 500
  31. Humanoid.DisplayDistanceType = "None"
  32.  
  33. local SetJumpPower = false
  34.  
  35. local tCharacter
  36.  
  37. function RefreshWelds()
  38. RS.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  39. LS.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  40. LH.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  41. RH.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  42. end
  43.  
  44. local punch = Instance.new("Sound", Character.Head)
  45. punch.SoundId = "rbxassetid://137579113"
  46.  
  47. local kick = Instance.new("Sound", Character.Head)
  48. kick.SoundId = "rbxassetid://174399344"
  49.  
  50. for i,v in pairs(Character:GetChildren()) do
  51. if v:isA("Shirt") or v:isA("Pants") or v:isA("Hat") or v:isA("CharacterMesh") then
  52. v:Destroy()
  53. end
  54. end
  55. local s = Instance.new("Shirt", Character)
  56. local p = Instance.new("Pants", Character)
  57. local h = game:GetService("InsertService"):LoadAsset(5808672)
  58. for i,v in pairs(h:GetChildren()) do
  59. v.Parent=Character
  60. end
  61. h:Destroy()
  62. s.ShirtTemplate = "rbxassetid://164528817"
  63. p.PantsTemplate = "rbxassetid://164981506"
  64.  
  65.  
  66.  
  67. function SuperAssault()
  68. if not Enabled then
  69. RefreshWelds()
  70. Enabled = true
  71. local tCharacter
  72. for i = 1,3 do
  73. RH.C0 = RH.C0 * CFrame.Angles(0, 0, 0.5)
  74. if not Action and Enabled and tCharacter == nil then
  75. RL.Touched:connect(function(x)
  76. if tCharacter == nil then
  77. if x.Parent:findFirstChild("Humanoid") then
  78. tCharacter = x.Parent
  79. end
  80. end
  81. end)
  82. end
  83. wait()
  84. end
  85. wait()
  86. if tCharacter then
  87. tCharacter.Torso.CFrame = Torso.CFrame * CFrame.new(0, 0, -1.5)
  88. tCharacter.Torso.Anchored = true
  89. tCharacter.Humanoid.PlatformStand = true
  90.  
  91. Character.Torso.Anchored = true
  92. Character.Humanoid.PlatformStand = true
  93.  
  94. RefreshWelds()
  95.  
  96. for i = 1,3 do
  97. RS.C0 = RS.C0 * CFrame.Angles(0,0,0.5)
  98. LS.C0 = LS.C0 * CFrame.Angles(0, 0, -0.5)
  99. end
  100.  
  101. for i = 1,6 do
  102. for i = 1,2 do
  103. local m = math.random(1,3)
  104. if m == 1 then
  105. tCharacter.Humanoid:TakeDamage(min_damage, max_damage)
  106. end
  107. RS.C0 = RS.C0 * CFrame.new(0,-0.8,0)
  108. punch:Play()
  109. wait()
  110. RS.C0 = RS.C0 * CFrame.new(0,0.8,0)
  111.  
  112. end
  113. wait(0.1)
  114. for i = 1,2 do
  115. local m = math.random(1,3)
  116. if m == 1 then
  117. tCharacter.Humanoid:TakeDamage(min_damage, max_damage)
  118. end
  119. LS.C0 = LS.C0 * CFrame.new(0,-0.8,0)
  120. punch:Play()
  121. wait()
  122. LS.C0 = LS.C0 * CFrame.new(0,0.8,0)
  123.  
  124. end
  125. end
  126.  
  127.  
  128. for i = 1,5 do
  129.  
  130. RH.C0 = RH.C0 * CFrame.Angles(0, 0, 0.5)
  131. end
  132. kick:Play()
  133. tCharacter.Torso.Anchored = false
  134. tCharacter.Humanoid.PlatformStand = false
  135.  
  136. local bv = Instance.new("BodyVelocity", tCharacter.Torso)
  137. bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  138. bv.velocity = Character.Torso.CFrame.lookVector*80
  139. tCharacter.Humanoid.PlatformStand = true
  140. game.Debris:AddItem(bv, 0.1)
  141. Character.Torso.Anchored = false
  142. Character.Humanoid.PlatformStand = false
  143.  
  144. wait(0.2)
  145.  
  146. for i = 1,5 do
  147. RH.C0 = RH.C0 * CFrame.Angles(0, 0, -0.5)
  148. wait()
  149. end
  150.  
  151. RefreshWelds()
  152. Enabled = false
  153. local tCharacter
  154.  
  155. else
  156. for i = 1,3 do
  157. RH.C0 = RH.C0 * CFrame.Angles(0, 0, -0.5)
  158. wait()
  159. end
  160. wait(0.2)
  161. Enabled = false
  162. RefreshWelds()
  163. local tCharacter
  164. end
  165. print(tCharacter)
  166. end
  167. end
  168.  
  169.  
  170.  
  171. Mouse.KeyDown:connect(function(key)
  172. local key = key:lower()
  173. if key == "f" then
  174. SuperAssault()
  175. elseif key == "r" and not Enabled and not Running then
  176. Enabled = true
  177. Running = true
  178. Instance.new("Sparkles", Torso)
  179. for i =1,3 do RS.C0 = RS.C0 * CFrame.Angles(0, 0, -0.5) end
  180. for i =1,3 do LS.C0 = LS.C0 * CFrame.Angles(0, 0, 0.5) end
  181. Humanoid.WalkSpeed = 50
  182. elseif key == "r" and Enabled and Running then
  183. Enabled = false
  184. Running = false
  185. local sparklez = Torso:FindFirstChild("Sparkles")
  186. if sparklez then
  187. sparklez:Destroy()
  188. end
  189. for i =1,3 do RS.C0 = RS.C0 * CFrame.Angles(0, 0, 0.5) end
  190. for i =1,3 do LS.C0 = LS.C0 * CFrame.Angles(0, 0, -0.5) end
  191. Humanoid.WalkSpeed = 16
  192. elseif key == "c" and not SetJumpPower then
  193. Humanoid.JumpPower = newjumpower
  194. SetJumpPower = true
  195. elseif key == "c" and SetJumpPower then
  196. Humanoid.JumpPower = 50
  197. SetJumpPower = false
  198. end
  199. end)
Add Comment
Please, Sign In to add comment