Advertisement
Ryukinen

Untitled

Jun 23rd, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 139.82 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6. local lleg = char["Left Leg"]
  7. local rleg = char["Right Leg"]
  8. local hed = char.Head
  9. local torso = char.Torso
  10. local hum = char.Humanoid
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local deb = false
  14. local shot = 0
  15. local debris=game:service"Debris"
  16. local l = game:GetService("Lighting")
  17. local rs = game:GetService("RunService").RenderStepped
  18. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  19. math.randomseed(os.time())
  20. for i,v in pairs(char:children()) do
  21. if v:IsA("Hat") then
  22. v:Destroy()
  23. end
  24. end
  25. for i,v in pairs (hed:GetChildren()) do
  26. if v:IsA("Sound") then
  27. v:Destroy()
  28. end
  29. end
  30. ----------------------------------------------------
  31. Debounces = {
  32. CanAttack = true;
  33. NoIdl = false;
  34. Slashing = false;
  35. Slashed = false;
  36. RPunch = false;
  37. RPunched = false;
  38. LPunch = false;
  39. LPunched = false;
  40. }
  41. local Touche = {char.Name, }
  42. ----------------------------------------------------
  43. hed.face.Texture = "rbxassetid://382682899"
  44. char["Body Colors"].HeadColor = BrickColor.new("Lime green")
  45. char["Body Colors"].TorsoColor = BrickColor.new("Really black")
  46. char["Body Colors"].LeftArmColor = BrickColor.new("Lime green")
  47. char["Body Colors"].RightArmColor = BrickColor.new("Lime green")
  48. char["Body Colors"].LeftLegColor = BrickColor.new("Really black")
  49. char["Body Colors"].RightLegColor = BrickColor.new("Lime green")
  50. ----------------------------------------------------
  51. ypcall(function()
  52. char.Shirt:Destroy()
  53. char.Pants:Destroy()
  54. shirt = Instance.new("Shirt", char)
  55. shirt.Name = "Shirt"
  56. pants = Instance.new("Pants", char)
  57. pants.Name = "Pants"
  58. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=181553398"
  59. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=181553813"
  60. end)
  61. ----------------------------------------------------
  62. function lerp(a, b, t) -- Linear interpolation
  63. return a + (b - a)*t
  64. end
  65.  
  66. function slerp(a, b, t) --Spherical interpolation
  67. dot = a:Dot(b)
  68. if dot > 0.99999 or dot < -0.99999 then
  69. return t <= 0.5 and a or b
  70. else
  71. r = math.acos(dot)
  72. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  73. end
  74. end
  75.  
  76. function matrixInterpolate(a, b, t)
  77. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  78. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  79. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  80. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  81. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  82. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  83. local t = v1:Dot(v2)
  84. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  85. return CFrame.new()
  86. end
  87. return CFrame.new(
  88. v0.x, v0.y, v0.z,
  89. v1.x, v1.y, v1.z,
  90. v2.x, v2.y, v2.z,
  91. v3.x, v3.y, v3.z)
  92. end
  93. ----------------------------------------------------
  94. function genWeld(a,b)
  95. local w = Instance.new("Weld",a)
  96. w.Part0 = a
  97. w.Part1 = b
  98. return w
  99. end
  100. function weld(a, b)
  101. local weld = Instance.new("Weld")
  102. weld.Name = "W"
  103. weld.Part0 = a
  104. weld.Part1 = b
  105. weld.C0 = a.CFrame:inverse() * b.CFrame
  106. weld.Parent = a
  107. return weld;
  108. end
  109. ----------------------------------------------------
  110. function Lerp(c1,c2,al)
  111. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  112. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  113. for i,v in pairs(com1) do
  114. com1[i] = v+(com2[i]-v)*al
  115. end
  116. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  117. end
  118. ----------------------------------------------------
  119. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  120. local wld = Instance.new("Weld", wp1)
  121. wld.Part0 = wp0
  122. wld.Part1 = wp1
  123. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  124. end
  125. ----------------------------------------------------
  126. function weld5(part0, part1, c0, c1)
  127. weeld=Instance.new("Weld", part0)
  128. weeld.Part0=part0
  129. weeld.Part1=part1
  130. weeld.C0=c0
  131. weeld.C1=c1
  132. return weeld
  133. end
  134. ----------------------------------------------------
  135. function HasntTouched(plrname)
  136. local ret = true
  137. for _, v in pairs(Touche) do
  138. if v == plrname then
  139. ret = false
  140. end
  141. end
  142. return ret
  143. end
  144. ----------------------------------------------------
  145. newWeld(torso, larm, -1.5, 0.5, 0)
  146. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  147. newWeld(torso, rarm, 1.5, 0.5, 0)
  148. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  149. newWeld(torso, hed, 0, 1.5, 0)
  150. newWeld(torso, lleg, -0.5, -1, 0)
  151. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  152. newWeld(torso, rleg, 0.5, -1, 0)
  153. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  154. newWeld(root, torso, 0, -1, 0)
  155. torso.Weld.C1 = CFrame.new(0, -1, 0)
  156. ----------------------------------------------------
  157. z = Instance.new("Sound", char)
  158. z.SoundId = "rbxassetid://292481006"
  159. z.Looped = true
  160. z.Pitch = 1
  161. z.Volume = 1
  162. wait(.3)
  163. z:Play()
  164. ----------------------------------------------------
  165. local Transforming = true
  166. hum.WalkSpeed = 0
  167. local fx = Instance.new("Part",torso)
  168. fx.Anchored = true
  169. fx.Material = "Neon"
  170. fx.CanCollide = false
  171. fx.Locked = true
  172. fx.Transparency = 1
  173. fx.Material = "SmoothPlastic"
  174. fx.Size = Vector3.new(1,1,1)
  175. fx.TopSurface = "SmoothNoOutlines"
  176. fx.BottomSurface = "SmoothNoOutlines"
  177. fx.BrickColor = BrickColor.new("Dark green")
  178. fxm = Instance.new("SpecialMesh",fx)
  179. fxm.MeshType = "Sphere"
  180. fxm.Scale = Vector3.new(1,1,1)
  181. for i = 1, 20 do rs:wait()
  182. fx.Transparency = fx.Transparency - (1/20)
  183. fx.CFrame = torso.CFrame
  184. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  185. rs:wait()
  186. end
  187. ----------------------------------------------------
  188. local m = Instance.new("Model")
  189. m.Name = "Hair"
  190. p1 = Instance.new("Part", m)
  191. p1.BrickColor = BrickColor.new("Bright green")
  192. p1.FormFactor = Enum.FormFactor.Symmetric
  193. p1.Size = Vector3.new(1, 1, 1)
  194. p1.CFrame = CFrame.new(-2.49043155, 8.24595642, -3.40113306, -5.48362732e-006, -0.978699088, 0.205299795, 3.27825546e-007, -0.205299854, -0.978699148, 1, -5.28991222e-006, 1.48639083e-006)
  195. p1.CanCollide = false
  196. p1.Locked = true
  197. p1.BottomSurface = Enum.SurfaceType.Smooth
  198. p1.TopSurface = Enum.SurfaceType.Smooth
  199. b1 = Instance.new("SpecialMesh", p1)
  200. b1.MeshId = "http://www.roblox.com/asset/?id=0"
  201. b1.TextureId = ""
  202. b1.MeshType = Enum.MeshType.FileMesh
  203. b1.Name = "Mesh"
  204. b1.VertexColor = Vector3.new(0, 0, 0)
  205. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  206. p2 = Instance.new("Part", m)
  207. p2.BrickColor = BrickColor.new("Pastel brown")
  208. p2.Transparency = 1
  209. p2.Name = "Head"
  210. p2.FormFactor = Enum.FormFactor.Symmetric
  211. p2.Size = Vector3.new(2, 1, 1)
  212. p2.CFrame = CFrame.new(-1.70008016, 8.14794922, -3.40013027, 4.24603923e-006, 7.4505806e-008, -1, -1.50268988e-007, 1, 1.49011612e-008, 1.00000012, 6.79109462e-008, 4.23316806e-006)
  213. p2.CanCollide = false
  214. p2.Locked = true
  215. p2.TopSurface = Enum.SurfaceType.Smooth
  216. b2 = Instance.new("SpecialMesh", p2)
  217. b2.MeshType = Enum.MeshType.Head
  218. b2.Name = "Mesh"
  219. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  220. p3 = Instance.new("Part", m)
  221. p3.BrickColor = BrickColor.new("Dark green")
  222. p3.FormFactor = Enum.FormFactor.Symmetric
  223. p3.Size = Vector3.new(2, 2, 2)
  224. p3.CFrame = CFrame.new(-1.70003617, 8.71796131, -3.4000442, 2.57710985e-006, 6.95607483e-008, -1.00000012, -1.20466638e-007, 1, 9.95640903e-009, 1.00000024, 3.81086345e-008, 2.56423846e-006)
  225. p3.CanCollide = false
  226. p3.Locked = true
  227. p3.BottomSurface = Enum.SurfaceType.Smooth
  228. p3.TopSurface = Enum.SurfaceType.Smooth
  229. b3 = Instance.new("SpecialMesh", p3)
  230. b3.MeshId = "http://www.roblox.com/asset/?id=0"
  231. b3.TextureId = ""
  232. b3.MeshType = Enum.MeshType.FileMesh
  233. b3.Name = "Mesh"
  234. b3.VertexColor = Vector3.new(0, 0, 0)
  235. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  236. p4 = Instance.new("Part", m)
  237. p4.BrickColor = BrickColor.new("Bright green")
  238. p4.FormFactor = Enum.FormFactor.Symmetric
  239. p4.Size = Vector3.new(1, 1, 1)
  240. p4.CFrame = CFrame.new(-1.77981007, 8.84795475, -3.40016508, 5.79576135e-006, 7.9450956e-008, -1.00000012, -1.80071311e-007, 1, 1.98458743e-008, 1.00000024, 9.77132402e-008, 5.78289018e-006)
  241. p4.CanCollide = false
  242. p4.Locked = true
  243. p4.BottomSurface = Enum.SurfaceType.Smooth
  244. p4.TopSurface = Enum.SurfaceType.Smooth
  245. b4 = Instance.new("SpecialMesh", p4)
  246. b4.MeshId = "http://www.roblox.com/asset/?id=0"
  247. b4.TextureId = ""
  248. b4.MeshType = Enum.MeshType.FileMesh
  249. b4.Name = "Mesh"
  250. b4.VertexColor = Vector3.new(0, 0, 0)
  251. p5 = Instance.new("Part", m)
  252. p5.BrickColor = BrickColor.new("Dark green")
  253. p5.FormFactor = Enum.FormFactor.Symmetric
  254. p5.Size = Vector3.new(1, 1, 1)
  255. p5.CFrame = CFrame.new(-1.70003772, 8.46796131, -3.40004301, -3.43517968e-007, 2.98088111e-007, -1, -1.00421907e-007, 1, 2.38484063e-007, 1.00000012, 1.80640072e-008, -3.56389592e-007)
  256. p5.CanCollide = false
  257. p5.Locked = true
  258. p5.BottomSurface = Enum.SurfaceType.Smooth
  259. p5.TopSurface = Enum.SurfaceType.Smooth
  260. b5 = Instance.new("SpecialMesh", p5)
  261. b5.MeshId = "http://www.roblox.com/asset/?id=0"
  262. b5.TextureId = ""
  263. b5.MeshType = Enum.MeshType.FileMesh
  264. b5.Name = "Mesh"
  265. b5.VertexColor = Vector3.new(0, 0, 0)
  266. b5.Scale = Vector3.new(1, 0.899999976, 1)
  267. p6 = Instance.new("Part", m)
  268. p6.BrickColor = BrickColor.new("Bright green")
  269. p6.FormFactor = Enum.FormFactor.Symmetric
  270. p6.Size = Vector3.new(1, 1, 1)
  271. p6.CFrame = CFrame.new(-1.89967656, 8.58795834, -3.44990659, -5.81936433e-007, 5.36502284e-007, -0.99999994, -1.3998249e-007, 1, 4.76898265e-007, 1, 5.76247672e-008, -5.94808171e-007)
  272. p6.CanCollide = false
  273. p6.Locked = true
  274. p6.BottomSurface = Enum.SurfaceType.Smooth
  275. p6.TopSurface = Enum.SurfaceType.Smooth
  276. b6 = Instance.new("SpecialMesh", p6)
  277. b6.MeshId = "http://www.roblox.com/asset/?id=0"
  278. b6.TextureId = ""
  279. b6.MeshType = Enum.MeshType.FileMesh
  280. b6.Name = "Mesh"
  281. b6.VertexColor = Vector3.new(0, 0, 0)
  282. p7 = Instance.new("Part", m)
  283. p7.BrickColor = BrickColor.new("Dark green")
  284. p7.FormFactor = Enum.FormFactor.Symmetric
  285. p7.Size = Vector3.new(1, 1, 1)
  286. p7.CFrame = CFrame.new(-1.89918542, 8.31796837, -3.50097537, -4.62727087e-007, 5.36502228e-007, -0.999999881, -1.39982518e-007, 1, 4.76898208e-007, 0.99999994, 5.76247459e-008, -4.75598938e-007)
  287. p7.CanCollide = false
  288. p7.Locked = true
  289. p7.BottomSurface = Enum.SurfaceType.Smooth
  290. p7.TopSurface = Enum.SurfaceType.Smooth
  291. b7 = Instance.new("SpecialMesh", p7)
  292. b7.MeshId = "http://www.roblox.com/asset/?id=0"
  293. b7.TextureId = ""
  294. b7.MeshType = Enum.MeshType.FileMesh
  295. b7.Name = "Mesh"
  296. b7.VertexColor = Vector3.new(0, 0, 0)
  297. p8 = Instance.new("Part", m)
  298. p8.BrickColor = BrickColor.new("Lime green")
  299. p8.FormFactor = Enum.FormFactor.Symmetric
  300. p8.Size = Vector3.new(1, 1, 1)
  301. p8.CFrame = CFrame.new(-2.62433338, 7.66397905, -3.4010179, -1.17798254e-006, -0.805111349, 0.593123376, -2.5008859e-007, -0.593123615, -0.805111527, 0.999999881, -9.58229293e-007, 4.4941558e-007)
  302. p8.CanCollide = false
  303. p8.Locked = true
  304. p8.BottomSurface = Enum.SurfaceType.Smooth
  305. p8.TopSurface = Enum.SurfaceType.Smooth
  306. b8 = Instance.new("SpecialMesh", p8)
  307. b8.MeshId = "http://www.roblox.com/asset/?id=0"
  308. b8.TextureId = ""
  309. b8.MeshType = Enum.MeshType.FileMesh
  310. b8.Name = "Mesh"
  311. b8.VertexColor = Vector3.new(0, 0, 0)
  312. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  313. p9 = Instance.new("Part", m)
  314. p9.BrickColor = BrickColor.new("Lime green")
  315. p9.FormFactor = Enum.FormFactor.Symmetric
  316. p9.Size = Vector3.new(2, 1, 2)
  317. p9.CFrame = CFrame.new(-1.76505995, 8.56096649, -3.40065479, -9.73168881e-007, -0.0995008349, -0.995037436, -1.70322267e-007, 0.995037675, -0.0995009243, 1, 1.13823972e-007, -6.80968242e-007)
  318. p9.CanCollide = false
  319. p9.Locked = true
  320. p9.BottomSurface = Enum.SurfaceType.Smooth
  321. p9.TopSurface = Enum.SurfaceType.Smooth
  322. b9 = Instance.new("SpecialMesh", p9)
  323. b9.MeshId = "http://www.roblox.com/asset/?id=0"
  324. b9.TextureId = ""
  325. b9.MeshType = Enum.MeshType.FileMesh
  326. b9.Name = "Mesh"
  327. b9.VertexColor = Vector3.new(0, 0, 0)
  328. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  329. p10 = Instance.new("Part", m)
  330. p10.BrickColor = BrickColor.new("Lime green")
  331. p10.FormFactor = Enum.FormFactor.Symmetric
  332. p10.Size = Vector3.new(1, 1, 1)
  333. p10.CFrame = CFrame.new(-2.0207715, 9.06097031, -3.39961624, -1.10652763e-006, -0.683569431, -0.729885519, -2.85231891e-007, 0.729885638, -0.68356967, 1.00000012, -3.22293062e-007, -8.40051371e-007)
  334. p10.CanCollide = false
  335. p10.Locked = true
  336. p10.BottomSurface = Enum.SurfaceType.Smooth
  337. p10.TopSurface = Enum.SurfaceType.Smooth
  338. b10 = Instance.new("SpecialMesh", p10)
  339. b10.MeshId = "http://www.roblox.com/asset/?id=0"
  340. b10.TextureId = ""
  341. b10.MeshType = Enum.MeshType.FileMesh
  342. b10.Name = "Mesh"
  343. b10.VertexColor = Vector3.new(0, 0, 0)
  344. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  345. p11 = Instance.new("Part", m)
  346. p11.BrickColor = BrickColor.new("Lime green")
  347. p11.FormFactor = Enum.FormFactor.Symmetric
  348. p11.Size = Vector3.new(1, 1, 1)
  349. p11.CFrame = CFrame.new(-2.16468835, 8.78595829, -3.40089417, -1.41617738e-006, -0.989475727, -0.144699216, -4.36450762e-007, 0.144699067, -0.989476085, 1.00000024, -9.47996682e-007, -7.38401468e-007)
  350. p11.CanCollide = false
  351. p11.Locked = true
  352. p11.BottomSurface = Enum.SurfaceType.Smooth
  353. p11.TopSurface = Enum.SurfaceType.Smooth
  354. b11 = Instance.new("SpecialMesh", p11)
  355. b11.MeshId = "http://www.roblox.com/asset/?id=0"
  356. b11.TextureId = ""
  357. b11.MeshType = Enum.MeshType.FileMesh
  358. b11.Name = "Mesh"
  359. b11.VertexColor = Vector3.new(0, 0, 0)
  360. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  361. p12 = Instance.new("Part", m)
  362. p12.BrickColor = BrickColor.new("Lime green")
  363. p12.FormFactor = Enum.FormFactor.Custom
  364. p12.Size = Vector3.new(1, 3.5, 1)
  365. p12.CFrame = CFrame.new(-3.74216318, 6.74288082, -3.40101933, -1.20476273e-006, -0.553697288, 0.832718134, -3.31002866e-007, -0.832718611, -0.553697169, 1.00000036, -8.7345768e-007, 3.69213154e-007)
  366. p12.CanCollide = false
  367. p12.Locked = true
  368. p12.BottomSurface = Enum.SurfaceType.Smooth
  369. p12.TopSurface = Enum.SurfaceType.Smooth
  370. b12 = Instance.new("SpecialMesh", p12)
  371. b12.MeshId = "http://www.roblox.com/asset/?id=0"
  372. b12.TextureId = ""
  373. b12.MeshType = Enum.MeshType.FileMesh
  374. b12.Name = "Mesh"
  375. b12.VertexColor = Vector3.new(0, 0, 0)
  376. b12.Scale = Vector3.new(1, 3, 1.29999995)
  377. p13 = Instance.new("Part", m)
  378. p13.BrickColor = BrickColor.new("Lime green")
  379. p13.FormFactor = Enum.FormFactor.Custom
  380. p13.Size = Vector3.new(1, 2, 1)
  381. p13.CFrame = CFrame.new(-3.32689047, 6.86741829, -3.40101862, -9.81709945e-007, -0.319307148, 0.947651446, -5.6545997e-007, -0.947651923, -0.31930691, 1.00000048, -8.39551717e-007, 1.79318391e-007)
  382. p13.CanCollide = false
  383. p13.Locked = true
  384. p13.BottomSurface = Enum.SurfaceType.Smooth
  385. p13.TopSurface = Enum.SurfaceType.Smooth
  386. b13 = Instance.new("SpecialMesh", p13)
  387. b13.MeshId = "http://www.roblox.com/asset/?id=0"
  388. b13.TextureId = ""
  389. b13.MeshType = Enum.MeshType.FileMesh
  390. b13.Name = "Mesh"
  391. b13.VertexColor = Vector3.new(0, 0, 0)
  392. b13.Scale = Vector3.new(1, 3, 1.29999995)
  393. p14 = Instance.new("Part", m)
  394. p14.BrickColor = BrickColor.new("Lime green")
  395. p14.FormFactor = Enum.FormFactor.Custom
  396. p14.Size = Vector3.new(1, 2, 1)
  397. p14.CFrame = CFrame.new(-3.02689028, 7.96740961, -3.40101862, -1.33478545e-006, -0.750354111, 0.661036491, -5.20037702e-008, -0.661037207, -0.750354171, 1.0000006, -6.31296757e-007, 2.01137496e-007)
  398. p14.CanCollide = false
  399. p14.Locked = true
  400. p14.BottomSurface = Enum.SurfaceType.Smooth
  401. p14.TopSurface = Enum.SurfaceType.Smooth
  402. b14 = Instance.new("SpecialMesh", p14)
  403. b14.MeshId = "http://www.roblox.com/asset/?id=0"
  404. b14.TextureId = ""
  405. b14.MeshType = Enum.MeshType.FileMesh
  406. b14.Name = "Mesh"
  407. b14.VertexColor = Vector3.new(0, 0, 0)
  408. b14.Scale = Vector3.new(1, 3, 1.29999995)
  409. p15 = Instance.new("Part", m)
  410. p15.BrickColor = BrickColor.new("Lime green")
  411. p15.FormFactor = Enum.FormFactor.Custom
  412. p15.Size = Vector3.new(1, 2.5, 1)
  413. p15.CFrame = CFrame.new(-2.96531463, 7.75924349, -2.90101862, 0.342019022, -0.520305753, 0.782499552, -1.1920929e-007, -0.832718909, -0.553697407, 0.939693451, 0.189374983, -0.284806281)
  414. p15.CanCollide = false
  415. p15.Locked = true
  416. p15.BottomSurface = Enum.SurfaceType.Smooth
  417. p15.TopSurface = Enum.SurfaceType.Smooth
  418. b15 = Instance.new("SpecialMesh", p15)
  419. b15.MeshId = "http://www.roblox.com/asset/?id=0"
  420. b15.TextureId = ""
  421. b15.MeshType = Enum.MeshType.FileMesh
  422. b15.Name = "Mesh"
  423. b15.VertexColor = Vector3.new(0, 0, 0)
  424. b15.Scale = Vector3.new(1, 3, 1.29999995)
  425. p16 = Instance.new("Part", m)
  426. p16.BrickColor = BrickColor.new("Lime green")
  427. p16.FormFactor = Enum.FormFactor.Custom
  428. p16.Size = Vector3.new(1, 2.5, 1)
  429. p16.CFrame = CFrame.new(-2.96531439, 7.75924349, -3.80101967, -0.258820295, -0.534830391, 0.804343879, -1.78813934e-007, -0.832718968, -0.553697228, 0.96592629, -0.143308073, 0.215523779)
  430. p16.CanCollide = false
  431. p16.Locked = true
  432. p16.BottomSurface = Enum.SurfaceType.Smooth
  433. p16.TopSurface = Enum.SurfaceType.Smooth
  434. b16 = Instance.new("SpecialMesh", p16)
  435. b16.MeshId = "http://www.roblox.com/asset/?id=0"
  436. b16.TextureId = ""
  437. b16.MeshType = Enum.MeshType.FileMesh
  438. b16.Name = "Mesh"
  439. b16.VertexColor = Vector3.new(0, 0, 0)
  440. b16.Scale = Vector3.new(1, 3, 1.29999995)
  441. p17 = Instance.new("Part", m)
  442. p17.BrickColor = BrickColor.new("Lime green")
  443. p17.FormFactor = Enum.FormFactor.Custom
  444. p17.Size = Vector3.new(1, 2.4000001, 1)
  445. p17.CFrame = CFrame.new(-2.69075108, 7.07788849, -3.40101933, -1.13248825e-006, -0.319307148, 0.947651625, -1.1920929e-006, -0.947652161, -0.319306791, 1.0000006, -1.54972076e-006, 1.04308128e-007)
  446. p17.CanCollide = false
  447. p17.Locked = true
  448. p17.BottomSurface = Enum.SurfaceType.Smooth
  449. p17.TopSurface = Enum.SurfaceType.Smooth
  450. b17 = Instance.new("SpecialMesh", p17)
  451. b17.MeshId = "http://www.roblox.com/asset/?id=0"
  452. b17.TextureId = ""
  453. b17.MeshType = Enum.MeshType.FileMesh
  454. b17.Name = "Mesh"
  455. b17.VertexColor = Vector3.new(0, 0, 0)
  456. b17.Scale = Vector3.new(1, 3, 1.29999995)
  457. p18 = Instance.new("Part", m)
  458. p18.BrickColor = BrickColor.new("Lime green")
  459. p18.FormFactor = Enum.FormFactor.Custom
  460. p18.Size = Vector3.new(2, 2, 2)
  461. p18.CFrame = CFrame.new(-1.70003319, 8.71796608, -3.40004444, -2.37434961e-006, 1.78813934e-007, 1.00000036, -2.35242567e-007, 1.00000072, 3.27825546e-007, -1.0000006, 7.95440158e-009, -2.91315405e-006)
  462. p18.CanCollide = false
  463. p18.Locked = true
  464. p18.BottomSurface = Enum.SurfaceType.Smooth
  465. p18.TopSurface = Enum.SurfaceType.Smooth
  466. b18 = Instance.new("SpecialMesh", p18)
  467. b18.MeshId = "http://www.roblox.com/asset/?id=0"
  468. b18.TextureId = ""
  469. b18.MeshType = Enum.MeshType.FileMesh
  470. b18.Name = "Mesh"
  471. b18.VertexColor = Vector3.new(0, 0, 0)
  472. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  473. w1 = Instance.new("Weld", p1)
  474. w1.Name = "Head_Weld"
  475. m.Parent = char
  476. m:MakeJoints()
  477. ----------------------------------------------------
  478. local cor = Instance.new("Part", char.Hair)
  479. cor.Name = "Link"
  480. cor.Locked = true
  481. cor.BottomSurface = 0
  482. cor.CanCollide = false
  483. cor.Size = Vector3.new(1, 9, 1)
  484. cor.Transparency = 1
  485. cor.TopSurface = 0
  486. corw = Instance.new("Weld", cor)
  487. corw.Part0 = hed
  488. corw.Part1 = cor
  489. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  490. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  491. weld1 = Instance.new("Weld", char.Hair)
  492. weld1.Part0 = cor
  493. weld1.Part1 = char.Hair.Head
  494. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  495. ----------------------------------------------------
  496. GroundWave1 = function()
  497. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  498. local Colors = {"Lime green", "Really black"}
  499. local wave = Instance.new("Part", torso)
  500. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  501. wave.Anchored = true
  502. wave.CanCollide = false
  503. wave.Locked = true
  504. wave.Size = Vector3.new(1, 1, 1)
  505. wave.TopSurface = "Smooth"
  506. wave.BottomSurface = "Smooth"
  507. wave.Transparency = 0.35
  508. wave.CFrame = HandCF
  509. wm = Instance.new("SpecialMesh", wave)
  510. wm.MeshId = "rbxassetid://3270017"
  511. coroutine.wrap(function()
  512. for i = 1, 30, 1 do
  513. wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1)
  514. wave.Size = wm.Scale
  515. wave.CFrame = HandCF
  516. wave.Transparency = i/30
  517. wait()
  518. end
  519. wait()
  520. wave:Destroy()
  521. end)()
  522. end
  523. ----------------------------------------------------
  524. GroundWave = function()
  525. if Transforming == true then
  526. local wave = Instance.new("Part", torso)
  527. wave.BrickColor = BrickColor.new("Lily white")
  528. wave.Anchored = true
  529. wave.CanCollide = false
  530. wave.Locked = true
  531. wave.Size = Vector3.new(1, 1, 1)
  532. wave.TopSurface = "Smooth"
  533. wave.BottomSurface = "Smooth"
  534. wave.Transparency = 0.35
  535. wave.CFrame = fx.CFrame
  536. wm = Instance.new("SpecialMesh", wave)
  537. wm.MeshType = "Sphere"
  538. wm.Scale = Vector3.new(1,1,1)
  539. coroutine.wrap(function()
  540. for i = 1, 18, 1 do
  541. wm.Scale = Vector3.new(2 + i*2, 2 + i*2, 2 + i*2)
  542. --wave.Size = wm.Scale
  543. wave.CFrame = fx.CFrame
  544. wave.Transparency = i/14
  545. wait()
  546. end
  547. wait()
  548. wave:Destroy()
  549. end)()
  550. elseif Transforming == false then
  551. wait()
  552. end
  553. end
  554.  
  555. for i = 1, 100 do rs:wait()
  556. fx.CFrame = torso.CFrame
  557. end
  558.  
  559. Spawn(function()
  560. while wait(1) do
  561. GroundWave()
  562. end
  563. end)
  564.  
  565. wait(4)
  566.  
  567. Transforming = false
  568.  
  569. for i = 1, 20 do rs:wait()
  570. fx.Transparency = fx.Transparency + (1/20)
  571. fx.CFrame = torso.CFrame
  572. fxm.Scale = fxm.Scale + Vector3.new(0.5,0.5,0.5)
  573. rs:wait()
  574. end
  575.  
  576. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  577. local wave = Instance.new("Part", torso)
  578. wave.BrickColor = BrickColor.new("Lime green")
  579. wave.Anchored = true
  580. wave.CanCollide = false
  581. wave.Locked = true
  582. wave.Size = Vector3.new(1, 1, 1)
  583. wave.TopSurface = "Smooth"
  584. wave.BottomSurface = "Smooth"
  585. wave.Transparency = 0.35
  586. wave.CFrame = HandCF
  587. wm = Instance.new("SpecialMesh", wave)
  588. wm.MeshId = "rbxassetid://3270017"
  589. coroutine.wrap(function()
  590. for i = 1, 14, 1 do
  591. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  592. wave.Size = wm.Scale
  593. wave.CFrame = HandCF
  594. wave.Transparency = i/14
  595. wait()
  596. end
  597. wait()
  598. wave:Destroy()
  599. end)()
  600. hum.WalkSpeed = 16
  601. ----------------------------------------------------
  602. Blast = function()
  603. local Colors = {"Really black", "Really black"}
  604. local wave = Instance.new("Part", torso)
  605. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  606. wave.Anchored = true
  607. wave.CanCollide = false
  608. wave.Locked = true
  609. wave.Size = Vector3.new(1, 1, 1)
  610. wave.TopSurface = "Smooth"
  611. wave.BottomSurface = "Smooth"
  612. wave.Transparency = 0.35
  613. wave.CFrame = rarm.CFrame
  614. wm = Instance.new("SpecialMesh", wave)
  615. wm.MeshType = "Sphere"
  616. wm.Scale = Vector3.new(1,1,1)
  617. z = Instance.new("Sound",wave)
  618. z.SoundId = "rbxassetid://237035051"
  619. z.Volume = 1
  620. z.Pitch = .9
  621. z:Play()
  622. coroutine.wrap(function()
  623. for i = 1, 30, 1 do
  624. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  625. --wave.Size = wm.Scale
  626. wave.CFrame = rarm.CFrame
  627. wave.Transparency = (1/14)
  628. rs:wait()
  629. end
  630. rs:wait()
  631. wave:Destroy()
  632. z:Destroy()
  633. end)()
  634. end
  635. ----------------------------------------------------
  636. rarm.Touched:connect(function(ht)
  637. hit = ht.Parent
  638. if ht and hit:IsA("Model") then
  639. if hit:FindFirstChild("Humanoid") then
  640. if hit.Name ~= p.Name then
  641. if Debounces.RPunch == true and Debounces.RPunched == false then
  642. Debounces.RPunched = true
  643. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  644. if Debounces.ks==true then
  645. z = Instance.new("Sound",hed)
  646. z.SoundId = "rbxassetid://169380525"
  647. z.Pitch = ptz[math.random(1,#ptz)]
  648. z.Volume = 1
  649. z:Play()
  650. end
  651. wait(.2)
  652. Debounces.RPunched = false
  653. end
  654. end
  655. end
  656. elseif ht and hit:IsA("Hat") then
  657. if hit.Parent.Name ~= p.Name then
  658. if hit.Parent:FindFirstChild("Humanoid") then
  659. if Debounces.RPunch == true and Debounces.RPunched == false then
  660. Debounces.RPunched = true
  661. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  662. if Debounces.ks==true then
  663. z = Instance.new("Sound",hed)
  664. z.SoundId = "rbxassetid://169380525"
  665. z.Pitch = ptz[math.random(1,#ptz)]
  666. z.Volume = 1
  667. z:Play()
  668. end
  669. wait(.2)
  670. Debounces.RPunched = false
  671. end
  672. end
  673. end
  674. end
  675. end)
  676. larm.Touched:connect(function(ht)
  677. hit = ht.Parent
  678. if ht and hit:IsA("Model") then
  679. if hit:FindFirstChild("Humanoid") then
  680. if hit.Name ~= p.Name then
  681. if Debounces.LPunch == true and Debounces.LPunched == false then
  682. Debounces.LPunched = true
  683. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  684. if Debounces.ks2==true then
  685. z = Instance.new("Sound",hed)
  686. z.SoundId = "rbxassetid://169380525"
  687. z.Pitch = ptz[math.random(1,#ptz)]
  688. z.Volume = 1
  689. z:Play()
  690. end
  691. wait(.2)
  692. Debounces.LPunched = false
  693. end
  694. end
  695. end
  696. elseif ht and hit:IsA("Hat") then
  697. if hit.Parent.Name ~= p.Name then
  698. if hit.Parent:FindFirstChild("Humanoid") then
  699. if Debounces.LPunch == true and Debounces.LPunched == false then
  700. Debounces.LPunched = true
  701. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  702. if Debounces.ks2==true then
  703. z = Instance.new("Sound",hed)
  704. z.SoundId = "rbxassetid://169380525"
  705. z.Pitch = ptz[math.random(1,#ptz)]
  706. z.Volume = 1
  707. z:Play()
  708. end
  709. wait(.2)
  710. Debounces.LPunched = false
  711. end
  712. end
  713. end
  714. end
  715. end)
  716. ----------------------------------------------------
  717. mod4 = Instance.new("Model",char)
  718.  
  719. ptez = {0.7, 0.8, 0.9, 1}
  720.  
  721. function FindNearestTorso(Position,Distance,SinglePlayer)
  722. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  723. local List = {}
  724. for i,v in pairs(workspace:GetChildren())do
  725. if v:IsA("Model")then
  726. if v:findFirstChild("Torso")then
  727. if v ~= char then
  728. if(v.Torso.Position -Position).magnitude <= Distance then
  729. table.insert(List,v)
  730. end
  731. end
  732. end
  733. end
  734. end
  735. return List
  736. end
  737.  
  738. function Punch()
  739. part=Instance.new('Part',mod4)
  740. part.Anchored=true
  741. part.CanCollide=false
  742. part.FormFactor='Custom'
  743. part.Size=Vector3.new(.2,.2,.2)
  744. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  745. part.Transparency=.7
  746. part.BrickColor=BrickColor.new('Really black')
  747. mesh=Instance.new('SpecialMesh',part)
  748. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  749. mesh.Scale=Vector3.new(3,3,3)
  750. part2=Instance.new('Part',mod4)
  751. part2.Anchored=true
  752. part2.CanCollide=false
  753. part2.FormFactor='Custom'
  754. part2.Size=Vector3.new(.2,.2,.2)
  755. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  756. part2.Transparency=.7
  757. part2.BrickColor=BrickColor.new('Lime green')
  758. mesh2=Instance.new('SpecialMesh',part2)
  759. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  760. mesh2.Scale=Vector3.new(3,1.5,3)
  761. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  762. if v:FindFirstChild('Humanoid') then
  763. v.Humanoid:TakeDamage(math.random(2,6))
  764. end
  765. end
  766. coroutine.resume(coroutine.create(function()
  767. for i=0,0.62,0.4 do
  768. wait()
  769. part.CFrame=part.CFrame
  770. part.Transparency=i
  771. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  772. part2.CFrame=part2.CFrame
  773. part2.Transparency=i
  774. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  775. end
  776. part.Parent=nil
  777. part2.Parent=nil
  778. end))
  779. end
  780. ----------------------------------------------------
  781. rarm.Touched:connect(function(ht)
  782. hit = ht.Parent
  783. if ht and hit:IsA("Model") then
  784. if hit:FindFirstChild("Humanoid") then
  785. if hit.Name ~= p.Name then
  786. if Debounces.RPunch == true and Debounces.RPunched == false then
  787. Debounces.RPunched = true
  788. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  789. if Debounces.ks==true then
  790. z = Instance.new("Sound",hed)
  791. z.SoundId = "rbxassetid://169380525"
  792. z.Pitch = ptz[math.random(1,#ptz)]
  793. z.Volume = 1
  794. z:Play()
  795. end
  796. wait(.2)
  797. Debounces.RPunched = false
  798. end
  799. end
  800. end
  801. elseif ht and hit:IsA("Hat") then
  802. if hit.Parent.Name ~= p.Name then
  803. if hit.Parent:FindFirstChild("Humanoid") then
  804. if Debounces.RPunch == true and Debounces.RPunched == false then
  805. Debounces.RPunched = true
  806. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  807. if Debounces.ks==true then
  808. z = Instance.new("Sound",hed)
  809. z.SoundId = "rbxassetid://169380525"
  810. z.Pitch = ptz[math.random(1,#ptz)]
  811. z.Volume = 1
  812. z:Play()
  813. end
  814. wait(.2)
  815. Debounces.RPunched = false
  816. end
  817. end
  818. end
  819. end
  820. end)
  821. larm.Touched:connect(function(ht)
  822. hit = ht.Parent
  823. if ht and hit:IsA("Model") then
  824. if hit:FindFirstChild("Humanoid") then
  825. if hit.Name ~= p.Name then
  826. if Debounces.LPunch == true and Debounces.LPunched == false then
  827. Debounces.LPunched = true
  828. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  829. if Debounces.ks2==true then
  830. z = Instance.new("Sound",hed)
  831. z.SoundId = "rbxassetid://169380525"
  832. z.Pitch = ptz[math.random(1,#ptz)]
  833. z.Volume = 1
  834. z:Play()
  835. end
  836. wait(.2)
  837. Debounces.LPunched = false
  838. end
  839. end
  840. end
  841. elseif ht and hit:IsA("Hat") then
  842. if hit.Parent.Name ~= p.Name then
  843. if hit.Parent:FindFirstChild("Humanoid") then
  844. if Debounces.LPunch == true and Debounces.LPunched == false then
  845. Debounces.LPunched = true
  846. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  847. if Debounces.ks2==true then
  848. z = Instance.new("Sound",hed)
  849. z.SoundId = "rbxassetid://169380525"
  850. z.Pitch = ptz[math.random(1,#ptz)]
  851. z.Volume = 1
  852. z:Play()
  853. end
  854. wait(.2)
  855. Debounces.LPunched = false
  856. end
  857. end
  858. end
  859. end
  860. end)
  861. ----------------------------------------------------
  862. local player = game.Players.LocalPlayer
  863. local pchar = player.Character
  864. local mouse = player:GetMouse()
  865. local cam = workspace.CurrentCamera
  866.  
  867. local rad = math.rad
  868.  
  869. local keysDown = {}
  870. local flySpeed = 0
  871. local MAX_FLY_SPEED = 150
  872.  
  873. local canFly = false
  874. local flyToggled = false
  875.  
  876. local forward, side = 0, 0
  877. local lastForward, lastSide = 0, 0
  878.  
  879. local floatBP = Instance.new("BodyPosition")
  880. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  881. local flyBV = Instance.new("BodyVelocity")
  882. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  883. local turnBG = Instance.new("BodyGyro")
  884. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  885.  
  886. mouse.KeyDown:connect(function(key)
  887. keysDown[key] = true
  888.  
  889. if key == "f" then
  890. flyToggled = not flyToggled
  891.  
  892. if not flyToggled then
  893. stanceToggle = "Normal"
  894. floatBP.Parent = nil
  895. flyBV.Parent = nil
  896. turnBG.Parent = nil
  897. root.Velocity = Vector3.new()
  898. pchar.Humanoid.PlatformStand = false
  899. end
  900. end
  901.  
  902. end)
  903. mouse.KeyUp:connect(function(key)
  904. keysDown[key] = nil
  905. end)
  906.  
  907. local function updateFly()
  908.  
  909. if not flyToggled then return end
  910.  
  911. lastForward = forward
  912. lastSide = side
  913.  
  914. forward = 0
  915. side = 0
  916.  
  917. if keysDown.w then
  918. forward = forward + 1
  919. end
  920. if keysDown.s then
  921. forward = forward - 1
  922. end
  923. if keysDown.a then
  924. side = side - 1
  925. end
  926. if keysDown.d then
  927. side = side + 1
  928. end
  929.  
  930. canFly = (forward ~= 0 or side ~= 0)
  931.  
  932. if canFly then
  933. stanceToggle = "Floating"
  934. turnBG.Parent = root
  935. floatBP.Parent = nil
  936. flyBV.Parent = root
  937.  
  938. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  939. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  940. else
  941. floatBP.position = root.Position
  942. floatBP.Parent = root
  943.  
  944. flySpeed = flySpeed - 1
  945. if flySpeed < 0 then flySpeed = 0 end
  946. end
  947.  
  948. local camCF = cam.CoordinateFrame
  949. local in_forward = canFly and forward or lastForward
  950. local in_side = canFly and side or lastSide
  951.  
  952. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  953. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  954.  
  955. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  956. 0)
  957. end
  958.  
  959. game:service'RunService'.RenderStepped:connect(function()
  960. if flyToggled then
  961. pchar.Humanoid.PlatformStand = true
  962. end
  963. updateFly()
  964. end)
  965. -------------------------------
  966. mouse.KeyDown:connect(function(key)
  967. if key == "q" then
  968. if Debounces.CanAttack == true then
  969. Debounces.CanAttack = false
  970. Debounces.NoIdl = true
  971. Debounces.on = true
  972. function FindNearestTorso(Position,Distance,SinglePlayer)
  973. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  974. local List = {}
  975. for i,v in pairs(workspace:GetChildren())do
  976. if v:IsA("Model")then
  977. if v:findFirstChild("Torso")then
  978. if v ~= char then
  979. if(v.Torso.Position -Position).magnitude <= Distance then
  980. table.insert(List,v)
  981. end
  982. end
  983. end
  984. end
  985. end
  986. return List
  987. end
  988. z = Instance.new("Sound",hed)
  989. z.SoundId = "rbxassetid://232213955"
  990. z.Pitch = 1
  991. z.Volume = 1
  992. wait(0.2)
  993. z:Play()
  994. sp = Instance.new("Part",rarm)
  995. sp.Anchored = true
  996. sp.CanCollide = false
  997. sp.Locked = true
  998. sp.Transparency = 0
  999. sp.Material = "Neon"
  1000. sp.Size = Vector3.new(1,1,1)
  1001. sp.TopSurface = "SmoothNoOutlines"
  1002. sp.BottomSurface = "SmoothNoOutlines"
  1003. sp.BrickColor = BrickColor.new("Lime green")
  1004. spm = Instance.new("SpecialMesh",sp)
  1005. spm.MeshType = "Sphere"
  1006. spm.Scale = Vector3.new(21,21,21)
  1007. sp2 = Instance.new("Part", rarm)
  1008. sp2.Name = "Energy"
  1009. sp2.BrickColor = BrickColor.new("Lime green")
  1010. sp2.Size = Vector3.new(1, 1, 1)
  1011. sp2.Shape = "Ball"
  1012. sp2.CanCollide = false
  1013. sp2.Anchored = true
  1014. sp2.Locked = true
  1015. sp2.TopSurface = 0
  1016. sp2.BottomSurface = 0
  1017. sp2.Transparency = 1
  1018. spm2 = Instance.new("SpecialMesh",sp2)
  1019. spm2.MeshId = "rbxassetid://9982590"
  1020. spm2.Scale = Vector3.new(2,2,2)
  1021. for i = 1, 20 do
  1022. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1023. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1024. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  1025. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  1026. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1027. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  1028. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1029. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1030. if Debounces.on == false then break end
  1031. rs:wait()
  1032. end
  1033. for i = 1, 100, 20 do rs:wait()
  1034. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1035. end
  1036. for i = 1, 20 do
  1037. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  1038. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1039. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  1040. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  1041. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  1042. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1043. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1044. if Debounces.on == false then break end
  1045. rs:wait()
  1046. end
  1047. sp.Transparency = 1
  1048. for i = 1, 20 do
  1049. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1050. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  1051. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  1052. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  1053. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  1054. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  1055. if Debounces.on == false then break end
  1056. rs:wait()
  1057. end
  1058. wait(1)
  1059. sp.Transparency = 0
  1060. sp2.Transparency = 0.84
  1061. for i = 1, 20 do
  1062. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  1063. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1064. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  1065. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  1066. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  1067. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  1068. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  1069. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  1070. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  1071. if Debounces.on == false then break end
  1072. rs:wait()
  1073. end
  1074. for i = 1, 2880, 50 do
  1075. rs:wait()
  1076. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  1077. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  1078. rs:wait()
  1079. end
  1080. sp:Destroy()
  1081. sp2:Destroy()
  1082. local X = Instance.new("Part",char)
  1083. local O = Instance.new("ObjectValue",X)
  1084. O.Name = "creator"
  1085. X.Locked = true
  1086. X.Name = "Shell"
  1087. X.Anchored = false
  1088. X.CanCollide = false
  1089. X.Transparency = 0
  1090. X.Reflectance = 0
  1091. X.BottomSurface = 0
  1092. X.TopSurface = 0
  1093. X.Shape = 0
  1094. local V = Instance.new("ObjectValue",X)
  1095. V.Value = char
  1096. V.Name = "creator"
  1097. X.BrickColor = BrickColor.new("Lime green")
  1098. X.Size = Vector3.new(2,2,2)
  1099. X.Material = "Neon"
  1100. local Z = Instance.new("SpecialMesh",X)
  1101. Z.MeshType = "Sphere"
  1102. Z.Scale = Vector3.new(0.5,0.5,1)
  1103. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  1104. local bv = Instance.new("BodyVelocity",X)
  1105. bv.maxForce = Vector3.new(99999,99999,99999)
  1106. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  1107. bv.velocity = X.CFrame.lookVector*65
  1108.  
  1109. Explode = X.Touched:connect(function(hit)
  1110. if hit ~= char and hit.Name ~= "Shell" then
  1111. local cf = X.CFrame
  1112. bv:Destroy()
  1113. X.Anchored = true
  1114. Z:Remove()
  1115. Explode:disconnect()
  1116. X.Size = Vector3.new(3,3,3)
  1117. X.Touched:connect(function(hit) end)
  1118. X.CanCollide = false
  1119. local part3 = Instance.new("Part", rarm)
  1120. part3.Anchored=true
  1121. part3.CanCollide=false
  1122. part3.Locked = true
  1123. part3.TopSurface = "SmoothNoOutlines"
  1124. part3.BottomSurface = "SmoothNoOutlines"
  1125. part3.FormFactor='Custom'
  1126. part3.Size=Vector3.new(1,1, 1)
  1127. part3.CFrame=X.CFrame
  1128. part3.Transparency=0
  1129. part3.BrickColor=BrickColor.new("Lime green")
  1130. local mesh3 = Instance.new("SpecialMesh",part3)
  1131. mesh3.MeshType = "Sphere"
  1132. mesh3.Scale = Vector3.new(1,1,1)
  1133. --debris:AddItem(X,8)
  1134. local part4 = Instance.new("Part", rarm)
  1135. part4.Material = "Neon"
  1136. part4.Anchored=true
  1137. part4.CanCollide=false
  1138. part4.Locked = true
  1139. part4.TopSurface = "SmoothNoOutlines"
  1140. part4.BottomSurface = "SmoothNoOutlines"
  1141. part4.FormFactor='Custom'
  1142. part4.Size=Vector3.new(1,1, 1)
  1143. part4.CFrame=X.CFrame
  1144. part4.Transparency=0
  1145. part4.BrickColor=BrickColor.new("Lime green")
  1146. local mesh4 = Instance.new("SpecialMesh",part4)
  1147. mesh4.MeshType = "Sphere"
  1148. mesh4.Scale = Vector3.new(.5,.5,.5)
  1149. local part7 = Instance.new("Part", rarm)
  1150. part7.Material = "Neon"
  1151. part7.Anchored=true
  1152. part7.CanCollide=false
  1153. part7.Locked = true
  1154. part7.TopSurface = "SmoothNoOutlines"
  1155. part7.BottomSurface = "SmoothNoOutlines"
  1156. part7.FormFactor='Custom'
  1157. part7.Size=Vector3.new(1,1, 1)
  1158. part7.CFrame=X.CFrame
  1159. part7.Transparency=0
  1160. part7.BrickColor=BrickColor.new("Really black")
  1161. local mesh7 = Instance.new("SpecialMesh",part7)
  1162. mesh7.MeshType = "Sphere"
  1163. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  1164. --[[X.Touched:connect(function(ht)
  1165. hit = ht.Parent
  1166. if ht and hit:IsA("Model") then
  1167. if hit:FindFirstChild("Humanoid") then
  1168. if hit.Name ~= p.Name then
  1169. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1170. wait(.3)
  1171. end
  1172. end
  1173. elseif ht and hit:IsA("Hat") then
  1174. if hit.Parent.Name ~= p.Name then
  1175. if hit.Parent:FindFirstChild("Humanoid") then
  1176. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1177. wait(.3)
  1178. end
  1179. end
  1180. end
  1181. end)
  1182. part3.Touched:connect(function(ht)
  1183. hit = ht.Parent
  1184. if ht and hit:IsA("Model") then
  1185. if hit:FindFirstChild("Humanoid") then
  1186. if hit.Name ~= p.Name then
  1187. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1188. wait(.3)
  1189. end
  1190. end
  1191. elseif ht and hit:IsA("Hat") then
  1192. if hit.Parent.Name ~= p.Name then
  1193. if hit.Parent:FindFirstChild("Humanoid") then
  1194. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,6))
  1195. wait(.3)
  1196. end
  1197. end
  1198. end
  1199. end)]]--
  1200. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  1201. if v:FindFirstChild('Humanoid') then
  1202. v.Humanoid:TakeDamage(math.random(60,90))
  1203. v.Humanoid.PlatformStand = true
  1204. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1205. end
  1206. end
  1207.  
  1208. local acos = math.acos
  1209. local sqrt = math.sqrt
  1210. local Vec3 = Vector3.new
  1211. local fromAxisAngle = CFrame.fromAxisAngle
  1212.  
  1213. local function toAxisAngle(CFr)
  1214. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1215. local Angle = math.acos((R00+R11+R22-1)/2)
  1216. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1217. A = A == 0 and 0.00001 or A
  1218. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1219. B = B == 0 and 0.00001 or B
  1220. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1221. C = C == 0 and 0.00001 or C
  1222. local x = (R21-R12)/sqrt(A)
  1223. local y = (R02-R20)/sqrt(B)
  1224. local z = (R10-R01)/sqrt(C)
  1225. return Vec3(x,y,z),Angle
  1226. end
  1227.  
  1228. function ApplyTrig(Num,Func)
  1229. local Min,Max = Func(0),Func(1)
  1230. local i = Func(Num)
  1231. return (i-Min)/(Max-Min)
  1232. end
  1233.  
  1234. function LerpCFrame(CFrame1,CFrame2,Num)
  1235. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1236. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1237. end
  1238.  
  1239. function Crater(Torso,Radius)
  1240. Spawn(function()
  1241. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1242. local Ignore = {}
  1243. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1244. if v.Character ~= nil then
  1245. Ignore[#Ignore+1] = v.Character
  1246. end
  1247. end
  1248. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1249. if Hit == nil then return end
  1250. local Parts = {}
  1251. for i = 1,360,10 do
  1252. local P = Instance.new("Part",Torso.Parent)
  1253. P.Anchored = true
  1254. P.FormFactor = "Custom"
  1255. P.BrickColor = Hit.BrickColor
  1256. P.Material = Hit.Material
  1257. P.TopSurface = "Smooth"
  1258. P.BottomSurface = "Smooth"
  1259. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1260. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1261. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  1262. if math.random(0,5) == 0 then -- rubble
  1263. local P = Instance.new("Part",Torso.Parent)
  1264. P.Anchored = true
  1265. P.FormFactor = "Custom"
  1266. P.BrickColor = Hit.BrickColor
  1267. P.Material = Hit.Material
  1268. P.TopSurface = "Smooth"
  1269. P.BottomSurface = "Smooth"
  1270. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1271. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1272. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  1273. end
  1274. end
  1275. for i = 0,1,0.05 do
  1276. for i2,v in pairs(Parts) do
  1277. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1278. end
  1279. wait(0.02)
  1280. end
  1281. for i,v in pairs(Parts) do
  1282. if v[1].Size.X > 2.1 then
  1283. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1284. end
  1285. v[1].Anchored = false
  1286. end
  1287. for i = 0,1,0.05 do
  1288. for i2,v in pairs(Parts) do
  1289. v[1].Transparency = i
  1290. if i == 1 then
  1291. v[1]:Destroy()
  1292. elseif i >= 0.25 then
  1293. v[1].CanCollide = false
  1294. end
  1295. end
  1296. wait(0.02)
  1297. end
  1298. Parts = nil
  1299. end)
  1300. end
  1301.  
  1302. ROW = function(out, trans, s, wt, t, ang, plus)
  1303. for i = 1, 360, 360/t do
  1304. local c = Instance.new("Part", game.Workspace)
  1305. c.FormFactor = 3
  1306. c.TopSurface = 0
  1307. c.BottomSurface = 0
  1308. c.Size = s
  1309. c.Anchored = true
  1310. c.CanCollide = wt
  1311. c.Material=workspace.Base.Material
  1312. c.Transparency = trans
  1313. c.BrickColor = workspace.Base.BrickColor
  1314. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  1315. c.Locked=true
  1316. game.Debris:AddItem(c,15)
  1317. end
  1318. end
  1319.  
  1320. Part = function(x,y,z,color,tr,cc,an,parent)
  1321. local p = Instance.new('Part',parent or Weapon)
  1322. p.formFactor = 'Custom'
  1323. p.Size = Vector3.new(x,y,z)
  1324. p.BrickColor = BrickColor.new(color)
  1325. p.CanCollide = cc
  1326. p.Transparency = tr
  1327. p.Anchored = an
  1328. p.TopSurface,p.BottomSurface = 0,0
  1329. p.Locked=true
  1330. p:BreakJoints()
  1331. return p end
  1332.  
  1333. Mesh = function(par,num,x,y,z)
  1334. local msh = _
  1335. if num == 1 then msh = Instance.new("CylinderMesh",par)
  1336. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  1337. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  1338. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  1339. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  1340. end msh.Scale = Vector3.new(x,y,z)
  1341. return msh end
  1342.  
  1343. function explosion(col1,col2,cfr,sz,rng,dmg)
  1344. local a= Part(1,1,1,col1,.5,false,true,workspace)
  1345. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  1346. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  1347. v1,v2,v3=sz.x,sz.y,sz.z
  1348. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  1349. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  1350. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  1351. a.CFrame=cfr
  1352. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  1353. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  1354.  
  1355. Spawn(function()
  1356. while wait() do
  1357. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  1358. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  1359. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  1360. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  1361. a.Transparency=a.Transparency+0.05
  1362. a2.Transparency=a2.Transparency+0.05
  1363. a3.Transparency=a3.Transparency+0.05
  1364. end
  1365. end)
  1366. end
  1367.  
  1368. Crater(X,20)
  1369. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  1370. z = Instance.new("Sound",X)
  1371. z.SoundId = "rbxassetid://231917744"
  1372. z.Pitch = .5
  1373. z.Volume = 10
  1374. z1 = Instance.new("Sound",X)
  1375. z1.SoundId = "rbxassetid://231917744"
  1376. z1.Pitch = .5
  1377. z1.Volume = 10
  1378. z2 = Instance.new("Sound",X)
  1379. z2.SoundId = "rbxassetid://231917744"
  1380. z2.Pitch = .5
  1381. z2.Volume = 10
  1382. z3 = Instance.new("Sound",X)
  1383. z3.SoundId = "rbxassetid://245537790"
  1384. z3.Pitch = .7
  1385. z3.Volume = 1
  1386. z4 = Instance.new("Sound",X)
  1387. z4.SoundId = "rbxassetid://245537790"
  1388. z4.Pitch = .7
  1389. z4.Volume = 1
  1390. wait(0.1)
  1391. z:Play()
  1392. z1:Play()
  1393. z2:Play()
  1394. z3:Play()
  1395. z4:Play()
  1396.  
  1397. local part=Instance.new('Part',rarm)
  1398. part.Anchored=true
  1399. part.CanCollide=false
  1400. part.Locked = true
  1401. part.FormFactor='Custom'
  1402. part.Size=Vector3.new(1,1,1)
  1403. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  1404. part.Transparency=0
  1405. part.BrickColor=BrickColor.new('Really black')
  1406. local mesh=Instance.new('SpecialMesh',part)
  1407. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1408. mesh.Scale=Vector3.new(2,2,2)
  1409. local part2=part:clone()
  1410. part2.Parent = rarm
  1411. part2.BrickColor=BrickColor.new("Lime green")
  1412. local part5=part:clone()
  1413. part5.Parent = rarm
  1414. part5.BrickColor=BrickColor.new("Lime green")
  1415. local part6=part:clone()
  1416. part6.Parent = rarm
  1417. part6.BrickColor=BrickColor.new("Black")
  1418. local mesh2=mesh:clone()
  1419. mesh2.Parent=part2
  1420. mesh2.Scale=Vector3.new(3, 3, 3)
  1421. local mesh5=mesh:clone()
  1422. mesh5.Parent=part5
  1423. mesh5.Scale=Vector3.new(3, 3, 3)
  1424. local mesh6=mesh:clone()
  1425. mesh6.Parent=part6
  1426. mesh6.Scale=Vector3.new(3, 3, 3)
  1427. local blast = Instance.new("Part", rarm)
  1428. blast.BrickColor = BrickColor.new("Really black")
  1429. blast.Anchored = true
  1430. blast.CanCollide = false
  1431. blast.Locked = true
  1432. blast.Size = Vector3.new(1, 1, 1)
  1433. blast.TopSurface = "Smooth"
  1434. blast.BottomSurface = "Smooth"
  1435. blast.Transparency = 0
  1436. blast.CFrame = HandCF
  1437. local bm = Instance.new("SpecialMesh", blast)
  1438. bm.Scale = Vector3.new(5,1,5)
  1439. bm.MeshId = "rbxassetid://3270017"
  1440. local blast2 = Instance.new("Part", rarm)
  1441. blast2.BrickColor = BrickColor.new("Really black")
  1442. blast2.Anchored = true
  1443. blast2.CanCollide = false
  1444. blast2.Locked = true
  1445. blast2.Size = Vector3.new(1, 1, 1)
  1446. blast2.TopSurface = "Smooth"
  1447. blast2.BottomSurface = "Smooth"
  1448. blast2.Transparency = 0
  1449. blast2.CFrame = HandCF
  1450. local bm2 = Instance.new("SpecialMesh", blast2)
  1451. bm2.Scale = Vector3.new(3,1,3)
  1452. bm2.MeshId = "rbxassetid://3270017"
  1453. local blast3 = Instance.new("Part", rarm)
  1454. blast3.BrickColor = BrickColor.new("Really black")
  1455. blast3.Anchored = true
  1456. blast3.CanCollide = false
  1457. blast3.Locked = true
  1458. blast3.Size = Vector3.new(1, 1, 1)
  1459. blast3.TopSurface = "Smooth"
  1460. blast3.BottomSurface = "Smooth"
  1461. blast3.Transparency = 0
  1462. blast3.CFrame = HandCF
  1463. local bm3 = Instance.new("SpecialMesh", blast3)
  1464. bm3.Scale = Vector3.new(3,1,3)
  1465. bm3.MeshId = "rbxassetid://3270017"
  1466. for i = 1,120 do rs:wait()
  1467. X.Transparency = X.Transparency + (1/120)
  1468. part.Transparency = part.Transparency + (1/120)
  1469. part2.Transparency = part2.Transparency + (1/120)
  1470. part3.Transparency = part3.Transparency + (1/120)
  1471. part4.Transparency = part4.Transparency + (1/120)
  1472. part5.Transparency = part5.Transparency + (1/120)
  1473. part6.Transparency = part6.Transparency + (1/120)
  1474. part7.Transparency = part7.Transparency + (1/120)
  1475. blast.Transparency = blast.Transparency + (1/120)
  1476. blast2.Transparency = blast2.Transparency + (1/120)
  1477. blast3.Transparency = blast3.Transparency + (1/120)
  1478. X.Size = X.Size + Vector3.new(.8,.8,.8)
  1479. --part3.Size = part3.Size + Vector3.new(3,3,3)
  1480. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  1481. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  1482. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  1483. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  1484. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  1485. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  1486. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  1487. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  1488. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  1489. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  1490. X.CFrame = cf
  1491. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  1492. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  1493. part3.CFrame=X.CFrame
  1494. part4.CFrame=X.CFrame
  1495. part7.CFrame=X.CFrame
  1496. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  1497. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  1498. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1499. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  1500. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  1501. rs:wait()
  1502. end
  1503. X:Destroy()
  1504. part:Destroy()
  1505. part2:Destroy()
  1506. part3:Destroy()
  1507. part4:Destroy()
  1508. part5:Destroy()
  1509. part6:Destroy()
  1510. blast:Destroy()
  1511. blast2:Destroy()
  1512. blast3:Destroy()
  1513. z:Destroy()
  1514. z1:Destroy()
  1515. z2:Destroy()
  1516. z3:Destroy()
  1517. z4:Destroy()
  1518. end
  1519. end)
  1520. for i = 1, 20 do
  1521. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  1522. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  1523. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1524. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  1525. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  1526. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  1527. if Debounces.on == false then break end
  1528. rs:wait()
  1529. end
  1530. if Debounces.CanAttack == false then
  1531. Debounces.CanAttack = true
  1532. Debounces.NoIdl = false
  1533. Debounces.on = false
  1534. end
  1535. end
  1536. end
  1537. end)
  1538. ----------------------------------------------------
  1539. mouse.KeyDown:connect(function(key)
  1540. if key == "e" then
  1541. if Debounces.CanAttack == true then
  1542. Debounces.CanAttack = false
  1543. Debounces.on = true
  1544. Debounces.NoIdl = true
  1545. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  1546. z = Instance.new("Sound", rarm)
  1547. z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  1548. z.Volume = .6
  1549. z.Pitch = pt[math.random(1,#pt)]
  1550. z.Looped = false
  1551. z:Play()
  1552. Debounces.RPunch = true
  1553. Debounces.LPunch = true
  1554. Debounces.ks = true
  1555. Debounces.ks2 = true
  1556. for i = 1, 3 do
  1557. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1558. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1559. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1560. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1561. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1562. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1563. if Debounces.on == false then break end
  1564. wait()
  1565. end
  1566. z2 = Instance.new("Sound", larm)
  1567. z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1568. z2.Volume = .6
  1569. z2.Pitch = pt[math.random(1,#pt)]
  1570. z2.Looped = false
  1571. z2:Play()
  1572. for i = 1, 3 do
  1573. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1574. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1575. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1576. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1577. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1578. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1579. if Debounces.on == false then break end
  1580. wait()
  1581. end
  1582. z3 = Instance.new("Sound", rarm)
  1583. z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1584. z3.Volume = 0.6
  1585. z3.Pitch = pt[math.random(1,#pt)]
  1586. z3.Looped = false
  1587. z3:Play()
  1588. for i = 1, 3 do
  1589. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1590. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1591. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1592. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1593. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1594. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1595. if Debounces.on == false then break end
  1596. wait()
  1597. end
  1598. z4 = Instance.new("Sound", larm)
  1599. z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1600. z4.Volume = .6
  1601. z4.Pitch = pt[math.random(1,#pt)]
  1602. z4.Looped = false
  1603. z4:Play()
  1604. for i = 1, 3 do
  1605. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1606. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1607. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1608. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1609. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1610. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1611. if Debounces.on == false then break end
  1612. wait()
  1613. end
  1614. z5 = Instance.new("Sound", rarm)
  1615. z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1616. z5.Volume = .6
  1617. z5.Pitch = pt[math.random(1,#pt)]
  1618. z5.Looped = false
  1619. z5:Play()
  1620. for i = 1, 3 do
  1621. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1622. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1623. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1624. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1625. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1626. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1627. if Debounces.on == false then break end
  1628. wait()
  1629. end
  1630. z6 = Instance.new("Sound", larm)
  1631. z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1632. z6.Volume = .6
  1633. z6.Pitch = pt[math.random(1,#pt)]
  1634. z6.Looped = false
  1635. z6:Play()
  1636. for i = 1, 3 do
  1637. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1638. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1639. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1640. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1641. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1642. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1643. if Debounces.on == false then break end
  1644. wait()
  1645. end
  1646. z7 = Instance.new("Sound", rarm)
  1647. z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  1648. z7.Volume = .6
  1649. z7.Pitch = pt[math.random(1,#pt)]
  1650. z7.Looped = false
  1651. z7:Play()
  1652. for i = 1, 3 do
  1653. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1654. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1655. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1656. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1657. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1658. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1659. if Debounces.on == false then break end
  1660. wait()
  1661. end
  1662. z8 = Instance.new("Sound", larm)
  1663. z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1664. z8.Volume = .6
  1665. z8.Pitch = pt[math.random(1,#pt)]
  1666. z8.Looped = false
  1667. z8:Play()
  1668. for i = 1, 3 do
  1669. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1670. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1671. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1672. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1673. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1674. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1675. if Debounces.on == false then break end
  1676. wait()
  1677. end
  1678. z9 = Instance.new("Sound", rarm)
  1679. z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1680. z9.Volume = 0.6
  1681. z9.Pitch = pt[math.random(1,#pt)]
  1682. z9.Looped = false
  1683. z9:Play()
  1684. for i = 1, 3 do
  1685. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1686. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1687. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1688. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1689. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1690. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1691. if Debounces.on == false then break end
  1692. wait()
  1693. end
  1694. z10 = Instance.new("Sound", larm)
  1695. z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1696. z10.Volume = .6
  1697. z10.Pitch = pt[math.random(1,#pt)]
  1698. z10.Looped = false
  1699. z10:Play()
  1700. for i = 1, 3 do
  1701. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1702. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1703. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1704. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1705. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1706. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1707. if Debounces.on == false then break end
  1708. wait()
  1709. end
  1710. z11 = Instance.new("Sound", rarm)
  1711. z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1712. z11.Volume = .6
  1713. z11.Pitch = pt[math.random(1,#pt)]
  1714. z11.Looped = false
  1715. z11:Play()
  1716. for i = 1, 3 do
  1717. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1718. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1719. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1720. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1721. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1722. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1723. if Debounces.on == false then break end
  1724. wait()
  1725. end
  1726. z12 = Instance.new("Sound", larm)
  1727. z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1728. z12.Volume = .6
  1729. z12.Pitch = pt[math.random(1,#pt)]
  1730. z12.Looped = false
  1731. z12:Play()
  1732. for i = 1, 3 do
  1733. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1734. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1735. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1736. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1737. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1738. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1739. if Debounces.on == false then break end
  1740. wait()
  1741. end
  1742. z13 = Instance.new("Sound", rarm)
  1743. z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1744. z13.Volume = 0.6
  1745. z13.Pitch = pt[math.random(1,#pt)]
  1746. z13.Looped = false
  1747. z13:Play()
  1748. for i = 1, 3 do
  1749. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1750. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1751. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1752. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1753. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1754. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1755. if Debounces.on == false then break end
  1756. wait()
  1757. end
  1758. z14 = Instance.new("Sound", larm)
  1759. z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1760. z14.Volume = .6
  1761. z14.Pitch = pt[math.random(1,#pt)]
  1762. z14.Looped = false
  1763. z14:Play()
  1764. for i = 1, 3 do
  1765. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1766. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1767. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1768. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1769. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1770. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1771. if Debounces.on == false then break end
  1772. wait()
  1773. end
  1774. z15 = Instance.new("Sound", rarm)
  1775. z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1776. z15.Volume = .6
  1777. z15.Pitch = pt[math.random(1,#pt)]
  1778. z15.Looped = false
  1779. z15:Play()
  1780. for i = 1, 3 do
  1781. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  1782. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  1783. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  1784. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  1785. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  1786. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  1787. if Debounces.on == false then break end
  1788. wait()
  1789. end
  1790. z16 = Instance.new("Sound", larm)
  1791. z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1792. z16.Volume = .6
  1793. z16.Pitch = pt[math.random(1,#pt)]
  1794. z16.Looped = false
  1795. z16:Play()
  1796. for i = 1, 3 do
  1797. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1798. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1799. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1800. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1801. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1802. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1803. if Debounces.on == false then break end
  1804. wait()
  1805. end
  1806. z17 = Instance.new("Sound", rarm)
  1807. z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  1808. z17.Volume = .6
  1809. z17.Pitch = pt[math.random(1,#pt)]
  1810. z17.Looped = false
  1811. z17:Play()
  1812. for i = 1, 3 do
  1813. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  1814. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  1815. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1816. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1817. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1818. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1819. if Debounces.on == false then break end
  1820. wait()
  1821. end
  1822. z18 = Instance.new("Sound", larm)
  1823. z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1824. z18.Volume = .6
  1825. z18.Pitch = pt[math.random(1,#pt)]
  1826. z18.Looped = false
  1827. z18:Play()
  1828. for i = 1, 3 do
  1829. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1830. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  1831. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1832. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1833. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1834. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1835. if Debounces.on == false then break end
  1836. wait()
  1837. end
  1838. z19 = Instance.new("Sound", rarm)
  1839. z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1840. z19.Volume = 0.6
  1841. z19.Pitch = pt[math.random(1,#pt)]
  1842. z19.Looped = false
  1843. z19:Play()
  1844. for i = 1, 3 do
  1845. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  1846. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  1847. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  1848. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  1849. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  1850. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  1851. if Debounces.on == false then break end
  1852. wait()
  1853. end
  1854. z20 = Instance.new("Sound", larm)
  1855. z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  1856. z20.Volume = .6
  1857. z20.Pitch = pt[math.random(1,#pt)]
  1858. z20.Looped = false
  1859. z20:Play()
  1860. for i = 1, 3 do
  1861. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  1862. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  1863. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  1864. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  1865. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  1866. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  1867. if Debounces.on == false then break end
  1868. wait()
  1869. end
  1870. z:Destroy()
  1871. z2:Destroy()
  1872. z3:Destroy()
  1873. z4:Destroy()
  1874. z5:Destroy()
  1875. z6:Destroy()
  1876. z7:Destroy()
  1877. z8:Destroy()
  1878. z9:Destroy()
  1879. z10:Destroy()
  1880. z11:Destroy()
  1881. z12:Destroy()
  1882. z13:Destroy()
  1883. z14:Destroy()
  1884. z15:Destroy()
  1885. z16:Destroy()
  1886. z17:Destroy()
  1887. z18:Destroy()
  1888. z19:Destroy()
  1889. z20:Destroy()
  1890. Debounces.LPunch = false
  1891. Debounces.RPunch = false
  1892. Debounces.ks = false
  1893. Debounces.ks2 = false
  1894. if Debounces.CanAttack == false then
  1895. Debounces.CanAttack = true
  1896. Debounces.on = false
  1897. Debounces.NoIdl = false
  1898. end
  1899. end
  1900. end
  1901. end)
  1902. -------------------------------
  1903. mouse.KeyDown:connect(function(key)
  1904. if key == "t" then
  1905. if Debounces.CanAttack == true then
  1906. Debounces.CanAttack = false
  1907. Debounces.NoIdl = true
  1908. Debounces.on = true
  1909. Debounces.ks = true
  1910. kik = rleg.Touched:connect(function(ht)
  1911. hit = ht.Parent
  1912. if ht and hit:IsA("Model") then
  1913. if hit:FindFirstChild("Humanoid") then
  1914. if hit.Name ~= p.Name then
  1915. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1916. Debounces.Slashed = true]]--
  1917. if Debounces.ks==true then
  1918. z = Instance.new("Sound",hed)
  1919. z.SoundId = "rbxassetid://169380525"
  1920. z.Volume = 1
  1921. z:Play()
  1922. Debounces.ks=false
  1923. end
  1924. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  1925. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  1926. --Debounces.Slashed = false
  1927. --end
  1928. end
  1929. end
  1930. elseif ht and hit:IsA("Hat") then
  1931. if hit.Parent.Name ~= p.Name then
  1932. if hit.Parent:FindFirstChild("Humanoid") then
  1933. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1934. Debounces.Slashed = true]]--
  1935. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  1936. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  1937. --Debounces.Slashed = false
  1938. --end
  1939. end
  1940. end
  1941. end
  1942. end)
  1943. for i = 1,20 do
  1944. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  1945. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.4)
  1946. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  1947. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  1948. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  1949. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1950. if Debounces.on == false then break end
  1951. rs:wait()
  1952. end
  1953. kik:disconnect()
  1954. if Debounces.CanAttack == false then
  1955. Debounces.CanAttack = true
  1956. Debounces.NoIdl = false
  1957. Debounces.on = false
  1958. end
  1959. end
  1960. end
  1961. end)
  1962. ----------------------------------------------------
  1963. mouse.KeyDown:connect(function(key)
  1964. if key == "y" then
  1965. if Debounces.CanAttack == true then
  1966. Debounces.CanAttack = false
  1967. Debounces.on = true
  1968. Debounces.NoIdl = true
  1969. for i = 1, 15 do
  1970. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  1971. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  1972. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  1973. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  1974. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  1975. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  1976. if Debounces.on == false then break end
  1977. rs:wait(2.7)
  1978. end
  1979. x = Instance.new("Sound",char)
  1980. x.SoundId = "rbxassetid://228343271"
  1981. x.Pitch = 1
  1982. x.Volume = .8
  1983. wait(.1)
  1984. x:Play()
  1985. Debounces.on = false
  1986. Debounces.Here = false
  1987. shot = shot + 1
  1988. local rng = Instance.new("Part", larm)
  1989. rng.Anchored = true
  1990. rng.BrickColor = BrickColor.new("Lime green")
  1991. rng.CanCollide = false
  1992. rng.FormFactor = 3
  1993. rng.Name = "Ring"
  1994. rng.Size = Vector3.new(1, 1, 1)
  1995. rng.Transparency = 0.35
  1996. rng.TopSurface = 0
  1997. rng.BottomSurface = 0
  1998. rng2 = rng:clone()
  1999. rng3 = rng2:clone()
  2000. rng4 = rng2:clone()
  2001. local rngm = Instance.new("SpecialMesh", rng)
  2002. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2003. rngm.Scale = Vector3.new(10, 10, 1)
  2004. rngm2 = rngm:clone()
  2005. rngm2.Scale = Vector3.new(5, 5, 3)
  2006. rngm3=rngm2:clone()
  2007. rngm3.Parent = rng3
  2008. rngm3.Scale = Vector3.new(8, 8, 1)
  2009. rngm4 = rngm2:clone()
  2010. rngm4.Parent = rng4
  2011. rngm4.Scale = Vector3.new(6, 6, 1)
  2012. local bem = Instance.new("Part", larm)
  2013. bem.Anchored = true
  2014. bem.BrickColor = BrickColor.new("Really black")
  2015. bem.CanCollide = false
  2016. bem.FormFactor = 3
  2017. bem.Name = "Beam" .. shot
  2018. bem.Size = Vector3.new(1, 1, 1)
  2019. bem.Transparency = 0.35
  2020. bem.TopSurface = 0
  2021. bem.BottomSurface = 0
  2022. local bemm = Instance.new("SpecialMesh", bem)
  2023. bemm.MeshType = 4
  2024. bemm.Scale = Vector3.new(1, 4, 4)
  2025. local out = Instance.new("Part", larm)
  2026. out.Anchored = true
  2027. out.BrickColor = BrickColor.new("Really black")
  2028. out.CanCollide = false
  2029. out.FormFactor = 3
  2030. out.Name = "Out"
  2031. out.Size = Vector3.new(4, 4, 4)
  2032. out.Transparency = 0.35
  2033. out.TopSurface = 0
  2034. out.BottomSurface = 0
  2035. local outm = Instance.new("SpecialMesh", out)
  2036. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2037. outm.Scale = Vector3.new(6, 4, 6)
  2038. local bnd = Instance.new("Part", larm)
  2039. bnd.Anchored = true
  2040. bnd.BrickColor = BrickColor.new("Lime green")
  2041. bnd.CanCollide = false
  2042. bnd.FormFactor = 3
  2043. bnd.Name = "Bend"
  2044. bnd.Size = Vector3.new(1, 1, 1)
  2045. bnd.Transparency = 1
  2046. bnd.TopSurface = 0
  2047. bnd.BottomSurface = 0
  2048. local bndm = Instance.new("SpecialMesh", bnd)
  2049. bndm.MeshType = 3
  2050. bndm.Scale = Vector3.new(8, 8, 8)
  2051. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2052. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2053. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2054. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2055. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2056. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  2057. Debounces.Shewt = true
  2058. coroutine.wrap(function()
  2059. for i = 1, 20, 0.2 do
  2060. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2061. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  2062. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  2063. rng.Transparency = i/20
  2064. rng3.Transparency = 1/24
  2065. rng4.Transparency = i/26
  2066. wait()
  2067. end
  2068. wait()
  2069. rng:Destroy()
  2070. end)()
  2071. if Debounces.Shewt == true then
  2072. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2073. hit = ht.Parent
  2074. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2075. if HasntTouched(hit.Name) == true and deb == false then
  2076. deb = true
  2077. coroutine.wrap(function()
  2078. hit:FindFirstChild("Humanoid").PlatformStand = true
  2079. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2080. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2081. end)()
  2082. table.insert(Touche, hit.Name)
  2083. deb = false
  2084. end
  2085. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2086. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2087. deb = true
  2088. coroutine.wrap(function()
  2089. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2090. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2091. wait(1)
  2092. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2093. end)()
  2094. table.insert(Touche, hit.Parent.Name)
  2095. deb = false
  2096. for i, v in pairs(Touche) do
  2097. print(v)
  2098. end
  2099. end
  2100. end
  2101. end)
  2102. end
  2103. for i = 0, 260, 8 do
  2104. bem.Size = Vector3.new(i, 3, 3)
  2105. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2106. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2107. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2108. bnd.Size = Vector3.new(1,1,1)
  2109. bndm.Scale = Vector3.new(8,8,8)
  2110. if i % 10 == 0 then
  2111. local newRng = rng2:Clone()
  2112. newRng.Parent = larm
  2113. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2114. local newRngm = rngm2:clone()
  2115. newRngm.Parent=newRng
  2116. coroutine.wrap(function()
  2117. for i = 1, 10, 0.2 do
  2118. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  2119. newRng.Transparency = i/10
  2120. wait()
  2121. end
  2122. wait()
  2123. newRng:Destroy()
  2124. end)()
  2125. end
  2126. wait()
  2127. end
  2128. wait()
  2129. Debounces.Shewt = false
  2130. bem:Destroy()
  2131. out:Destroy()
  2132. bnd:Destroy()
  2133. Debounces.Ready = false
  2134. for i, v in pairs(Touche) do
  2135. table.remove(Touche, i)
  2136. end
  2137. wait()
  2138. table.insert(Touche, char.Name)
  2139. Debounces.NoIdl = false
  2140. if Debounces.CanAttack == false then
  2141. Debounces.CanAttack = true
  2142. end
  2143. end
  2144. end
  2145. end)
  2146. ----------------------------------------------------
  2147. --[[mouse.KeyDown:connect(function(key)
  2148. if key == "y" then
  2149. if Debounces.CanAttack == true then
  2150. Debounces.CanAttack = false
  2151. Debounces.NoIdl = true
  2152. Debounces.on = true
  2153. local shell = Instance.new("Part",torso)
  2154. shell.BrickColor = BrickColor.new("Royal purple")
  2155. shell.Anchored = false
  2156. shell.CanCollide = false
  2157. shell.Locked = true
  2158. shell.TopSurface = "SmoothNoOutlines"
  2159. shell.BottomSurface = "SmoothNoOutlines"
  2160. shell.Size = Vector3.new(1.2,1.2,1.2)
  2161. shell.FormFactor = 3
  2162. local shellm = Instance.new("SpecialMesh",shell)
  2163. shellm.MeshType = "Sphere"
  2164. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  2165. Omega = function()
  2166. local X = Instance.new("Part",char)
  2167. local O = Instance.new("ObjectValue",X)
  2168. O.Name = "creator"
  2169. X.Locked = true
  2170. X.Name = "Shell"
  2171. X.Anchored = false
  2172. X.CanCollide = false
  2173. X.Transparency = 0.5
  2174. X.Reflectance = 0
  2175. X.BottomSurface = 0
  2176. X.TopSurface = 0
  2177. X.Shape = 0
  2178. local V = Instance.new("ObjectValue",X)
  2179. V.Value = char
  2180. V.Name = "creator"
  2181. X.BrickColor = BrickColor.new("Royal purple")
  2182. X.Size = Vector3.new(40,40,40)
  2183. --X.Material = "Neon"
  2184. local Z = Instance.new("SpecialMesh",X)
  2185. Z.MeshType = "Sphere"
  2186. Z.Scale = Vector3.new(0.2,0.2,0.2)
  2187. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  2188. local bv = Instance.new("BodyVelocity",X)
  2189. bv.maxForce = Vector3.new(99999,99999,99999)
  2190. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  2191. bv.velocity = root.CFrame.lookVector*10
  2192. Explode = X.Touched:connect(function(hit)
  2193. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  2194. local cf = X.CFrame
  2195. bv:Destroy()
  2196. X.Anchored = true
  2197. Z:Remove()
  2198. Explode:disconnect()
  2199. X.Size = Vector3.new(3,3,3)
  2200. X.Touched:connect(function(hit) end)
  2201. X.CanCollide = false
  2202. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  2203. if v:FindFirstChild('Humanoid') then
  2204. v.Humanoid:TakeDamage(math.random(80,120))
  2205. end
  2206. end
  2207. for i = 1, (40) do rs:wait()
  2208. X.Transparency = X.Transparency + (1/40)
  2209. X.Size = X.Size + Vector3.new(1,1,1)
  2210. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  2211. end
  2212. X:Destroy()
  2213. end
  2214. end)
  2215. end
  2216. for i = 1,200 do
  2217. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2218. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.03)
  2219. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  2220. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2221. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2222. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2223. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2224. if Debounces.on == false then break end
  2225. rs:wait()
  2226. end
  2227. for i = 1,30 do
  2228. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  2229. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.4)
  2230. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-170)), 0.4)
  2231. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2232. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2233. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2234. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2235. if Debounces.on == false then break end
  2236. rs:wait()
  2237. end
  2238. for i = 1,40 do
  2239. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  2240. shell.Size = shell.Size + Vector3.new(1,1,1)
  2241. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(100)), 0.4)
  2242. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-100)), 0.4)
  2243. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2244. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2245. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2246. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2247. if Debounces.on == false then break end
  2248. rs:wait()
  2249. end
  2250. for i = 1,40 do
  2251. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  2252. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(20)), 0.4)
  2253. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.4)
  2254. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2255. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2256. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2257. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2258. if Debounces.on == false then break end
  2259. rs:wait()
  2260. end
  2261. for i = 1,60 do
  2262. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  2263. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-30)), 0.4)
  2264. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.4)
  2265. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2266. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2267. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2268. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2269. if Debounces.on == false then break end
  2270. rs:wait()
  2271. end
  2272. for i = 1,60 do
  2273. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  2274. shell.Size = shell.Size + Vector3.new(1,1,1)
  2275. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(120)), 0.4)
  2276. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-120)), 0.4)
  2277. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  2278. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2279. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2280. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  2281. if Debounces.on == false then break end
  2282. rs:wait()
  2283. end
  2284. if Debounces.CanAttack == false then
  2285. Debounces.CanAttack = true
  2286. Debounces.NoIdl = false
  2287. Debounces.on = false
  2288. end
  2289. end
  2290. end
  2291. end)]]--
  2292. ----------------------------------------------------
  2293. Charging = false
  2294. mouse.KeyDown:connect(function(key)
  2295. if key == "r" then
  2296. if Charging == false then
  2297. Charging = true
  2298. if Debounces.CanAttack == true then
  2299. Debounces.CanAttack = false
  2300. Debounces.NoIdl = true
  2301. Debounces.on = true
  2302. for i = 1,20 do
  2303. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  2304. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  2305. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2306. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  2307. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  2308. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  2309. if Debounces.on == false then break end
  2310. rs:wait()
  2311. end
  2312. --[[for i = 1,20 do
  2313. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  2314. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  2315. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  2316. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  2317. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  2318. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  2319. if Debounces.on == false then break end
  2320. rs:wait()
  2321. end]]--
  2322. pt=Instance.new('Part',torso)
  2323. pt.Anchored=true
  2324. pt.CanCollide=false
  2325. pt.Locked = true
  2326. pt.FormFactor='Custom'
  2327. pt.Size=Vector3.new(1,1,1)
  2328. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2329. pt.Transparency=.6
  2330. pt.BrickColor=BrickColor.new('Really black')
  2331. msh=Instance.new('SpecialMesh',pt)
  2332. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  2333. msh.Scale=Vector3.new(8,4,8)
  2334. pt2=pt:clone()
  2335. pt2.Parent = torso
  2336. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2337. pt2.BrickColor=BrickColor.new("Lime green")
  2338. msh2=msh:clone()
  2339. msh2.Parent=pt2
  2340. msh2.Scale=Vector3.new(10,5,10)
  2341.  
  2342. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  2343.  
  2344. bl = Instance.new("Part", char)
  2345. bl.Locked = true
  2346. bl.Name = "Shell"
  2347. bl.BrickColor = BrickColor.new("Really black")
  2348. bl.Anchored = true
  2349. bl.CanCollide = false
  2350. bl.Transparency = 0
  2351. bl.Reflectance = 0
  2352. bl.BottomSurface = 0
  2353. bl.TopSurface = 0
  2354. bl.Shape = 0
  2355. blm = Instance.new("SpecialMesh",bl)
  2356. blm.MeshType = "Sphere"
  2357. blm.Scale = Vector3.new(1,1,1)
  2358. blm.MeshId = "rbxassetid://9982590"
  2359.  
  2360. coroutine.resume(coroutine.create(function()
  2361. for i=1, math.huge, 4 do
  2362. if Charging == true then
  2363. rs:wait()
  2364. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  2365. blm.Scale = blm.Scale + Vector3.new(0.1, 0.1, 0.1)
  2366. bl.Transparency = bl.Transparency + 0.005
  2367. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  2368. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  2369. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  2370. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  2371. elseif Charging == false then break
  2372. end
  2373. end
  2374. end))
  2375.  
  2376. repeat
  2377. local p = Instance.new('Part',torso)
  2378. p.formFactor = 'Custom'
  2379. p.Size = Vector3.new(1,1,1)
  2380. p.BrickColor = workspace.Base.BrickColor
  2381. p.CanCollide = false
  2382. p.Transparency = 0
  2383. p.Anchored = true
  2384. p.Locked=true
  2385. p.Material = workspace.Base.Material
  2386. s = math.random(1,40)/10
  2387. local m = Instance.new("BlockMesh",p)
  2388. m.Scale = Vector3.new(s,s,s)
  2389. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  2390. --[[coroutine.wrap(function()
  2391. wait(2)
  2392. while Charging == true do
  2393. wait(2)
  2394. GroundWave1()
  2395. wait(2)
  2396. end
  2397. end)()]]--
  2398. Spawn(function()
  2399. while rs:wait() do
  2400. if Charging == true then
  2401. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  2402. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  2403. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  2404. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  2405. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  2406. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  2407. elseif Charging == false then break
  2408. end
  2409. end
  2410. end)
  2411. Spawn(function()
  2412. while rs:wait() do
  2413. if p.Transparency >= 1 then p:Destroy() break end
  2414. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  2415. p.Transparency = p.Transparency+0.01
  2416. end
  2417. end)
  2418. wait(.3)
  2419. until Charging == false
  2420. end
  2421. end
  2422. end
  2423. end)
  2424. ----------------------------------------------------
  2425. mouse.KeyUp:connect(function(key)
  2426. if key == "r" then
  2427. if Charging == true then
  2428. Charging = false
  2429. pt:Destroy()
  2430. pt2:Destroy()
  2431. bl:Destroy()
  2432. if Debounces.CanAttack == false then
  2433. Debounces.CanAttack = true
  2434. Debounces.NoIdl = false
  2435. Debounces.on = false
  2436. end
  2437. end
  2438. end
  2439. end)
  2440. ----------------------------------------------------
  2441. mouse.KeyDown:connect(function(key)
  2442. if key == "g" then
  2443. if Debounces.CanAttack == true then
  2444. Debounces.CanAttack = false
  2445. Debounces.NoIdl = true
  2446. Debounces.on = true
  2447. local shell = Instance.new("Part",torso)
  2448. shell.BrickColor = BrickColor.new("Lime green")
  2449. shell.Anchored = true
  2450. shell.CanCollide = false
  2451. shell.Locked = true
  2452. shell.TopSurface = "SmoothNoOutlines"
  2453. shell.BottomSurface = "SmoothNoOutlines"
  2454. shell.Size = Vector3.new(1,1,1)
  2455. shellm = Instance.new("SpecialMesh",shell)
  2456. shellm.MeshType = "Sphere"
  2457. shellm.Scale = Vector3.new(1,1,1)
  2458. local shell2 = Instance.new("Part",torso)
  2459. shell2.BrickColor = BrickColor.new("Lime green")
  2460. shell2.Anchored = true
  2461. shell2.CanCollide = false
  2462. shell2.Locked = true
  2463. shell2.TopSurface = "SmoothNoOutlines"
  2464. shell2.BottomSurface = "SmoothNoOutlines"
  2465. shell2.Size = Vector3.new(1,1,1)
  2466. shellm2 = Instance.new("SpecialMesh",shell2)
  2467. shellm2.MeshType = "Sphere"
  2468. shellm2.Scale = Vector3.new(1,1,1)
  2469.  
  2470. function FindNearestTorso(Position,Distance,SinglePlayer)
  2471. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2472. local List = {}
  2473. for i,v in pairs(workspace:GetChildren())do
  2474. if v:IsA("Model")then
  2475. if v:findFirstChild("Torso")then
  2476. if v ~= char then
  2477. if(v.Torso.Position -Position).magnitude <= Distance then
  2478. table.insert(List,v)
  2479. end
  2480. end
  2481. end
  2482. end
  2483. end
  2484. return List
  2485. end
  2486.  
  2487. Shell = function()
  2488. local X = Instance.new("Part",char)
  2489. local O = Instance.new("ObjectValue",X)
  2490. O.Name = "creator"
  2491. X.Locked = true
  2492. X.Name = "Shell"
  2493. X.Anchored = false
  2494. X.CanCollide = false
  2495. X.Transparency = 0
  2496. X.Reflectance = 0
  2497. X.BottomSurface = 0
  2498. X.TopSurface = 0
  2499. X.Shape = 0
  2500. local V = Instance.new("ObjectValue",X)
  2501. V.Value = char
  2502. V.Name = "creator"
  2503. X.BrickColor = BrickColor.new("Lime green")
  2504. X.Size = Vector3.new(1,1,1)
  2505. --X.Material = "Neon"
  2506. local Z = Instance.new("SpecialMesh",X)
  2507. Z.MeshType = "Sphere"
  2508. Z.Scale = Vector3.new(1,1,1)
  2509. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  2510. local bv = Instance.new("BodyVelocity",X)
  2511. bv.maxForce = Vector3.new(99999,99999,99999)
  2512. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  2513. bv.velocity = root.CFrame.lookVector*65
  2514. Explode = X.Touched:connect(function(hit)
  2515. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  2516. local cf = X.CFrame
  2517. bv:Destroy()
  2518. X.Anchored = true
  2519. Z:Remove()
  2520. Explode:disconnect()
  2521. X.Size = Vector3.new(3,3,3)
  2522. X.Touched:connect(function(hit) end)
  2523. X.CanCollide = false
  2524. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  2525. if v:FindFirstChild('Humanoid') then
  2526. v.Humanoid:TakeDamage(math.random(6,12))
  2527. end
  2528. end
  2529. for i = 1, (40) do rs:wait()
  2530. X.Transparency = X.Transparency + (1/40)
  2531. X.Size = X.Size + Vector3.new(1,1,1)
  2532. X.CFrame = cf
  2533. end
  2534. X:Destroy()
  2535. end
  2536. end)
  2537. end
  2538. Shell()
  2539. for i = 1, 10 do
  2540. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2541. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2542. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2543. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2544. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  2545. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  2546. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), 0.7)
  2547. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.7)
  2548. if Debounces.on == false then break end
  2549. rs:wait()
  2550. end
  2551. Shell()
  2552. shell.Transparency = 1
  2553. for i = 1, 10 do
  2554. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2555. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2556. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2557. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2558. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2559. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2560. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2561. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2562. if Debounces.on == false then break end
  2563. rs:wait()
  2564. end
  2565. Shell()
  2566. shell.Transparency = 0
  2567. shell2.Transparency = 1
  2568. for i = 1, 10 do
  2569. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2570. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2571. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2572. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2573. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2574. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2575. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2576. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2577. if Debounces.on == false then break end
  2578. rs:wait()
  2579. end
  2580. Shell()
  2581. shell2.Transparency = 0
  2582. shell.Transparency = 1
  2583. for i = 1, 10 do
  2584. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2585. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2586. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2587. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2588. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2589. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2590. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2591. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2592. if Debounces.on == false then break end
  2593. rs:wait()
  2594. end
  2595. Shell()
  2596. shell.Transparency = 0
  2597. shell2.Transparency = 1
  2598. for i = 1, 10 do
  2599. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2600. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2601. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2602. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2603. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2604. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2605. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2606. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2607. if Debounces.on == false then break end
  2608. rs:wait()
  2609. end
  2610. Shell()
  2611. shell2.Transparency = 0
  2612. shell.Transparency = 1
  2613. for i = 1, 10 do
  2614. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2615. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2616. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2617. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2618. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2619. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2620. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2621. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2622. if Debounces.on == false then break end
  2623. rs:wait()
  2624. end
  2625. Shell()
  2626. shell.Transparency = 0
  2627. shell2.Transparency = 1
  2628. for i = 1, 10 do
  2629. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2630. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2631. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2632. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  2633. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2634. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2635. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2636. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2637. if Debounces.on == false then break end
  2638. rs:wait()
  2639. end
  2640. Shell()
  2641. shell2.Transparency = 0
  2642. shell.Transparency = 1
  2643. for i = 1, 10 do
  2644. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2645. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2646. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2647. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2648. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2649. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2650. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2651. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2652. if Debounces.on == false then break end
  2653. rs:wait()
  2654. end
  2655. Shell()
  2656. shell.Transparency = 0
  2657. shell2.Transparency = 1
  2658. for i = 1, 10 do
  2659. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2660. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2661. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2662. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2663. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2664. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2665. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2666. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2667. if Debounces.on == false then break end
  2668. rs:wait()
  2669. end
  2670. Shell()
  2671. shell2.Transparency = 0
  2672. shell.Transparency = 1
  2673. for i = 1, 10 do
  2674. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2675. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2676. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2677. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2678. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2679. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2680. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2681. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2682. if Debounces.on == false then break end
  2683. rs:wait()
  2684. end
  2685. Shell()
  2686. shell.Transparency = 0
  2687. shell2.Transparency = 1
  2688. for i = 1, 10 do
  2689. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2690. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2691. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2692. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2693. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2694. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2695. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2696. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2697. if Debounces.on == false then break end
  2698. rs:wait()
  2699. end
  2700. Shell()
  2701. shell2.Transparency = 0
  2702. shell.Transparency = 1
  2703. for i = 1, 10 do
  2704. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2705. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2706. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  2707. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  2708. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  2709. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  2710. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  2711. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  2712. if Debounces.on == false then break end
  2713. rs:wait()
  2714. end
  2715. Shell()
  2716. shell.Transparency = 0
  2717. shell2.Transparency = 1
  2718. for i = 1, 10 do
  2719. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  2720. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  2721. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  2722. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  2723. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  2724. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  2725. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  2726. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  2727. if Debounces.on == false then break end
  2728. rs:wait()
  2729. end
  2730. shell.Transparency = 1
  2731. if Debounces.CanAttack == false then
  2732. Debounces.CanAttack = true
  2733. Debounces.NoIdl = false
  2734. Debounces.on = false
  2735. end
  2736. end
  2737. end
  2738. end)
  2739. ----------------------------------------------------
  2740. Search = false
  2741. mouse.KeyDown:connect(function(key)
  2742. if key == "n" then
  2743. if Search == false then
  2744. Search = true
  2745. for i,v in pairs(game.Players:getPlayers()) do
  2746. if v.Name~=char.Name then
  2747. for j,k in pairs(v.Character:GetChildren()) do
  2748. if k:IsA("BasePart") and k.Transparency >= 1 then
  2749. bawx=Instance.new("SelectionBox",cam)
  2750. bawx.Color = BrickColor.new("Bright red")
  2751. bawx.Transparency = .5
  2752. bawx.Adornee = k
  2753. end
  2754. end
  2755. end
  2756. end
  2757. elseif Search == true then
  2758. Search = false
  2759. for i, v in pairs(cam:GetChildren()) do
  2760. if v:IsA("SelectionBox") then
  2761. v:Destroy()
  2762. end
  2763. end
  2764. end
  2765. end
  2766. end)
  2767. ----------------------------------------------------
  2768. Grab = false
  2769. mouse.KeyDown:connect(function(key)
  2770. if key == "z" then
  2771. Debounces.on = true
  2772. Debounces.NoIdl = true
  2773. Debounces.ks = true
  2774. if Grab == false then
  2775. gp = nil
  2776. for i = 1, 20 do
  2777. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  2778. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  2779. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2780. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2781. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  2782. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  2783. if Debounces.on == false then break end
  2784. rs:wait()
  2785. end
  2786. con1=larm.Touched:connect(function(hit) -- this is grab
  2787. ht = hit.Parent
  2788. hum1=ht:FindFirstChild('Humanoid')
  2789. if hum1 ~= nil then
  2790. if Debounces.ks==true then
  2791. z = Instance.new("Sound",hed)
  2792. z.SoundId = "rbxassetid://169380525"
  2793. z.Volume = 1
  2794. z:Play()
  2795. Debounces.ks=false
  2796. end
  2797. hum1.PlatformStand=true
  2798. gp = ht
  2799. Grab = true
  2800. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  2801. asd.Parent = larm
  2802. asd.Name = "asd"
  2803. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  2804. --[[elseif hum1 == nil then
  2805. con1:disconnect()
  2806. wait() return]]--
  2807. end
  2808. end)
  2809. for i = 1, 20 do
  2810. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  2811. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  2812. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2813. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2814. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  2815. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  2816. if Debounces.on == false then break end
  2817. rs:wait()
  2818. end
  2819. if hum1 == nil then
  2820. Debounces.on = false
  2821. Debounces.NoIdl = false
  2822. end
  2823. con1:disconnect()
  2824. elseif Grab == true then
  2825. Grab = false
  2826. Punch()
  2827. z = Instance.new("Sound",hed)
  2828. z.SoundId = "rbxassetid://169380525"
  2829. z.Pitch = ptz[math.random(1,#ptz)]
  2830. z.Volume = 1
  2831. z:Play()
  2832. for i = 1, 10 do
  2833. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2834. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2835. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2836. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2837. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2838. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2839. if Debounces.on == false then break end
  2840. rs:wait()
  2841. end
  2842. Punch()
  2843. z = Instance.new("Sound",hed)
  2844. z.SoundId = "rbxassetid://169380525"
  2845. z.Pitch = ptz[math.random(1,#ptz)]
  2846. z.Volume = 1
  2847. z:Play()
  2848. for i = 1, 10 do
  2849. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2850. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2851. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2852. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2853. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2854. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2855. if Debounces.on == false then break end
  2856. rs:wait()
  2857. end
  2858. Punch()
  2859. z = Instance.new("Sound",hed)
  2860. z.SoundId = "rbxassetid://169380525"
  2861. z.Pitch = ptz[math.random(1,#ptz)]
  2862. z.Volume = 1
  2863. z:Play()
  2864. for i = 1, 10 do
  2865. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2866. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2867. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2868. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2869. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2870. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2871. if Debounces.on == false then break end
  2872. rs:wait()
  2873. end
  2874. Punch()
  2875. z = Instance.new("Sound",hed)
  2876. z.SoundId = "rbxassetid://169380525"
  2877. z.Pitch = ptz[math.random(1,#ptz)]
  2878. z.Volume = 1
  2879. z:Play()
  2880. for i = 1, 10 do
  2881. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2882. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2883. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2884. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2885. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2886. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2887. if Debounces.on == false then break end
  2888. rs:wait()
  2889. end
  2890. Punch()
  2891. z = Instance.new("Sound",hed)
  2892. z.SoundId = "rbxassetid://169380525"
  2893. z.Pitch = ptz[math.random(1,#ptz)]
  2894. z.Volume = 1
  2895. z:Play()
  2896. for i = 1, 10 do
  2897. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2898. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2899. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2900. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2901. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2902. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2903. if Debounces.on == false then break end
  2904. rs:wait()
  2905. end
  2906. Punch()
  2907. z = Instance.new("Sound",hed)
  2908. z.SoundId = "rbxassetid://169380525"
  2909. z.Pitch = ptz[math.random(1,#ptz)]
  2910. z.Volume = 1
  2911. z:Play()
  2912. for i = 1, 10 do
  2913. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2914. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2915. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2916. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2917. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2918. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2919. if Debounces.on == false then break end
  2920. rs:wait()
  2921. end
  2922. Punch()
  2923. z = Instance.new("Sound",hed)
  2924. z.SoundId = "rbxassetid://169380525"
  2925. z.Pitch = ptz[math.random(1,#ptz)]
  2926. z.Volume = 1
  2927. z:Play()
  2928. for i = 1, 10 do
  2929. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2930. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2931. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2932. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2933. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2934. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2935. if Debounces.on == false then break end
  2936. rs:wait()
  2937. end
  2938. Punch()
  2939. z = Instance.new("Sound",hed)
  2940. z.SoundId = "rbxassetid://169380525"
  2941. z.Pitch = ptz[math.random(1,#ptz)]
  2942. z.Volume = 1
  2943. z:Play()
  2944. for i = 1, 10 do
  2945. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2946. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2947. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2948. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2949. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2950. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2951. if Debounces.on == false then break end
  2952. rs:wait()
  2953. end
  2954. Punch()
  2955. z = Instance.new("Sound",hed)
  2956. z.SoundId = "rbxassetid://169380525"
  2957. z.Pitch = ptz[math.random(1,#ptz)]
  2958. z.Volume = 1
  2959. z:Play()
  2960. for i = 1, 10 do
  2961. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2962. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2963. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2964. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2965. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2966. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2967. if Debounces.on == false then break end
  2968. rs:wait()
  2969. end
  2970. Punch()
  2971. z = Instance.new("Sound",hed)
  2972. z.SoundId = "rbxassetid://169380525"
  2973. z.Pitch = ptz[math.random(1,#ptz)]
  2974. z.Volume = 1
  2975. z:Play()
  2976. for i = 1, 10 do
  2977. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2978. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2979. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2980. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2981. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2982. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2983. if Debounces.on == false then break end
  2984. rs:wait()
  2985. end
  2986. Punch()
  2987. z = Instance.new("Sound",hed)
  2988. z.SoundId = "rbxassetid://169380525"
  2989. z.Pitch = ptz[math.random(1,#ptz)]
  2990. z.Volume = 1
  2991. z:Play()
  2992. for i = 1, 10 do
  2993. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2994. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2995. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2996. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2997. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2998. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2999. if Debounces.on == false then break end
  3000. rs:wait()
  3001. end
  3002. Punch()
  3003. z = Instance.new("Sound",hed)
  3004. z.SoundId = "rbxassetid://338700363"
  3005. z.Pitch = ptz[math.random(1,#ptz)]
  3006. z.Volume = 1
  3007. z:Play()
  3008. for i = 1, 10 do
  3009. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  3010. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  3011. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  3012. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  3013. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3014. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3015. if Debounces.on == false then break end
  3016. rs:wait()
  3017. end
  3018. con1:disconnect()
  3019. Debounces.on = false
  3020. Debounces.NoIdl = false
  3021. if gp ~= nil then
  3022. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  3023. for i,v in pairs(larm:GetChildren()) do
  3024. if v.Name == "asd" and v:IsA("Weld") then
  3025. v:Remove()
  3026. end
  3027. end
  3028. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3029. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3030. bv.P = 125000
  3031. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  3032. hum1=nil
  3033. ht=nil
  3034. Debounces.on = false
  3035. Debounces.NoIdl = false
  3036. elseif ht == nil then wait()
  3037. Grab = false
  3038. Debounces.on = false
  3039. Debounces.NoIdl = false
  3040. end
  3041. end
  3042. end
  3043. end)
  3044. ----------------------------------------------------
  3045. mouse.KeyDown:connect(function(key)
  3046. if string.byte(key) == 52 then
  3047. char.Humanoid.WalkSpeed = 60
  3048. end
  3049. end)
  3050. mouse.KeyUp:connect(function(key)
  3051. if string.byte(key) == 52 then
  3052. char.Humanoid.WalkSpeed = 8
  3053. end
  3054. end)
  3055. -------------------------------
  3056. local animpose = "Idle"
  3057. local lastanimpose = "Idle"
  3058. local sine = 0
  3059. local change = 1
  3060. local val = 0
  3061. local ffing = false
  3062. -------------------------------
  3063. game:GetService("RunService").RenderStepped:connect(function()
  3064. --[[if char.Humanoid.Jump == true then
  3065. jump = true
  3066. else
  3067. jump = false
  3068. end]]
  3069. char.Humanoid.FreeFalling:connect(function(f)
  3070. if f then
  3071. ffing = true
  3072. else
  3073. ffing = false
  3074. end
  3075. end)
  3076. sine = sine + change
  3077. if jumpn == true then
  3078. animpose = "Jumping"
  3079. elseif ffing == true then
  3080. animpose = "Freefalling"
  3081. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3082. animpose = "Idle"
  3083. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3084. animpose = "Walking"
  3085. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3086. animpose = "Running"
  3087. end
  3088. if animpose ~= lastanimpose then
  3089. sine = 0
  3090. if Debounces.NoIdl == false then
  3091. if animpose == "Idle" then
  3092. for i = 1, 2 do
  3093. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  3094. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  3095. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3096. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3097. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3098. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3099. end
  3100. elseif animpose == "Walking" then
  3101. for i = 1, 2 do
  3102. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3103. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3104. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3105. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3106. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3107. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3108. end
  3109. elseif animpose == "Running" then
  3110. for i = 1, 2 do
  3111. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  3112. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  3113. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  3114. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  3115. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  3116. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  3117. wait()
  3118. end
  3119. end
  3120. else
  3121. end
  3122. end
  3123. lastanimpose = animpose
  3124. if Debounces.NoIdl == false then
  3125. if animpose == "Idle" then
  3126. change = 0.5
  3127. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  3128. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  3129. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3130. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3131. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3132. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3133. elseif animpose == "Walking" then
  3134. change = 1
  3135. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3136. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3137. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3138. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3139. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3140. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3141. elseif animpose == "Running" then
  3142. change = 1
  3143. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  3144. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  3145. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  3146. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  3147. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  3148. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  3149. end
  3150. end
  3151. end)
  3152.  
  3153. hum.MaxHealth = 9001
  3154. wait(3)
  3155. hum.Health = 9001
  3156.  
  3157. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  3158. --[[Part0 = Vector3 (Start pos)
  3159. Part1 = Vector3 (End pos)
  3160. Times = number (Amount of lightning parts)
  3161. Offset = number (Offset)
  3162. Color = color (brickcolor value)
  3163. Thickness = number (thickness)
  3164. Trans = number (transparency)
  3165. ]]--
  3166. local magz = (Part0 - Part1).magnitude
  3167. local curpos = Part0
  3168. local trz = {-Offset,Offset}
  3169. for i=1,Times do
  3170. local li = Instance.new("Part", torso)
  3171. li.Name = "Lightning"
  3172. li.TopSurface =0
  3173. li.Material = "Neon"
  3174. li.BottomSurface = 0
  3175. li.Anchored = true
  3176. li.Locked = true
  3177. li.Transparency = Trans or 0.4
  3178. li.BrickColor = BrickColor.new(Color)
  3179. li.formFactor = "Custom"
  3180. li.CanCollide = false
  3181. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  3182. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  3183. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  3184. if Times == i then
  3185. local magz2 = (curpos - Part1).magnitude
  3186. li.Size = Vector3.new(Thickness,Thickness,magz2)
  3187. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  3188. else
  3189. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  3190. end
  3191. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  3192. game.Debris:AddItem(li,.1)
  3193. end
  3194. end
  3195.  
  3196. BodyParts = {} -- Parts to emit lightning effects from
  3197. for _, v in pairs(char:GetChildren()) do
  3198. if v:IsA("Part") then
  3199. table.insert(BodyParts, v)
  3200. end
  3201. end
  3202.  
  3203. Bounding = {} -- Calculate the bounding boxes
  3204. for _, v in pairs(BodyParts) do
  3205. local temp = {X=nil, Y=nil, Z=nil}
  3206. temp.X = v.Size.X/2 * 10
  3207. temp.Y = v.Size.Y/2 * 10
  3208. temp.Z = v.Size.Z/2 * 10
  3209. Bounding[v.Name] = temp
  3210. --table.insert(Bounding, v.Name, temp)
  3211. end
  3212.  
  3213. while wait(math.random(1,10)/10) do -- Emit the Lightning effects randomly
  3214. local Body1 = BodyParts[math.random(#BodyParts)]
  3215. local Body2 = BodyParts[math.random(#BodyParts)]
  3216. local Pos1 = Vector3.new(
  3217. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  3218. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  3219. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  3220. )
  3221. local Pos2 = Vector3.new(
  3222. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  3223. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  3224. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  3225. )
  3226. local SPos1 = Body1.Position + Pos1
  3227. local SPos2 = Body2.Position + Pos2
  3228. Lightning(SPos1, SPos2, 4, 3, "Really black", .3, .56)
  3229. end
  3230. -- ~CLarramore
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement