Advertisement
yamanohera155233

Untitled

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