Guest User

Untitled

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