Limesy

Radioactive Party Boi

Jul 16th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 139.69 KB | None | 0 0
  1. -------Radioactive party boi by goodguyaiden-------
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local mouse = p:GetMouse()
  5. local larm = char["Left Arm"]
  6. local rarm = char["Right Arm"]
  7. local lleg = char["Left Leg"]
  8. local rleg = char["Right Leg"]
  9. local hed = char.Head
  10. local torso = char.Torso
  11. local hum = char.Humanoid
  12. local cam = game.Workspace.CurrentCamera
  13. local root = char.HumanoidRootPart
  14. local deb = false
  15. local shot = 0
  16. local l = game:GetService("Lighting")
  17. local rs = game:GetService("RunService").RenderStepped
  18. local stanceToggle = "Normal"
  19. local rad = math.rad
  20. local GroundShake = false
  21. local GroundShake2 = false
  22. math.randomseed(os.time())
  23. hum.WalkSpeed = 5
  24. char.Health:Destroy()
  25. hum.MaxHealth = math.huge
  26. wait(0.1)
  27. hum.Health = math.huge
  28. ----------------------------------------------------
  29. Debounces = {
  30. on = false;
  31. ks = false;
  32. CanAttack = true;
  33. CanJoke = true;
  34. NoIdl = false;
  35. Slashing = false;
  36. Slashed = false;
  37. Grabbing = false;
  38. Grabbed = false;
  39. }
  40. local Touche = {char.Name, }
  41. ----------------------------------------------------
  42. function lerp(a, b, t) -- Linear interpolation
  43. return a + (b - a)*t
  44. end
  45.  
  46. function slerp(a, b, t) --Spherical interpolation
  47. dot = a:Dot(b)
  48. if dot > 0.99999 or dot < -0.99999 then
  49. return t <= 0.5 and a or b
  50. else
  51. r = math.acos(dot)
  52. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  53. end
  54. end
  55.  
  56. function matrixInterpolate(a, b, t)
  57. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  58. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  59. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  60. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  61. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  62. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  63. local t = v1:Dot(v2)
  64. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  65. return CFrame.new()
  66. end
  67. return CFrame.new(
  68. v0.x, v0.y, v0.z,
  69. v1.x, v1.y, v1.z,
  70. v2.x, v2.y, v2.z,
  71. v3.x, v3.y, v3.z)
  72. end
  73. ----------------------------------------------------
  74. function genWeld(a,b)
  75. local w = Instance.new("Weld",a)
  76. w.Part0 = a
  77. w.Part1 = b
  78. return w
  79. end
  80. function weld(a, b)
  81. local weld = Instance.new("Weld")
  82. weld.Name = "W"
  83. weld.Part0 = a
  84. weld.Part1 = b
  85. weld.C0 = a.CFrame:inverse() * b.CFrame
  86. weld.Parent = a
  87. return weld;
  88. end
  89. ----------------------------------------------------
  90. function Lerp(c1,c2,al)
  91. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  92. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  93. for i,v in pairs(com1) do
  94. com1[i] = v+(com2[i]-v)*al
  95. end
  96. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  97. end
  98. ----------------------------------------------------
  99. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  100. local wld = Instance.new("Weld", wp1)
  101. wld.Part0 = wp0
  102. wld.Part1 = wp1
  103. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  104. end
  105. ----------------------------------------------------
  106. for i,v in pairs(char:children()) do
  107. if v:IsA("Hat") then
  108. v:Destroy()
  109. end
  110. end
  111. for i,v in pairs(hed:children()) do
  112. if v:IsA("Sound") then
  113. v:Destroy()
  114. end
  115. end
  116. ----------------------------------------------------
  117. function HasntTouched(plrname)
  118. local ret = true
  119. for _, v in pairs(Touche) do
  120. if v == plrname then
  121. ret = false
  122. end
  123. end
  124. return ret
  125. end
  126. ----------------------------------------------------
  127. larm.Size = larm.Size * 2
  128. rarm.Size = rarm.Size * 2
  129. lleg.Size = lleg.Size * 2
  130. rleg.Size = rleg.Size * 2
  131. torso.Size = torso.Size * 2
  132. hed.Size = hed.Size * 2
  133. root.Size = root.Size * 2
  134. ----------------------------------------------------
  135. newWeld(torso, larm, -1.5, 0.5, 0)
  136. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  137. newWeld(torso, rarm, 1.5, 0.5, 0)
  138. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  139. newWeld(torso, hed, 0, 1.5, 0)
  140. newWeld(torso, lleg, -0.5, -1, 0)
  141. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  142. newWeld(torso, rleg, 0.5, -1, 0)
  143. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  144. newWeld(root, torso, 0, -1, 0)
  145. torso.Weld.C1 = CFrame.new(0, -1, 0)
  146. ----------------------------------------------------
  147. z = Instance.new("Sound", char)
  148. z.SoundId = "rbxassetid://590156873"--511077154
  149. z.Looped = true
  150. z.Pitch = 1
  151. z.Volume = 5
  152. wait(.01)
  153. z:Play()
  154. ----------------------------------------------------
  155.  
  156.  
  157. p:ClearCharacterAppearance()
  158. wait(0.1)
  159. p.Character.Head.BrickColor = BrickColor.new("Really black")
  160. p.Character.Torso.BrickColor = BrickColor.new("Really black")
  161. p.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  162. p.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  163. p.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  164. p.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  165.  
  166.  
  167. p.Character.Head.Material = "Ice"
  168. p.Character.Torso.Material = "Ice"
  169. p.Character["Right Arm"].Material = "Ice"
  170. p.Character["Right Leg"].Material = "Ice"
  171. p.Character["Left Leg"].Material = "Ice"
  172. p.Character["Left Arm"].Material = "Ice"
  173.  
  174.  
  175.  
  176.  
  177.  
  178. local m = Instance.new("Model")
  179. m.Name = "JackoAxe"
  180. p1 = Instance.new("Part", m)
  181. p1.BrickColor = BrickColor.new("Lime green")
  182. p1.Material = "Neon"
  183. p1.FormFactor = Enum.FormFactor.Custom
  184. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  185. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  186. p1.CanCollide = false
  187. p1.Locked = true
  188. p1.Elasticity = 0
  189. p1.BottomSurface = Enum.SurfaceType.Smooth
  190. p1.TopSurface = Enum.SurfaceType.Smooth
  191. b1 = Instance.new("SpecialMesh", p1)
  192. b1.MeshType = Enum.MeshType.Wedge
  193. b1.Name = "Mesh"
  194. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  195. p2 = Instance.new("Part", m)
  196. p2.BrickColor = BrickColor.new("Lime green")
  197. p2.FormFactor = Enum.FormFactor.Custom
  198. p2.Size = Vector3.new(1, 2.9000001, 1)
  199. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  200. p2.CanCollide = false
  201. p2.Locked = true
  202. p2.Elasticity = 0
  203. p2.BottomSurface = Enum.SurfaceType.Smooth
  204. p2.TopSurface = Enum.SurfaceType.Smooth
  205. b2 = Instance.new("BlockMesh", p2)
  206. b2.Name = "Mesh"
  207. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  208. p3 = Instance.new("Part", m)
  209. p3.BrickColor = BrickColor.new("Lime green")
  210. p3.Material = "Neon"
  211. p3.FormFactor = Enum.FormFactor.Custom
  212. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  213. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  214. p3.CanCollide = false
  215. p3.Locked = true
  216. p3.Elasticity = 0
  217. p3.BottomSurface = Enum.SurfaceType.Smooth
  218. p3.TopSurface = Enum.SurfaceType.Smooth
  219. b3 = Instance.new("SpecialMesh", p3)
  220. b3.MeshType = Enum.MeshType.Wedge
  221. b3.Name = "Mesh"
  222. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  223. p4 = Instance.new("Part", m)
  224. p4.BrickColor = BrickColor.new("Lime green")
  225. p4.Material = "Neon"
  226. p4.FormFactor = Enum.FormFactor.Custom
  227. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  228. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  229. p4.CanCollide = false
  230. p4.Locked = true
  231. p4.Elasticity = 0
  232. p4.BottomSurface = Enum.SurfaceType.Smooth
  233. p4.TopSurface = Enum.SurfaceType.Smooth
  234. b4 = Instance.new("SpecialMesh", p4)
  235. b4.MeshType = Enum.MeshType.Wedge
  236. b4.Name = "Mesh"
  237. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  238. p5 = Instance.new("Part", m)
  239. p5.BrickColor = BrickColor.new("Lime green")
  240. p5.Material = "Neon"
  241. p5.FormFactor = Enum.FormFactor.Custom
  242. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  243. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  244. p5.CanCollide = false
  245. p5.Locked = true
  246. p5.Elasticity = 0
  247. p5.BottomSurface = Enum.SurfaceType.Smooth
  248. p5.TopSurface = Enum.SurfaceType.Smooth
  249. b5 = Instance.new("SpecialMesh", p5)
  250. b5.MeshType = Enum.MeshType.Wedge
  251. b5.Name = "Mesh"
  252. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  253. p6 = Instance.new("Part", m)
  254. p6.Name = "Handle"
  255. p6.BrickColor = BrickColor.new("Lime green")
  256. p6.FormFactor = Enum.FormFactor.Custom
  257. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  258. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  259. p6.CanCollide = false
  260. p6.Locked = true
  261. p6.Elasticity = 0
  262. p6.BottomSurface = Enum.SurfaceType.Smooth
  263. p6.TopSurface = Enum.SurfaceType.Smooth
  264. b6 = Instance.new("BlockMesh", p6)
  265. b6.Name = "Mesh"
  266. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  267. p7 = Instance.new("Part", m)
  268. p7.BrickColor = BrickColor.new("Lime green")
  269. p7.Material = "Neon"
  270. p7.FormFactor = Enum.FormFactor.Custom
  271. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  272. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  273. p7.CanCollide = false
  274. p7.Locked = true
  275. p7.Elasticity = 0
  276. p7.BottomSurface = Enum.SurfaceType.Smooth
  277. p7.TopSurface = Enum.SurfaceType.Smooth
  278. b7 = Instance.new("SpecialMesh", p7)
  279. b7.MeshType = Enum.MeshType.Wedge
  280. b7.Name = "Mesh"
  281. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  282. p8 = Instance.new("Part", m)
  283. p8.BrickColor = BrickColor.new("Lime green")
  284. p8.Material = "Neon"
  285. p8.FormFactor = Enum.FormFactor.Custom
  286. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  287. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  288. p8.CanCollide = false
  289. p8.Locked = true
  290. p8.Elasticity = 0
  291. p8.BottomSurface = Enum.SurfaceType.Smooth
  292. p8.TopSurface = Enum.SurfaceType.Smooth
  293. b8 = Instance.new("SpecialMesh", p8)
  294. b8.MeshType = Enum.MeshType.Wedge
  295. b8.Name = "Mesh"
  296. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  297. p9 = Instance.new("Part", m)
  298. p9.BrickColor = BrickColor.new("Lime green")
  299. p9.FormFactor = Enum.FormFactor.Custom
  300. p9.Size = Vector3.new(1, 1.07999957, 1)
  301. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  302. p9.CanCollide = false
  303. p9.Locked = true
  304. p9.Elasticity = 0
  305. p9.BottomSurface = Enum.SurfaceType.Smooth
  306. p9.TopSurface = Enum.SurfaceType.Smooth
  307. b9 = Instance.new("BlockMesh", p9)
  308. b9.Name = "Mesh"
  309. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  310. p10 = Instance.new("Part", m)
  311. p10.BrickColor = BrickColor.new("Lime green")
  312. p10.FormFactor = Enum.FormFactor.Custom
  313. p10.Size = Vector3.new(1, 1.41999948, 1)
  314. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  315. p10.CanCollide = false
  316. p10.Locked = true
  317. p10.Elasticity = 0
  318. p10.BottomSurface = Enum.SurfaceType.Smooth
  319. p10.TopSurface = Enum.SurfaceType.Smooth
  320. b10 = Instance.new("BlockMesh", p10)
  321. b10.Name = "Mesh"
  322. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  323. p11 = Instance.new("Part", m)
  324. p11.BrickColor = BrickColor.new("Lime green")
  325. p11.FormFactor = Enum.FormFactor.Custom
  326. p11.Size = Vector3.new(1, 1.50999951, 1)
  327. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  328. p11.CanCollide = false
  329. p11.Locked = true
  330. p11.Elasticity = 0
  331. p11.BottomSurface = Enum.SurfaceType.Smooth
  332. p11.TopSurface = Enum.SurfaceType.Smooth
  333. b11 = Instance.new("BlockMesh", p11)
  334. b11.Name = "Mesh"
  335. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  336. p12 = Instance.new("Part", m)
  337. p12.Name = "BladeCenter"
  338. p12.BrickColor = BrickColor.new("Lime green")
  339. p12.Material = Enum.Material.Concrete
  340. p12.FormFactor = Enum.FormFactor.Symmetric
  341. p12.Size = Vector3.new(1, 2, 2)
  342. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  343. p12.CanCollide = false
  344. p12.Locked = true
  345. p12.BottomSurface = Enum.SurfaceType.Smooth
  346. p12.TopSurface = Enum.SurfaceType.Smooth
  347. b12 = Instance.new("SpecialMesh", p12)
  348. b12.MeshType = Enum.MeshType.Brick
  349. b12.Name = "Mesh"
  350. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  351. p13 = Instance.new("Part", m)
  352. p13.BrickColor = BrickColor.new("Lime green")
  353. p13.FormFactor = Enum.FormFactor.Custom
  354. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  355. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  356. p13.CanCollide = false
  357. p13.Locked = true
  358. p13.Elasticity = 0
  359. p13.BottomSurface = Enum.SurfaceType.Smooth
  360. p13.TopSurface = Enum.SurfaceType.Smooth
  361. b13 = Instance.new("BlockMesh", p13)
  362. b13.Name = "Mesh"
  363. b13.Scale = Vector3.new(1, 1, 0.400000006)
  364. p14 = Instance.new("Part", m)
  365. p14.BrickColor = BrickColor.new("Lime green")
  366. p14.FormFactor = Enum.FormFactor.Custom
  367. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  368. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  369. p14.CanCollide = false
  370. p14.Locked = true
  371. p14.Elasticity = 0
  372. p14.BottomSurface = Enum.SurfaceType.Smooth
  373. p14.TopSurface = Enum.SurfaceType.Smooth
  374. b14 = Instance.new("BlockMesh", p14)
  375. b14.Name = "Mesh"
  376. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  377. p15 = Instance.new("Part", m)
  378. p15.BrickColor = BrickColor.new("Lime green")
  379. p15.FormFactor = Enum.FormFactor.Custom
  380. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  381. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  382. p15.CanCollide = false
  383. p15.Locked = true
  384. p15.Elasticity = 0
  385. p15.BottomSurface = Enum.SurfaceType.Smooth
  386. p15.TopSurface = Enum.SurfaceType.Smooth
  387. b15 = Instance.new("BlockMesh", p15)
  388. b15.Name = "Mesh"
  389. b15.Scale = Vector3.new(1, 1, 0.400000006)
  390. p16 = Instance.new("Part", m)
  391. p16.BrickColor = BrickColor.new("Lime green")
  392. p16.FormFactor = Enum.FormFactor.Custom
  393. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  394. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  395. p16.CanCollide = false
  396. p16.Locked = true
  397. p16.Elasticity = 0
  398. p16.BottomSurface = Enum.SurfaceType.Smooth
  399. p16.TopSurface = Enum.SurfaceType.Smooth
  400. b16 = Instance.new("BlockMesh", p16)
  401. b16.Name = "Mesh"
  402. b16.Scale = Vector3.new(1, 1, 0.400000006)
  403. p17 = Instance.new("Part", m)
  404. p17.BrickColor = BrickColor.new("Lime green")
  405. p17.FormFactor = Enum.FormFactor.Custom
  406. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  407. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  408. p17.CanCollide = false
  409. p17.Locked = true
  410. p17.Elasticity = 0
  411. p17.BottomSurface = Enum.SurfaceType.Smooth
  412. p17.TopSurface = Enum.SurfaceType.Smooth
  413. b17 = Instance.new("BlockMesh", p17)
  414. b17.Name = "Mesh"
  415. b17.Scale = Vector3.new(1, 1, 0.400000006)
  416. p18 = Instance.new("WedgePart", m)
  417. p18.BrickColor = BrickColor.new("Lime green")
  418. p18.Name = "BladePart1"
  419. p18.Material = Enum.Material.Concrete
  420. p18.Name = "Wedge"
  421. p18.FormFactor = Enum.FormFactor.Symmetric
  422. p18.Size = Vector3.new(1, 4, 2)
  423. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  424. p18.CanCollide = false
  425. p18.Locked = true
  426. p18.BottomSurface = Enum.SurfaceType.Smooth
  427. p18.TopSurface = Enum.SurfaceType.Smooth
  428. b18 = Instance.new("SpecialMesh", p18)
  429. b18.MeshType = Enum.MeshType.Wedge
  430. b18.Name = "Mesh"
  431. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  432. p19 = Instance.new("WedgePart", m)
  433. p19.BrickColor = BrickColor.new("Lime green")
  434. p19.Name = "BladePart2"
  435. p19.Material = Enum.Material.Concrete
  436. p19.Name = "Wedge"
  437. p19.FormFactor = Enum.FormFactor.Symmetric
  438. p19.Size = Vector3.new(1, 4, 2)
  439. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  440. p19.CanCollide = false
  441. p19.Locked = true
  442. p19.BottomSurface = Enum.SurfaceType.Smooth
  443. p19.TopSurface = Enum.SurfaceType.Smooth
  444. b19 = Instance.new("SpecialMesh", p19)
  445. b19.MeshType = Enum.MeshType.Wedge
  446. b19.Name = "Mesh"
  447. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  448. p20 = Instance.new("Part", m)
  449. p20.BrickColor = BrickColor.new("Lime green")
  450. p20.FormFactor = Enum.FormFactor.Custom
  451. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  452. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  453. p20.CanCollide = false
  454. p20.Locked = true
  455. p20.Elasticity = 0
  456. p20.BottomSurface = Enum.SurfaceType.Smooth
  457. p20.TopSurface = Enum.SurfaceType.Smooth
  458. b20 = Instance.new("BlockMesh", p20)
  459. b20.Name = "Mesh"
  460. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  461. p21 = Instance.new("Part", m)
  462. p21.BrickColor = BrickColor.new("Lime green")
  463. p21.Material = "Neon"
  464. p21.FormFactor = Enum.FormFactor.Custom
  465. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  466. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  467. p21.CanCollide = false
  468. p21.Locked = true
  469. p21.Elasticity = 0
  470. p21.BottomSurface = Enum.SurfaceType.Smooth
  471. p21.TopSurface = Enum.SurfaceType.Smooth
  472. b21 = Instance.new("SpecialMesh", p21)
  473. b21.MeshType = Enum.MeshType.Wedge
  474. b21.Name = "Mesh"
  475. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  476. w1 = Instance.new("Weld", p1)
  477. w1.Name = "Part_Weld"
  478. w1.Part0 = p1
  479. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  480. w1.Part1 = p2
  481. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  482. w2 = Instance.new("Weld", p2)
  483. w2.Name = "Part_Weld"
  484. w2.Part0 = p2
  485. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  486. w2.Part1 = p3
  487. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  488. w3 = Instance.new("Weld", p3)
  489. w3.Name = "Part_Weld"
  490. w3.Part0 = p3
  491. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  492. w3.Part1 = p4
  493. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  494. w4 = Instance.new("Weld", p4)
  495. w4.Name = "Part_Weld"
  496. w4.Part0 = p4
  497. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  498. w4.Part1 = p5
  499. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  500. w5 = Instance.new("Weld", p5)
  501. w5.Name = "Part_Weld"
  502. w5.Part0 = p5
  503. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  504. w5.Part1 = p6
  505. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  506. w6 = Instance.new("Weld", p6)
  507. w6.Name = "Part_Weld"
  508. w6.Part0 = p6
  509. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  510. w6.Part1 = p7
  511. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  512. w7 = Instance.new("Weld", p7)
  513. w7.Name = "Part_Weld"
  514. w7.Part0 = p7
  515. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  516. w7.Part1 = p8
  517. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  518. w8 = Instance.new("Weld", p8)
  519. w8.Name = "Part_Weld"
  520. w8.Part0 = p8
  521. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  522. w8.Part1 = p9
  523. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  524. w9 = Instance.new("Weld", p9)
  525. w9.Name = "Part_Weld"
  526. w9.Part0 = p9
  527. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  528. w9.Part1 = p10
  529. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  530. w10 = Instance.new("Weld", p10)
  531. w10.Name = "Part_Weld"
  532. w10.Part0 = p10
  533. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  534. w10.Part1 = p11
  535. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  536. w11 = Instance.new("Weld", p11)
  537. w11.Name = "Part_Weld"
  538. w11.Part0 = p11
  539. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  540. w11.Part1 = p12
  541. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  542. w12 = Instance.new("Weld", p12)
  543. w12.Name = "Part_Weld"
  544. w12.Part0 = p12
  545. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  546. w12.Part1 = p13
  547. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  548. w13 = Instance.new("Weld", p13)
  549. w13.Name = "Part_Weld"
  550. w13.Part0 = p13
  551. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  552. w13.Part1 = p14
  553. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  554. w14 = Instance.new("Weld", p14)
  555. w14.Name = "Part_Weld"
  556. w14.Part0 = p14
  557. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  558. w14.Part1 = p15
  559. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  560. w15 = Instance.new("Weld", p15)
  561. w15.Name = "Part_Weld"
  562. w15.Part0 = p15
  563. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  564. w15.Part1 = p16
  565. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  566. w16 = Instance.new("Weld", p16)
  567. w16.Name = "Part_Weld"
  568. w16.Part0 = p16
  569. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  570. w16.Part1 = p17
  571. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  572. w17 = Instance.new("Weld", p17)
  573. w17.Name = "Wedge_Weld"
  574. w17.Part0 = p17
  575. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  576. w17.Part1 = p18
  577. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  578. w18 = Instance.new("Weld", p18)
  579. w18.Name = "Wedge_Weld"
  580. w18.Part0 = p18
  581. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  582. w18.Part1 = p19
  583. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  584. w19 = Instance.new("Weld", p19)
  585. w19.Name = "Part_Weld"
  586. w19.Part0 = p19
  587. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  588. w19.Part1 = p20
  589. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  590. w20 = Instance.new("Weld", p20)
  591. w20.Name = "Part_Weld"
  592. w20.Part0 = p20
  593. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  594. w20.Part1 = p21
  595. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  596. m.Parent = char
  597. m:MakeJoints()
  598. ----------------------------------------------------
  599. local cor = Instance.new("Part", char.JackoAxe)
  600. cor.Name = "Thingy"
  601. cor.Locked = true
  602. cor.BottomSurface = 0
  603. cor.CanCollide = false
  604. cor.Size = Vector3.new(1, 13, 1)
  605. cor.Transparency = 1
  606. cor.TopSurface = 0
  607. corw = Instance.new("Weld", cor)
  608. corw.Part0 = rarm
  609. corw.Part1 = cor
  610. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  611. corw.C1 = CFrame.new(0, 0, 0)
  612. weld1 = Instance.new("Weld", char.JackoAxe)
  613. weld1.Part0 = cor
  614. weld1.Part1 = p6
  615. weld1.C0 = CFrame.new(0, 0, 0)
  616. ----------------------------------------------------
  617. hitb = Instance.new("Part", char.JackoAxe)
  618. hitb.Name = "Thingy2"
  619. hitb.Locked = true
  620. hitb.BottomSurface = 0
  621. hitb.CanCollide = false
  622. hitb.Size = Vector3.new(0, 8, 6)
  623. hitb.Transparency = 1
  624. hitb.TopSurface = 0
  625. weld2 = Instance.new("Weld", char.JackoAxe)
  626. weld2.Part0 = hitb
  627. weld2.Part1 = p12
  628. weld2.C0 = CFrame.new(0, .6, 1)
  629. -----------------------------------
  630. local m = Instance.new("Model")
  631. m.Name = "JackoAxe2"
  632. p1 = Instance.new("Part", m)
  633. p1.BrickColor = BrickColor.new("Lime green")
  634. p1.Material = "Neon"
  635. p1.FormFactor = Enum.FormFactor.Custom
  636. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  637. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  638. p1.CanCollide = false
  639. p1.Locked = true
  640. p1.Elasticity = 0
  641. p1.BottomSurface = Enum.SurfaceType.Smooth
  642. p1.TopSurface = Enum.SurfaceType.Smooth
  643. b1 = Instance.new("SpecialMesh", p1)
  644. b1.MeshType = Enum.MeshType.Wedge
  645. b1.Name = "Mesh"
  646. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  647. p2 = Instance.new("Part", m)
  648. p2.BrickColor = BrickColor.new("Lime green")
  649. p2.FormFactor = Enum.FormFactor.Custom
  650. p2.Size = Vector3.new(1, 2.9000001, 1)
  651. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  652. p2.CanCollide = false
  653. p2.Locked = true
  654. p2.Elasticity = 0
  655. p2.BottomSurface = Enum.SurfaceType.Smooth
  656. p2.TopSurface = Enum.SurfaceType.Smooth
  657. b2 = Instance.new("BlockMesh", p2)
  658. b2.Name = "Mesh"
  659. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  660. p3 = Instance.new("Part", m)
  661. p3.BrickColor = BrickColor.new("Lime green")
  662. p3.Material = "Neon"
  663. p3.FormFactor = Enum.FormFactor.Custom
  664. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  665. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  666. p3.CanCollide = false
  667. p3.Locked = true
  668. p3.Elasticity = 0
  669. p3.BottomSurface = Enum.SurfaceType.Smooth
  670. p3.TopSurface = Enum.SurfaceType.Smooth
  671. b3 = Instance.new("SpecialMesh", p3)
  672. b3.MeshType = Enum.MeshType.Wedge
  673. b3.Name = "Mesh"
  674. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  675. p4 = Instance.new("Part", m)
  676. p4.BrickColor = BrickColor.new("Lime green")
  677. p4.Material = "Neon"
  678. p4.FormFactor = Enum.FormFactor.Custom
  679. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  680. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  681. p4.CanCollide = false
  682. p4.Locked = true
  683. p4.Elasticity = 0
  684. p4.BottomSurface = Enum.SurfaceType.Smooth
  685. p4.TopSurface = Enum.SurfaceType.Smooth
  686. b4 = Instance.new("SpecialMesh", p4)
  687. b4.MeshType = Enum.MeshType.Wedge
  688. b4.Name = "Mesh"
  689. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  690. p5 = Instance.new("Part", m)
  691. p5.BrickColor = BrickColor.new("Lime green")
  692. p5.Material = "Neon"
  693. p5.FormFactor = Enum.FormFactor.Custom
  694. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  695. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  696. p5.CanCollide = false
  697. p5.Locked = true
  698. p5.Elasticity = 0
  699. p5.BottomSurface = Enum.SurfaceType.Smooth
  700. p5.TopSurface = Enum.SurfaceType.Smooth
  701. b5 = Instance.new("SpecialMesh", p5)
  702. b5.MeshType = Enum.MeshType.Wedge
  703. b5.Name = "Mesh"
  704. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  705. p6 = Instance.new("Part", m)
  706. p6.Name = "Handle"
  707. p6.BrickColor = BrickColor.new("Lime green")
  708. p6.FormFactor = Enum.FormFactor.Custom
  709. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  710. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  711. p6.CanCollide = false
  712. p6.Locked = true
  713. p6.Elasticity = 0
  714. p6.BottomSurface = Enum.SurfaceType.Smooth
  715. p6.TopSurface = Enum.SurfaceType.Smooth
  716. b6 = Instance.new("BlockMesh", p6)
  717. b6.Name = "Mesh"
  718. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  719. p7 = Instance.new("Part", m)
  720. p7.BrickColor = BrickColor.new("Lime green")
  721. p7.Material = "Neon"
  722. p7.FormFactor = Enum.FormFactor.Custom
  723. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  724. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  725. p7.CanCollide = false
  726. p7.Locked = true
  727. p7.Elasticity = 0
  728. p7.BottomSurface = Enum.SurfaceType.Smooth
  729. p7.TopSurface = Enum.SurfaceType.Smooth
  730. b7 = Instance.new("SpecialMesh", p7)
  731. b7.MeshType = Enum.MeshType.Wedge
  732. b7.Name = "Mesh"
  733. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  734. p8 = Instance.new("Part", m)
  735. p8.BrickColor = BrickColor.new("Lime green")
  736. p8.Material = "Neon"
  737. p8.FormFactor = Enum.FormFactor.Custom
  738. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  739. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  740. p8.CanCollide = false
  741. p8.Locked = true
  742. p8.Elasticity = 0
  743. p8.BottomSurface = Enum.SurfaceType.Smooth
  744. p8.TopSurface = Enum.SurfaceType.Smooth
  745. b8 = Instance.new("SpecialMesh", p8)
  746. b8.MeshType = Enum.MeshType.Wedge
  747. b8.Name = "Mesh"
  748. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  749. p9 = Instance.new("Part", m)
  750. p9.BrickColor = BrickColor.new("Lime green")
  751. p9.FormFactor = Enum.FormFactor.Custom
  752. p9.Size = Vector3.new(1, 1.07999957, 1)
  753. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  754. p9.CanCollide = false
  755. p9.Locked = true
  756. p9.Elasticity = 0
  757. p9.BottomSurface = Enum.SurfaceType.Smooth
  758. p9.TopSurface = Enum.SurfaceType.Smooth
  759. b9 = Instance.new("BlockMesh", p9)
  760. b9.Name = "Mesh"
  761. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  762. p10 = Instance.new("Part", m)
  763. p10.BrickColor = BrickColor.new("Lime green")
  764. p10.FormFactor = Enum.FormFactor.Custom
  765. p10.Size = Vector3.new(1, 1.41999948, 1)
  766. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  767. p10.CanCollide = false
  768. p10.Locked = true
  769. p10.Elasticity = 0
  770. p10.BottomSurface = Enum.SurfaceType.Smooth
  771. p10.TopSurface = Enum.SurfaceType.Smooth
  772. b10 = Instance.new("BlockMesh", p10)
  773. b10.Name = "Mesh"
  774. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  775. p11 = Instance.new("Part", m)
  776. p11.BrickColor = BrickColor.new("Lime green")
  777. p11.FormFactor = Enum.FormFactor.Custom
  778. p11.Size = Vector3.new(1, 1.50999951, 1)
  779. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  780. p11.CanCollide = false
  781. p11.Locked = true
  782. p11.Elasticity = 0
  783. p11.BottomSurface = Enum.SurfaceType.Smooth
  784. p11.TopSurface = Enum.SurfaceType.Smooth
  785. b11 = Instance.new("BlockMesh", p11)
  786. b11.Name = "Mesh"
  787. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  788. p12 = Instance.new("Part", m)
  789. p12.Name = "BladeCenter"
  790. p12.BrickColor = BrickColor.new("Lime green")
  791. p12.Material = Enum.Material.Concrete
  792. p12.FormFactor = Enum.FormFactor.Symmetric
  793. p12.Size = Vector3.new(1, 2, 2)
  794. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  795. p12.CanCollide = false
  796. p12.Locked = true
  797. p12.BottomSurface = Enum.SurfaceType.Smooth
  798. p12.TopSurface = Enum.SurfaceType.Smooth
  799. b12 = Instance.new("SpecialMesh", p12)
  800. b12.MeshType = Enum.MeshType.Brick
  801. b12.Name = "Mesh"
  802. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  803. p13 = Instance.new("Part", m)
  804. p13.BrickColor = BrickColor.new("Lime green")
  805. p13.FormFactor = Enum.FormFactor.Custom
  806. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  807. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  808. p13.CanCollide = false
  809. p13.Locked = true
  810. p13.Elasticity = 0
  811. p13.BottomSurface = Enum.SurfaceType.Smooth
  812. p13.TopSurface = Enum.SurfaceType.Smooth
  813. b13 = Instance.new("BlockMesh", p13)
  814. b13.Name = "Mesh"
  815. b13.Scale = Vector3.new(1, 1, 0.400000006)
  816. p14 = Instance.new("Part", m)
  817. p14.BrickColor = BrickColor.new("Lime green")
  818. p14.FormFactor = Enum.FormFactor.Custom
  819. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  820. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  821. p14.CanCollide = false
  822. p14.Locked = true
  823. p14.Elasticity = 0
  824. p14.BottomSurface = Enum.SurfaceType.Smooth
  825. p14.TopSurface = Enum.SurfaceType.Smooth
  826. b14 = Instance.new("BlockMesh", p14)
  827. b14.Name = "Mesh"
  828. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  829. p15 = Instance.new("Part", m)
  830. p15.BrickColor = BrickColor.new("Lime green")
  831. p15.FormFactor = Enum.FormFactor.Custom
  832. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  833. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  834. p15.CanCollide = false
  835. p15.Locked = true
  836. p15.Elasticity = 0
  837. p15.BottomSurface = Enum.SurfaceType.Smooth
  838. p15.TopSurface = Enum.SurfaceType.Smooth
  839. b15 = Instance.new("BlockMesh", p15)
  840. b15.Name = "Mesh"
  841. b15.Scale = Vector3.new(1, 1, 0.400000006)
  842. p16 = Instance.new("Part", m)
  843. p16.BrickColor = BrickColor.new("Lime green")
  844. p16.FormFactor = Enum.FormFactor.Custom
  845. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  846. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  847. p16.CanCollide = false
  848. p16.Locked = true
  849. p16.Elasticity = 0
  850. p16.BottomSurface = Enum.SurfaceType.Smooth
  851. p16.TopSurface = Enum.SurfaceType.Smooth
  852. b16 = Instance.new("BlockMesh", p16)
  853. b16.Name = "Mesh"
  854. b16.Scale = Vector3.new(1, 1, 0.400000006)
  855. p17 = Instance.new("Part", m)
  856. p17.BrickColor = BrickColor.new("Lime green")
  857. p17.FormFactor = Enum.FormFactor.Custom
  858. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  859. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  860. p17.CanCollide = false
  861. p17.Locked = true
  862. p17.Elasticity = 0
  863. p17.BottomSurface = Enum.SurfaceType.Smooth
  864. p17.TopSurface = Enum.SurfaceType.Smooth
  865. b17 = Instance.new("BlockMesh", p17)
  866. b17.Name = "Mesh"
  867. b17.Scale = Vector3.new(1, 1, 0.400000006)
  868. p18 = Instance.new("WedgePart", m)
  869. p18.BrickColor = BrickColor.new("Lime green")
  870. p18.Name = "BladePart1"
  871. p18.Material = Enum.Material.Concrete
  872. p18.Name = "Wedge"
  873. p18.FormFactor = Enum.FormFactor.Symmetric
  874. p18.Size = Vector3.new(1, 4, 2)
  875. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  876. p18.CanCollide = false
  877. p18.Locked = true
  878. p18.BottomSurface = Enum.SurfaceType.Smooth
  879. p18.TopSurface = Enum.SurfaceType.Smooth
  880. b18 = Instance.new("SpecialMesh", p18)
  881. b18.MeshType = Enum.MeshType.Wedge
  882. b18.Name = "Mesh"
  883. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  884. p19 = Instance.new("WedgePart", m)
  885. p19.BrickColor = BrickColor.new("Lime green")
  886. p19.Name = "BladePart2"
  887. p19.Material = Enum.Material.Concrete
  888. p19.Name = "Wedge"
  889. p19.FormFactor = Enum.FormFactor.Symmetric
  890. p19.Size = Vector3.new(1, 4, 2)
  891. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  892. p19.CanCollide = false
  893. p19.Locked = true
  894. p19.BottomSurface = Enum.SurfaceType.Smooth
  895. p19.TopSurface = Enum.SurfaceType.Smooth
  896. b19 = Instance.new("SpecialMesh", p19)
  897. b19.MeshType = Enum.MeshType.Wedge
  898. b19.Name = "Mesh"
  899. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  900. p20 = Instance.new("Part", m)
  901. p20.BrickColor = BrickColor.new("Lime green")
  902. p20.FormFactor = Enum.FormFactor.Custom
  903. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  904. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  905. p20.CanCollide = false
  906. p20.Locked = true
  907. p20.Elasticity = 0
  908. p20.BottomSurface = Enum.SurfaceType.Smooth
  909. p20.TopSurface = Enum.SurfaceType.Smooth
  910. b20 = Instance.new("BlockMesh", p20)
  911. b20.Name = "Mesh"
  912. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  913. p21 = Instance.new("Part", m)
  914. p21.BrickColor = BrickColor.new("Lime green")
  915. p21.Material = "Neon"
  916. p21.FormFactor = Enum.FormFactor.Custom
  917. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  918. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  919. p21.CanCollide = false
  920. p21.Locked = true
  921. p21.Elasticity = 0
  922. p21.BottomSurface = Enum.SurfaceType.Smooth
  923. p21.TopSurface = Enum.SurfaceType.Smooth
  924. b21 = Instance.new("SpecialMesh", p21)
  925. b21.MeshType = Enum.MeshType.Wedge
  926. b21.Name = "Mesh"
  927. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  928. w1 = Instance.new("Weld", p1)
  929. w1.Name = "Part_Weld"
  930. w1.Part0 = p1
  931. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  932. w1.Part1 = p2
  933. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  934. w2 = Instance.new("Weld", p2)
  935. w2.Name = "Part_Weld"
  936. w2.Part0 = p2
  937. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  938. w2.Part1 = p3
  939. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  940. w3 = Instance.new("Weld", p3)
  941. w3.Name = "Part_Weld"
  942. w3.Part0 = p3
  943. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  944. w3.Part1 = p4
  945. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  946. w4 = Instance.new("Weld", p4)
  947. w4.Name = "Part_Weld"
  948. w4.Part0 = p4
  949. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  950. w4.Part1 = p5
  951. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  952. w5 = Instance.new("Weld", p5)
  953. w5.Name = "Part_Weld"
  954. w5.Part0 = p5
  955. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  956. w5.Part1 = p6
  957. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  958. w6 = Instance.new("Weld", p6)
  959. w6.Name = "Part_Weld"
  960. w6.Part0 = p6
  961. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  962. w6.Part1 = p7
  963. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  964. w7 = Instance.new("Weld", p7)
  965. w7.Name = "Part_Weld"
  966. w7.Part0 = p7
  967. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  968. w7.Part1 = p8
  969. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  970. w8 = Instance.new("Weld", p8)
  971. w8.Name = "Part_Weld"
  972. w8.Part0 = p8
  973. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  974. w8.Part1 = p9
  975. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  976. w9 = Instance.new("Weld", p9)
  977. w9.Name = "Part_Weld"
  978. w9.Part0 = p9
  979. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  980. w9.Part1 = p10
  981. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  982. w10 = Instance.new("Weld", p10)
  983. w10.Name = "Part_Weld"
  984. w10.Part0 = p10
  985. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  986. w10.Part1 = p11
  987. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  988. w11 = Instance.new("Weld", p11)
  989. w11.Name = "Part_Weld"
  990. w11.Part0 = p11
  991. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  992. w11.Part1 = p12
  993. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  994. w12 = Instance.new("Weld", p12)
  995. w12.Name = "Part_Weld"
  996. w12.Part0 = p12
  997. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  998. w12.Part1 = p13
  999. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  1000. w13 = Instance.new("Weld", p13)
  1001. w13.Name = "Part_Weld"
  1002. w13.Part0 = p13
  1003. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  1004. w13.Part1 = p14
  1005. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1006. w14 = Instance.new("Weld", p14)
  1007. w14.Name = "Part_Weld"
  1008. w14.Part0 = p14
  1009. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1010. w14.Part1 = p15
  1011. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1012. w15 = Instance.new("Weld", p15)
  1013. w15.Name = "Part_Weld"
  1014. w15.Part0 = p15
  1015. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1016. w15.Part1 = p16
  1017. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1018. w16 = Instance.new("Weld", p16)
  1019. w16.Name = "Part_Weld"
  1020. w16.Part0 = p16
  1021. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1022. w16.Part1 = p17
  1023. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1024. w17 = Instance.new("Weld", p17)
  1025. w17.Name = "Wedge_Weld"
  1026. w17.Part0 = p17
  1027. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1028. w17.Part1 = p18
  1029. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1030. w18 = Instance.new("Weld", p18)
  1031. w18.Name = "Wedge_Weld"
  1032. w18.Part0 = p18
  1033. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1034. w18.Part1 = p19
  1035. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1036. w19 = Instance.new("Weld", p19)
  1037. w19.Name = "Part_Weld"
  1038. w19.Part0 = p19
  1039. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1040. w19.Part1 = p20
  1041. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1042. w20 = Instance.new("Weld", p20)
  1043. w20.Name = "Part_Weld"
  1044. w20.Part0 = p20
  1045. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1046. w20.Part1 = p21
  1047. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  1048. m.Parent = char
  1049. m:MakeJoints()
  1050. ----------------------------------------------------
  1051. local cor2 = Instance.new("Part", char.JackoAxe2)
  1052. cor2.Name = "Thingy"
  1053. cor2.Locked = true
  1054. cor2.BottomSurface = 0
  1055. cor2.CanCollide = false
  1056. cor2.Size = Vector3.new(1, 13, 1)
  1057. cor2.Transparency = 1
  1058. cor2.TopSurface = 0
  1059. corw2 = Instance.new("Weld", cor2)
  1060. corw2.Part0 = larm
  1061. corw2.Part1 = cor2
  1062. corw2.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1063. corw2.C1 = CFrame.new(0, 0, 0)
  1064. weld1 = Instance.new("Weld", char.JackoAxe2)
  1065. weld1.Part0 = cor2
  1066. weld1.Part1 = p6
  1067. weld1.C0 = CFrame.new(0, 0, 0)
  1068. ----------------------------------------------------
  1069. hitb = Instance.new("Part", char.JackoAxe2)
  1070. hitb.Name = "Thingy2"
  1071. hitb.Locked = true
  1072. hitb.BottomSurface = 0
  1073. hitb.CanCollide = false
  1074. hitb.Size = Vector3.new(0, 8, 6)
  1075. hitb.Transparency = 1
  1076. hitb.TopSurface = 0
  1077. weld2 = Instance.new("Weld", char.JackoAxe2)
  1078. weld2.Part0 = hitb
  1079. weld2.Part1 = p12
  1080. weld2.C0 = CFrame.new(0, .6, 1)
  1081.  
  1082.  
  1083. larm1 = Instance.new("Part",char)
  1084. larm1.Transparency = 0.5
  1085. larm1.BrickColor = BrickColor.new("Lime green")
  1086. larm1.Size = Vector3.new(2.1,4.1,2.1)
  1087. larm1.Position = Vector3.new(999,999,999)
  1088. larm1.Material = "SmoothPlastic"
  1089. larmhold = Instance.new("Weld",char)
  1090. larmhold.Part0 = larm
  1091. larmhold.Part1 = larm1
  1092. larmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1093. rarm1 = Instance.new("Part",char)
  1094. rarm1.Transparency = 0.5
  1095. rarm1.BrickColor = BrickColor.new("Lime green")
  1096. rarm1.Size = Vector3.new(2.1,4.1,2.1)
  1097. rarm1.Position = Vector3.new(999,999,999)
  1098. rarm1.Material = "SmoothPlastic"
  1099. rarmhold = Instance.new("Weld",char)
  1100. rarmhold.Part0 = rarm
  1101. rarmhold.Part1 = rarm1
  1102. rarmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1103. torso1 = Instance.new("Part",char)
  1104. torso1.Transparency = 0.5
  1105. torso1.BrickColor = BrickColor.new("Lime green")
  1106. torso1.Size = Vector3.new(4.1,4.1,2.1)
  1107. torso1.Position = Vector3.new(999,999,999)
  1108. torso1.Material = "SmoothPlastic"
  1109. torsohold = Instance.new("Weld",char)
  1110. torsohold.Part0 = torso
  1111. torsohold.Part1 = torso1
  1112. torsohold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1113. lleg1 = Instance.new("Part",char)
  1114. lleg1.Transparency = 0.5
  1115. lleg1.BrickColor = BrickColor.new("Lime green")
  1116. lleg1.Size = Vector3.new(2.1,4.1,2.1)
  1117. lleg1.Position = Vector3.new(999,999,999)
  1118. lleg1.Material = "SmoothPlastic"
  1119. lleghold = Instance.new("Weld",char)
  1120. lleghold.Part0 = lleg
  1121. lleghold.Part1 = lleg1
  1122. lleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1123. rleg1 = Instance.new("Part",char)
  1124. rleg1.Transparency = 0.5
  1125. rleg1.BrickColor = BrickColor.new("Lime green")
  1126. rleg1.Size = Vector3.new(2.1,4.1,2.1)
  1127. rleg1.Position = Vector3.new(999,999,999)
  1128. rleg1.Material = "SmoothPlastic"
  1129. rleghold = Instance.new("Weld",char)
  1130. rleghold.Part0 = rleg
  1131. rleghold.Part1 = rleg1
  1132. rleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1133. rhed1 = Instance.new("Part",char)
  1134. rhed1.Transparency = 0.5
  1135. rhed1.BrickColor = BrickColor.new("Lime green")
  1136. rhed1.Size = Vector3.new(4.3,2.6,2.6)
  1137. rhed1.Position = Vector3.new(999,999,999)
  1138. rhed1.Material = "SmoothPlastic"
  1139. rhedhold = Instance.new("Weld",char)
  1140. rhedhold.Part0 = hed
  1141. rhedhold.Part1 = rhed1
  1142. rhedhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1143. rhedmesh1 = Instance.new("SpecialMesh",rhed1)
  1144. rhedmesh1.MeshType = "Head"
  1145. rhedmesh1.Scale = Vector3.new(1,1,1)
  1146.  
  1147.  
  1148.  
  1149.  
  1150. function BurningEff(part)
  1151. local eff1 = Instance.new("ParticleEmitter",part)
  1152. eff1.Size = NumberSequence.new(.1)
  1153. eff1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  1154. eff1.LightEmission = 1
  1155. eff1.Lifetime = NumberRange.new(1)
  1156. eff1.Speed = NumberRange.new(0)
  1157. eff1.Rate = 100
  1158. eff1.Texture = "rbxassetid://284205403"
  1159. eff1.Acceleration = Vector3.new(0,10,0)
  1160. eff1.Color = ColorSequence.new(Color3.new(0,255,0))
  1161. local eff2 = Instance.new("ParticleEmitter",part)
  1162. eff2.Size = NumberSequence.new(.1)
  1163. eff2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  1164. eff2.LightEmission = 1
  1165. eff2.Lifetime = NumberRange.new(1)
  1166. eff2.Speed = NumberRange.new(0)
  1167. eff2.Rate = 100
  1168. eff2.Texture = "rbxassetid://347504259"
  1169. eff2.Acceleration = Vector3.new(0,10,0)
  1170. eff2.Color = ColorSequence.new(Color3.new(0,255,0))
  1171. local eff3 = Instance.new("ParticleEmitter",part)
  1172. eff3.Size = NumberSequence.new(1)
  1173. eff3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(1,1)})
  1174. eff3.LightEmission = 1
  1175. eff3.Lifetime = NumberRange.new(1)
  1176. eff3.Speed = NumberRange.new(0)
  1177. eff3.Rate = 100
  1178. eff3.Texture = "rbxassetid://284205403"
  1179. eff3.Acceleration = Vector3.new(0,10,0)
  1180. eff3.Color = ColorSequence.new(Color3.new(0,255,0))
  1181. end
  1182.  
  1183. Face = 'rbxassetid://513836869'
  1184. local face=hed:FindFirstChild'face'
  1185. face.Texture = Face
  1186.  
  1187. face=Instance.new("Decal",hed)
  1188. face.Face="Front"
  1189. face.Texture="rbxassetid://513836869"
  1190.  
  1191. BurningEff(hed)
  1192. BurningEff(rarm)
  1193. BurningEff(larm)
  1194. BurningEff(torso)
  1195.  
  1196. LightOnBody = Instance.new("PointLight", hed)
  1197. LightOnBody.Brightness = 0.8
  1198. LightOnBody.Range = 20
  1199. LightOnBody.Color = Color3.new(0, 255, 0)
  1200.  
  1201.  
  1202. CV="Pastel blue"
  1203.  
  1204. local txt = Instance.new("BillboardGui", char)
  1205. txt.Adornee = hed
  1206. txt.Name = "_status"
  1207. txt.Size = UDim2.new(2, 0, 1.2, 0)
  1208. txt.StudsOffset = Vector3.new(-9, 8, 0)
  1209. local text = Instance.new("TextLabel", txt)
  1210. text.Size = UDim2.new(10, 0, 7, 0)
  1211. text.FontSize = "Size24"
  1212. text.TextScaled = true
  1213. text.TextTransparency = 0
  1214. text.BackgroundTransparency = 1
  1215. text.TextTransparency = 0
  1216. text.TextStrokeTransparency = 0
  1217. text.Font = "Antique"
  1218. text.TextStrokeColor3 = Color3.new(0,255,0)
  1219.  
  1220. v=Instance.new("Part")
  1221. v.Name = "ColorBrick"
  1222. v.Parent=p.Character
  1223. v.FormFactor="Symmetric"
  1224. v.Anchored=true
  1225. v.CanCollide=false
  1226. v.BottomSurface="Smooth"
  1227. v.TopSurface="Smooth"
  1228. v.Size=Vector3.new(10,5,3)
  1229. v.Transparency=1
  1230. v.CFrame=char.Torso.CFrame
  1231. v.BrickColor=BrickColor.new(CV)
  1232. v.Transparency=1
  1233. text.TextColor3 = Color3.new(0,0,0)
  1234. v.Shape="Block"
  1235. text.Text = "Critical Mass"
  1236.  
  1237.  
  1238.  
  1239.  
  1240. if GroundShake == true then
  1241. for i,v in pairs(workspace:GetChildren()) do
  1242. if v:IsA("Part") then
  1243. if v.Size.x > 150 then
  1244. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-1,1)),rad(math.random(-1,1)),rad(math.random(-1,1)))
  1245. end
  1246. end
  1247. end
  1248.  
  1249.  
  1250.  
  1251.  
  1252. end
  1253. if GroundShake2 == true then
  1254.  
  1255. for i,v in pairs(workspace:GetChildren()) do
  1256. if v:IsA("Part") then
  1257. if v.Size.x > 150 then
  1258. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-2,2)),rad(math.random(-2,2)),rad(math.random(-2,2)))
  1259. end
  1260. end
  1261. end
  1262.  
  1263. end
  1264.  
  1265.  
  1266.  
  1267. local num = 0
  1268.  
  1269.  
  1270.  
  1271. GroundWave2 = function()
  1272. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1273. Colors = {"White", "White"}
  1274. local wave3 = Instance.new("Part", char)
  1275. wave3.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1276. wave3.Anchored = true
  1277. wave3.Name = "Wave"
  1278. wave3.CanCollide = false
  1279. wave3.Locked = true
  1280. wave3.Size = Vector3.new(1, 1, 1)
  1281. wave3.TopSurface = "Smooth"
  1282. wave3.BottomSurface = "Smooth"
  1283. wave3.Transparency = 0.35
  1284. wave3.CFrame = HandCF
  1285. wm1 = Instance.new("SpecialMesh", wave3)
  1286. wm1.MeshId = "rbxassetid://3270017"
  1287. coroutine.wrap(function()
  1288. for i = 1, 30, 1 do
  1289. wm1.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1290. wave3.Size = wm1.Scale
  1291. wave3.CFrame = HandCF
  1292. wave3.Transparency = i/30
  1293. wait()
  1294. end
  1295. wait()
  1296. wave3:Destroy()
  1297. end)()
  1298. end
  1299. GroundWave3 = function()
  1300. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1301. Colors = {"White", "White"}
  1302. local wave2 = Instance.new("Part", char)
  1303. wave2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1304. wave2.Anchored = true
  1305. wave2.Name = "Wave"
  1306. wave2.CanCollide = false
  1307. wave2.Locked = true
  1308. wave2.Size = Vector3.new(1, 1, 1)
  1309. wave2.TopSurface = "Smooth"
  1310. wave2.BottomSurface = "Smooth"
  1311. wave2.Transparency = 0.35
  1312. wave2.CFrame = HandCF
  1313. wm2 = Instance.new("SpecialMesh", wave2)
  1314. wm2.MeshId = "rbxassetid://3270017"
  1315. coroutine.wrap(function()
  1316. for i = 1, 30, 1 do
  1317. wm2.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1318. wave2.Size = wm2.Scale
  1319. wave2.CFrame = HandCF
  1320. wave2.Transparency = i/30
  1321. wait()
  1322. end
  1323. wait()
  1324. wave2:Destroy()
  1325. end)()
  1326. end
  1327. GroundWave4 = function()
  1328. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1329. Colors = {"White", "White"}
  1330. local wave1 = Instance.new("Part", char)
  1331. wave1.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1332. wave1.Anchored = true
  1333. wave1.Name = "Wave"
  1334. wave1.CanCollide = false
  1335. wave1.Locked = true
  1336. wave1.Size = Vector3.new(1, 1, 1)
  1337. wave1.TopSurface = "Smooth"
  1338. wave1.BottomSurface = "Smooth"
  1339. wave1.Transparency = 0.35
  1340. wave1.CFrame = HandCF
  1341. wm3 = Instance.new("SpecialMesh", wave1)
  1342. wm3.MeshId = "rbxassetid://3270017"
  1343. coroutine.wrap(function()
  1344. for i = 1, 30, 1 do
  1345. wm3.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1346. wave1.Size = wm3.Scale
  1347. wave1.CFrame = HandCF
  1348. wave1.Transparency = i/30
  1349. wait()
  1350. end
  1351. wait()
  1352. wave1:Destroy()
  1353. end)()
  1354. end
  1355. --------------------------------------------------------------------------
  1356. --transform
  1357. GroundWave5 = function()
  1358. local HandCF = root.CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1359.  
  1360. Colors = {"Lime green", "Lime green"}
  1361.  
  1362.  
  1363. local wave11 = Instance.new("Part", char)
  1364. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1365. wave11.Anchored = true
  1366. wave11.Name = "Wave"
  1367. wave11.CanCollide = false
  1368. wave11.Locked = true
  1369. wave11.Size = Vector3.new(1, 1, 1)
  1370. wave11.TopSurface = "Smooth"
  1371. wave11.BottomSurface = "Smooth"
  1372. wave11.Transparency = 0.35
  1373. wave11.CFrame = HandCF
  1374. wm31 = Instance.new("SpecialMesh", wave11)
  1375. wm31.MeshId = "rbxassetid://3270017"
  1376. coroutine.wrap(function()
  1377. for i = 1, 30, 1 do
  1378. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1379. wave11.Size = wm31.Scale
  1380. wave11.CFrame = HandCF
  1381. wave11.Transparency = i/30
  1382. wait()
  1383. end
  1384. wait()
  1385. wave11:Destroy()
  1386. end)()
  1387. end
  1388. GroundWave6 = function()
  1389. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1390.  
  1391. Colors = {"Lime green", "Lime green"}
  1392.  
  1393. local wave111 = Instance.new("Part", char)
  1394. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1395. wave111.Anchored = true
  1396. wave111.Name = "Wave"
  1397. wave111.CanCollide = false
  1398. wave111.Locked = true
  1399. wave111.Size = Vector3.new(1, 1, 1)
  1400. wave111.TopSurface = "Smooth"
  1401. wave111.BottomSurface = "Smooth"
  1402. wave111.Transparency = 0.35
  1403. wave111.CFrame = HandCF
  1404. wm311 = Instance.new("SpecialMesh", wave111)
  1405. wm311.MeshId = "rbxassetid://3270017"
  1406. coroutine.wrap(function()
  1407. for i = 1, 30, 1 do
  1408. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1409. wave111.Size = wm311.Scale
  1410. wave111.CFrame = HandCF
  1411. wave111.Transparency = i/30
  1412. wait()
  1413. end
  1414. wait()
  1415. wave111:Destroy()
  1416. end)()
  1417. end
  1418. GroundWave7 = function()
  1419. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1420.  
  1421. Colors = {"Lime green", "Lime green"}
  1422. local wave1111 = Instance.new("Part", char)
  1423. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1424. wave1111.Anchored = true
  1425. wave1111.Name = "Wave"
  1426. wave1111.CanCollide = false
  1427. wave1111.Locked = true
  1428. wave1111.Size = Vector3.new(1, 1, 1)
  1429. wave1111.TopSurface = "Smooth"
  1430. wave1111.BottomSurface = "Smooth"
  1431. wave1111.Transparency = 0.35
  1432. wave1111.CFrame = HandCF
  1433. wm3111 = Instance.new("SpecialMesh", wave1111)
  1434. wm3111.MeshId = "rbxassetid://3270017"
  1435. coroutine.wrap(function()
  1436. for i = 1, 30, 1 do
  1437. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1438. wave1111.Size = wm3111.Scale
  1439. wave1111.CFrame = HandCF
  1440. wave1111.Transparency = i/30
  1441. wait()
  1442. end
  1443. wait()
  1444. wave1111:Destroy()
  1445. end)()
  1446. end
  1447. GroundWave8 = function()
  1448. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1449.  
  1450. Colors = {"Lime green", "Lime green"}
  1451. local wave11111 = Instance.new("Part", char)
  1452. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1453. wave11111.Anchored = true
  1454. wave11111.Name = "Wave"
  1455. wave11111.CanCollide = false
  1456. wave11111.Locked = true
  1457. wave11111.Size = Vector3.new(1, 1, 1)
  1458. wave11111.TopSurface = "Smooth"
  1459. wave11111.BottomSurface = "Smooth"
  1460. wave11111.Transparency = 0.35
  1461. wave11111.CFrame = HandCF
  1462. wm31111 = Instance.new("SpecialMesh", wave11111)
  1463. wm31111.MeshId = "rbxassetid://3270017"
  1464. coroutine.wrap(function()
  1465. for i = 1, 30, 1 do
  1466. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1467. wave11111.Size = wm31111.Scale
  1468. wave11111.CFrame = HandCF
  1469. wave11111.Transparency = i/30
  1470. wait()
  1471. end
  1472. wait()
  1473. wave11111:Destroy()
  1474. end)()
  1475. end
  1476. GroundWave9 = function()
  1477. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1478.  
  1479. Colors = {"Lime green", "Lime green"}
  1480. local wave111111 = Instance.new("Part", char)
  1481. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1482. wave111111.Anchored = true
  1483. wave111111.Name = "Wave"
  1484. wave111111.CanCollide = false
  1485. wave111111.Locked = true
  1486. wave111111.Size = Vector3.new(1, 1, 1)
  1487. wave111111.TopSurface = "Smooth"
  1488. wave111111.BottomSurface = "Smooth"
  1489. wave111111.Transparency = 0.35
  1490. wave111111.CFrame = HandCF
  1491. wm311111 = Instance.new("SpecialMesh", wave111111)
  1492. wm311111.MeshId = "rbxassetid://3270017"
  1493. coroutine.wrap(function()
  1494. for i = 1, 30, 1 do
  1495. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1496. wave111111.Size = wm311111.Scale
  1497. wave111111.CFrame = HandCF
  1498. wave111111.Transparency = i/30
  1499. wait()
  1500. end
  1501. wait()
  1502. wave111111:Destroy()
  1503. end)()
  1504. end
  1505. GroundWave10 = function()
  1506. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1507.  
  1508. Colors = {"Lime green", "Lime green"}
  1509. local wave1111111 = Instance.new("Part", char)
  1510. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1511. wave1111111.Anchored = true
  1512. wave1111111.Name = "Wave"
  1513. wave1111111.CanCollide = false
  1514. wave1111111.Locked = true
  1515. wave1111111.Size = Vector3.new(1, 1, 1)
  1516. wave1111111.TopSurface = "Smooth"
  1517. wave1111111.BottomSurface = "Smooth"
  1518. wave1111111.Transparency = 0.35
  1519. wave1111111.CFrame = HandCF
  1520. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  1521. wm3111111.MeshId = "rbxassetid://3270017"
  1522. coroutine.wrap(function()
  1523. for i = 1, 30, 1 do
  1524. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1525. wave1111111.Size = wm3111111.Scale
  1526. wave1111111.CFrame = HandCF
  1527. wave1111111.Transparency = i/30
  1528. wait()
  1529. end
  1530. wait()
  1531. wave1111111:Destroy()
  1532. end)()
  1533. end
  1534.  
  1535.  
  1536. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1537.  
  1538. function nooutline(part)
  1539. part.TopSurface, part.BottomSurface, part.RightSurface, part.LeftSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  1540. end
  1541.  
  1542. function debris(cfremz, thepart, amt)
  1543. for j = 1, amt do
  1544. do
  1545. local pr = Instance.new("Part")
  1546. nooutline(pr)
  1547. pr.Name = "debrisobeb"
  1548. pr.Anchored = true
  1549. pr.BrickColor = thepart.BrickColor
  1550. pr.CanCollide = true
  1551. pr.Material = thepart.Material
  1552. pr.Transparency = thepart.Transparency
  1553. pr.Size = Vector3.new(math.random(16, 24), math.random(12, 16), math.random(16, 24))
  1554. pr.CFrame = cfremz * CFrame.Angles(0, math.rad(amt * j), 0) * CFrame.new(0, -5, math.random(18, 22)) * CFrame.Angles(math.rad(math.random(-30, -15)), math.rad(math.random(0, 1)), math.rad(math.random(0, 1)))
  1555. pr.Parent = workspace
  1556. game.Debris:AddItem(pr, 25)
  1557. delay(15, function()
  1558. if pr then
  1559. pr.CanCollide = false
  1560. pr.Anchored = false
  1561. end
  1562. end)
  1563. end
  1564. end
  1565. for c = 1, amt do
  1566. do
  1567. local pr2 = Instance.new("Part")
  1568. nooutline(pr2)
  1569. pr2.Name = "moredebr"
  1570. pr2.Anchored = false
  1571. pr2.BrickColor = thepart.BrickColor
  1572. pr2.CanCollide = false
  1573. pr2.Material = thepart.Material
  1574. pr2.Transparency = thepart.Transparency
  1575. pr2.Size = Vector3.new(math.random(8, 18), math.random(6, 18), math.random(8, 18))
  1576. pr2.CFrame = cfremz * CFrame.Angles(0, math.rad(30 * c), 0) * CFrame.new(0, -5, math.random(18, 22)) * CFrame.Angles(math.rad(math.random(-30, -15)), math.rad(math.random(0, 1)), math.rad(math.random(0, 1)))
  1577. pr2.Parent = workspace
  1578. pr2.Velocity = Vector3.new(math.random(-75, 75), math.random(120, 240), math.random(-75, 75))
  1579. pr2.RotVelocity = Vector3.new(math.random(-35, 35), math.random(-35, 35), math.random(-35, 35))
  1580. game.Debris:AddItem(pr2, 45)
  1581. delay(2, function()
  1582. pr2.CanCollide = true
  1583. wait(10)
  1584. if pr2 then
  1585. pr2.CanCollide = false
  1586. end
  1587. end)
  1588. end
  1589. end
  1590. end
  1591.  
  1592.  
  1593. function weld5(part0, part1, c0, c1)
  1594. weeld=Instance.new("Weld", part0)
  1595. weeld.Part0=part0
  1596. weeld.Part1=part1
  1597. weeld.C0=c0
  1598. weeld.C1=c1
  1599. return weeld
  1600. end
  1601.  
  1602.  
  1603. par,loc=workspace:FindPartOnRay(Ray.new(root.Position,(root.Position-(root.Position-Vector3.new(0,2,0))).unit*-500),root)
  1604.  
  1605.  
  1606. local acos = math.acos
  1607. local sqrt = math.sqrt
  1608. local Vec3 = Vector3.new
  1609. local fromAxisAngle = CFrame.fromAxisAngle
  1610.  
  1611. local function toAxisAngle(CFr)
  1612. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1613. local Angle = math.acos((R00+R11+R22-1)/2)
  1614. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1615. A = A == 0 and 0.00001 or A
  1616. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1617. B = B == 0 and 0.00001 or B
  1618. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1619. C = C == 0 and 0.00001 or C
  1620. local x = (R21-R12)/sqrt(A)
  1621. local y = (R02-R20)/sqrt(B)
  1622. local z = (R10-R01)/sqrt(C)
  1623. return Vec3(x,y,z),Angle
  1624. end
  1625.  
  1626. function ApplyTrig(Num,Func)
  1627. local Min,Max = Func(0),Func(1)
  1628. local i = Func(Num)
  1629. return (i-Min)/(Max-Min)
  1630. end
  1631.  
  1632. function LerpCFrame(CFrame1,CFrame2,Num)
  1633. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1634. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1635. end
  1636.  
  1637. function Crater(Torso,Radius)
  1638. Spawn(function()
  1639. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1640. local Ignore = {}
  1641. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1642. if v.Character ~= nil then
  1643. Ignore[#Ignore+1] = v.Character
  1644. end
  1645. end
  1646. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1647. if Hit == nil then return end
  1648. local Parts = {}
  1649. for i = 1,360,10 do
  1650. local P = Instance.new("Part",Torso.Parent)
  1651. P.Anchored = true
  1652. P.FormFactor = "Custom"
  1653. P.BrickColor = Hit.BrickColor
  1654. P.Material = Hit.Material
  1655. P.TopSurface = "Smooth"
  1656. P.BottomSurface = "Smooth"
  1657. P.CanCollide = false
  1658. P.Size = Vector3.new(10,20,20)*(math.random(80,100)/100)
  1659. 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)))
  1660. 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}
  1661. if math.random(0,5) == 0 then -- rubble
  1662. local P = Instance.new("Part",Torso.Parent)
  1663. P.Anchored = true
  1664. P.FormFactor = "Custom"
  1665. P.BrickColor = Hit.BrickColor
  1666. P.Material = Hit.Material
  1667. P.TopSurface = "Smooth"
  1668. P.CanCollide = false
  1669. P.BottomSurface = "Smooth"
  1670. P.Size = Vector3.new(4,4,4)*(math.random(80,100)/100)
  1671. 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)))
  1672. 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}
  1673. end
  1674. end
  1675. for i = 0,1,0.05 do
  1676. for i2,v in pairs(Parts) do
  1677. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1678. end
  1679. wait(0.02)
  1680. end
  1681. for i,v in pairs(Parts) do
  1682. if v[1].Size.X > 2.1 then
  1683. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1684. end
  1685. v[1].Anchored = false
  1686. end
  1687. for i = 0,1,0.05 do
  1688. for i2,v in pairs(Parts) do
  1689. v[1].Transparency = i
  1690. if i == 1 then
  1691. v[1]:Destroy()
  1692. elseif i >= 0.25 then
  1693. v[1].CanCollide = false
  1694. end
  1695. end
  1696. wait(0.02)
  1697. end
  1698. Parts = nil
  1699. end)
  1700. end
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706. function FindNearestTorso(Position,Distance,SinglePlayer)
  1707. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1708. local List = {}
  1709. for i,v in pairs(workspace:GetChildren())do
  1710. if v:IsA("Model")then
  1711. if v:findFirstChild("Torso")then
  1712. if v ~= char then
  1713. if(v.Torso.Position -Position).magnitude <= Distance then
  1714. table.insert(List,v)
  1715. end
  1716. end
  1717. end
  1718. end
  1719. end
  1720. return List
  1721. end
  1722.  
  1723.  
  1724.  
  1725. function FindNearestHead(Position,Distance,SinglePlayer)
  1726. if SinglePlayer then return(SinglePlayer.Head.CFrame.p -Position).magnitude < Distance end
  1727. local List = {}
  1728. for i,v in pairs(workspace:GetChildren())do
  1729. if v:IsA("Model")then
  1730. if v:findFirstChild("Head")then
  1731. if v ~= char then
  1732. if(v.Head.Position -Position).magnitude <= Distance then
  1733. table.insert(List,v)
  1734. end
  1735. end
  1736. end
  1737. end
  1738. end
  1739. return List
  1740. end
  1741.  
  1742.  
  1743.  
  1744. function FindNearestRightArm(Position,Distance,SinglePlayer)
  1745. if SinglePlayer then return(SinglePlayer.RightArm.CFrame.p -Position).magnitude < Distance end
  1746. local List = {}
  1747. for i,v in pairs(workspace:GetChildren())do
  1748. if v:IsA("Model")then
  1749. if v:findFirstChild("Right Arm")then
  1750. if v ~= char then
  1751. if(v.RightArm.Position -Position).magnitude <= Distance then
  1752. table.insert(List,v)
  1753. end
  1754. end
  1755. end
  1756. end
  1757. end
  1758. return List
  1759. end
  1760.  
  1761.  
  1762. function FindNearestLeftArm(Position,Distance,SinglePlayer)
  1763. if SinglePlayer then return(SinglePlayer.LeftArm.CFrame.p -Position).magnitude < Distance end
  1764. local List = {}
  1765. for i,v in pairs(workspace:GetChildren())do
  1766. if v:IsA("Model")then
  1767. if v:findFirstChild("Left Arm")then
  1768. if v ~= char then
  1769. if(v.LeftArm.Position -Position).magnitude <= Distance then
  1770. table.insert(List,v)
  1771. end
  1772. end
  1773. end
  1774. end
  1775. end
  1776. return List
  1777. end
  1778.  
  1779.  
  1780.  
  1781. function FindNearestRightLeg(Position,Distance,SinglePlayer)
  1782. if SinglePlayer then return(SinglePlayer.RightLeg.CFrame.p -Position).magnitude < Distance end
  1783. local List = {}
  1784. for i,v in pairs(workspace:GetChildren())do
  1785. if v:IsA("Model")then
  1786. if v:findFirstChild("Right Leg")then
  1787. if v ~= char then
  1788. if(v.RightLeg.Position -Position).magnitude <= Distance then
  1789. table.insert(List,v)
  1790. end
  1791. end
  1792. end
  1793. end
  1794. end
  1795. return List
  1796. end
  1797.  
  1798.  
  1799. function FindNearestLeftLeg(Position,Distance,SinglePlayer)
  1800. if SinglePlayer then return(SinglePlayer.LeftLeg.CFrame.p -Position).magnitude < Distance end
  1801. local List = {}
  1802. for i,v in pairs(workspace:GetChildren())do
  1803. if v:IsA("Model")then
  1804. if v:findFirstChild("Left Leg")then
  1805. if v ~= char then
  1806. if(v.LeftLeg.Position -Position).magnitude <= Distance then
  1807. table.insert(List,v)
  1808. end
  1809. end
  1810. end
  1811. end
  1812. end
  1813. return List
  1814. end
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821. mouse.KeyDown:connect(function(key)--------------------------------------------Roar
  1822. if key == "q" then
  1823. hum.WalkSpeed = 0
  1824. if Debounces.CanAttack == true then
  1825. Debounces.CanAttack = false
  1826. Debounces.NoIdl = true
  1827. Debounces.on = true
  1828. for i = 1, 30 do
  1829. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  1830. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  1831. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  1832. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  1833. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1834. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1835. if Debounces.on == false then break end
  1836. rs:wait(6)
  1837. end
  1838. v = Instance.new("Sound")
  1839. v.SoundId = "rbxassetid://800952230"
  1840. v.Parent = char
  1841. v.Looped = false
  1842. v.Pitch = 1
  1843. v.Volume = 500
  1844. wait(.01)
  1845. v:Play()
  1846.  
  1847.  
  1848. local Shockwave = function()
  1849. local rng1 = Instance.new("Part", char)
  1850. rng1.Anchored = true
  1851. rng1.BrickColor = BrickColor.new("Lime green")
  1852. rng1.CanCollide = false
  1853. rng1.FormFactor = 3
  1854. rng1.Name = "Ring"
  1855. rng1.Size = Vector3.new(1, 1, 1)
  1856. rng1.Transparency = 0.35
  1857. rng1.TopSurface = 0
  1858. rng1.BottomSurface = 0
  1859. local rngm1 = Instance.new("SpecialMesh", rng1)
  1860. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1861. rngm1.Scale = Vector3.new(10, 10, 1)
  1862. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  1863. local Wave = Instance.new("Part", game.Workspace--[[?]])
  1864. Wave.Name = "Shockwave"
  1865. Wave.BrickColor = BrickColor.new("Lime green")
  1866. Wave.Size = Vector3.new(1, 1, 1)
  1867. Wave.Shape = "Ball"
  1868. Wave.CanCollide = false
  1869. Wave.Anchored = true
  1870. Wave.TopSurface = 0
  1871. Wave.BottomSurface = 0
  1872. Wave.Touched:connect(function(hit)
  1873. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  1874. local Occlude = true
  1875. local NotOccludes = {
  1876. char.Name;
  1877. "Wings";
  1878. "Scythe";
  1879. "Thingy";
  1880. "Thingy2"; -- put all of the names in a table pls
  1881. }
  1882. for i,v in pairs(NotOccludes) do
  1883. if hit.Parent.Name == v then
  1884. Occlude = false
  1885. end
  1886. end
  1887. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  1888. if Occlude then
  1889. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  1890. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  1891. end
  1892. end
  1893. end)
  1894.  
  1895. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  1896.  
  1897. coroutine.wrap(function()
  1898. for i = 1, 20, 0.2 do
  1899. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  1900. rng1.Transparency = i/20
  1901. rng1.CFrame = Wave.CFrame
  1902. wait()
  1903. end
  1904. wait()
  1905. rng1:Destroy()
  1906. end)()
  1907.  
  1908. Delay(0, function()
  1909.  
  1910.  
  1911. for i = 1, 50, 1 do
  1912. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  1913. Wave.CFrame = char.Torso.CFrame
  1914. local t = i / 50
  1915. Wave.Transparency = t
  1916. wait()
  1917. end
  1918.  
  1919. Wave:Destroy()
  1920. end)
  1921. Delay(0, function()
  1922. while wait() do
  1923. if Wave ~= nil then
  1924. Wave.CFrame = char.Torso.CFrame
  1925. else
  1926. break
  1927. end
  1928. end
  1929. end)
  1930. end
  1931.  
  1932.  
  1933. new = Instance.new
  1934.  
  1935. v3 = Vector3.new
  1936.  
  1937.  
  1938. a21e = new("Part",char)
  1939. a21e.Name = "Beam"..num
  1940. a21e.Locked = true
  1941. a21e.Size = v3(1,1,1)
  1942. a21e.CanCollide = false
  1943. a21e.Position = v3(999,999,999)
  1944. a21e.BrickColor = BrickColor.new("Lime green")
  1945. a21e.Material = "Neon"
  1946. a21e.Transparency = 0
  1947. aa21e = new("SpecialMesh",a21e)
  1948. a21e.Anchored = true
  1949. a21e.Position = root.Position
  1950. aa21e.MeshType = "Sphere"
  1951. aa21e.Scale = v3(1,1,1)
  1952.  
  1953.  
  1954. coroutine.resume(coroutine.create(function()
  1955. BurningEff(FindNearestTorso(root.CFrame.p,35))
  1956. BurningEff(FindNearestHead(root.CFrame.p,35))
  1957. BurningEff(FindNearestRightArm(root.CFrame.p,35))
  1958. BurningEff(FindNearestLeftArm(root.CFrame.p,35))
  1959. BurningEff(FindNearestRightLeg(root.CFrame.p,35))
  1960. BurningEff(FindNearestLeftLeg(root.CFrame.p,35))
  1961.  
  1962. end))
  1963.  
  1964. for i,v in pairs(FindNearestTorso(root.CFrame.p,25))do
  1965. if v:FindFirstChild('Humanoid') then
  1966. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1967. v.Humanoid.PlatformStand = true
  1968. v:FindFirstChild("Torso").Velocity = torso.CFrame.lookVector * 200
  1969. BurningEff(v:FindFirstChild('Torso'))
  1970.  
  1971. end
  1972. end
  1973.  
  1974.  
  1975. coroutine.resume(coroutine.create(function()
  1976.  
  1977. for i,v in pairs(workspace:children()) do
  1978. charr = v:FindFirstChild('Character')
  1979. for i = 1, 40 do
  1980. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1981. wait()
  1982. end
  1983.  
  1984. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1985. end
  1986. end))
  1987.  
  1988.  
  1989.  
  1990.  
  1991. coroutine.resume(coroutine.create(function()
  1992. for i = 1, 40 do
  1993. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1994. wait()
  1995. end
  1996. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1997. end))
  1998.  
  1999. coroutine.resume(coroutine.create(function()
  2000. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  2001. if par then
  2002. local cfremz = CFrame.new(loc)
  2003. debris(cfremz, par, 50)
  2004. end
  2005. end))
  2006.  
  2007.  
  2008. Crater(root,155)
  2009. GroundWave5()
  2010. GroundWave6()
  2011. GroundWave7()
  2012. GroundWave8()
  2013. GroundWave9()
  2014. GroundWave10()
  2015.  
  2016. coroutine.resume(coroutine.create(function()
  2017. for i = 1,25 do
  2018. wait()
  2019. aa21e.Scale = aa21e.Scale + v3(5,5,5)
  2020. a21e.Transparency = a21e.Transparency + 0.04
  2021. end
  2022. end))
  2023.  
  2024.  
  2025.  
  2026.  
  2027. for i = 1, 30 do
  2028. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  2029. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  2030. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  2031. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  2032. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2033. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  2034. if Debounces.on == false then break end
  2035. rs:wait()
  2036. end
  2037. wait(4.4)
  2038. Debounces.NoIdl = false
  2039. hum.WalkSpeed = 5
  2040. Debounces.on = false
  2041. wait()
  2042. if Debounces.CanAttack == false then
  2043. Debounces.CanAttack = true
  2044. v:Destroy()
  2045. end
  2046. end
  2047. end
  2048. end)
  2049.  
  2050.  
  2051.  
  2052.  
  2053.  
  2054.  
  2055.  
  2056. ----------------------------------------------------
  2057. function weld5(part0, part1, c0, c1)
  2058. weeld=Instance.new("Weld", part0)
  2059. weeld.Part0=part0
  2060. weeld.Part1=part1
  2061. weeld.C0=c0
  2062. weeld.C1=c1
  2063. return weeld
  2064. end
  2065.  
  2066.  
  2067.  
  2068.  
  2069.  
  2070. Grab = false
  2071. mouse.KeyDown:connect(function(key)-----------------------------------------Grab
  2072. if key == "z" then
  2073. Debounces.on = true
  2074. Debounces.NoIdl = true
  2075. if Grab == false then
  2076. gp = nil
  2077. con1=larm.Touched:connect(function(hit) -- this is grab
  2078. ht = hit.Parent
  2079. hum1=ht:FindFirstChild('Humanoid')
  2080. if hum1 ~= nil then
  2081. hum1.PlatformStand=true
  2082. gp = ht
  2083. Grab = true
  2084. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  2085. asd.Parent = larm
  2086. asd.Name = "asd"
  2087. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  2088. elseif hum1 == nil then
  2089. con1:disconnect()
  2090. wait() return
  2091. end
  2092. end)
  2093.  
  2094.  
  2095. for i = 1, 18 do
  2096. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  2097. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  2098. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2099. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  2100. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  2101. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  2102. if Debounces.on == false then break end
  2103. wait()
  2104. end
  2105. con1:disconnect()
  2106. Debounces.on = false
  2107. Debounces.NoIdl = false
  2108. wait(0.1)
  2109. ht:FindFirstChild("Torso").CanCollide = true
  2110. ht:FindFirstChild("RightArm").CanCollide = true
  2111. ht:FindFirstChild("LeftArm").CanCollide = true
  2112. ht:FindFirstChild("RightLeg").CanCollide = true
  2113. ht:FindFirstChild("LeftLeg").CanCollide = true
  2114. ht:FindFirstChild("Head").CanCollide = true elseif Grab == true then
  2115. Grab = false
  2116. for i = 1, 20 do
  2117. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  2118. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  2119. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2120. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2121. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2122. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2123. if Debounces.on == false then end
  2124. wait()
  2125. end
  2126. if gp ~= nil then
  2127. for i,v in pairs(larm:GetChildren()) do
  2128. if v.Name == "asd" and v:IsA("Weld") then
  2129. v:Remove()
  2130. end
  2131. end
  2132. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  2133. bv.maxForce = Vector3.new(400000, 400000, 400000)
  2134. bv.P = 125000000000000
  2135. bv.velocity = char.Head.CFrame.lookVector * 1000
  2136. for i = 1, 12 do
  2137. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  2138. if Debounces.on == false then end
  2139. wait()
  2140. end
  2141. ht=nil
  2142. Spawn(function()
  2143. wait(0.5)
  2144. bv:Destroy()
  2145. end)
  2146. Debounces.on = false
  2147. Debounces.NoIdl = false
  2148. elseif ht == nil then wait()
  2149. Grab = false
  2150. Debounces.on = false
  2151. Debounces.NoIdl = false
  2152. end
  2153. end
  2154. end
  2155. end)
  2156.  
  2157.  
  2158.  
  2159.  
  2160. mouse.KeyDown:connect(function(key)
  2161. if key == "c" then
  2162. if Debounces.CanAttack == true then
  2163. Debounces.CanAttack = false
  2164. Debounces.NoIdl = true
  2165. Debounces.on = true
  2166.  
  2167.  
  2168.  
  2169.  
  2170. GroundWaves5 = function()
  2171. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  2172.  
  2173. Colors = {"Lime green", "Lime green"}
  2174.  
  2175.  
  2176. local wave11 = Instance.new("Part", char)
  2177. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2178. wave11.Anchored = true
  2179. wave11.Name = "Wave"
  2180. wave11.CanCollide = false
  2181. wave11.Locked = true
  2182. wave11.Size = Vector3.new(1, 1, 1)
  2183. wave11.TopSurface = "Smooth"
  2184. wave11.BottomSurface = "Smooth"
  2185. wave11.Transparency = 0.35
  2186. wave11.CFrame = HandCF
  2187. wm31 = Instance.new("SpecialMesh", wave11)
  2188. wm31.MeshId = "rbxassetid://3270017"
  2189. coroutine.wrap(function()
  2190. for i = 1, 30, 1 do
  2191. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2192. wave11.Size = wm31.Scale
  2193. wave11.CFrame = HandCF
  2194. wave11.Transparency = i/30
  2195. wait()
  2196. end
  2197. wait()
  2198. wave11:Destroy()
  2199. end)()
  2200. end
  2201. GroundWaves6 = function()
  2202. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2203.  
  2204. Colors = {"Lime green", "Lime green"}
  2205.  
  2206. local wave111 = Instance.new("Part", char)
  2207. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2208. wave111.Anchored = true
  2209. wave111.Name = "Wave"
  2210. wave111.CanCollide = false
  2211. wave111.Locked = true
  2212. wave111.Size = Vector3.new(1, 1, 1)
  2213. wave111.TopSurface = "Smooth"
  2214. wave111.BottomSurface = "Smooth"
  2215. wave111.Transparency = 0.35
  2216. wave111.CFrame = HandCF
  2217. wm311 = Instance.new("SpecialMesh", wave111)
  2218. wm311.MeshId = "rbxassetid://3270017"
  2219. coroutine.wrap(function()
  2220. for i = 1, 30, 1 do
  2221. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2222. wave111.Size = wm311.Scale
  2223. wave111.CFrame = HandCF
  2224. wave111.Transparency = i/30
  2225. wait()
  2226. end
  2227. wait()
  2228. wave111:Destroy()
  2229. end)()
  2230. end
  2231. GroundWaves7 = function()
  2232. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2233.  
  2234. Colors = {"Lime green", "Lime green"}
  2235. local wave1111 = Instance.new("Part", char)
  2236. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2237. wave1111.Anchored = true
  2238. wave1111.Name = "Wave"
  2239. wave1111.CanCollide = false
  2240. wave1111.Locked = true
  2241. wave1111.Size = Vector3.new(1, 1, 1)
  2242. wave1111.TopSurface = "Smooth"
  2243. wave1111.BottomSurface = "Smooth"
  2244. wave1111.Transparency = 0.35
  2245. wave1111.CFrame = HandCF
  2246. wm3111 = Instance.new("SpecialMesh", wave1111)
  2247. wm3111.MeshId = "rbxassetid://3270017"
  2248. coroutine.wrap(function()
  2249. for i = 1, 30, 1 do
  2250. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2251. wave1111.Size = wm3111.Scale
  2252. wave1111.CFrame = HandCF
  2253. wave1111.Transparency = i/30
  2254. wait()
  2255. end
  2256. wait()
  2257. wave1111:Destroy()
  2258. end)()
  2259. end
  2260. GroundWaves8 = function()
  2261. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2262.  
  2263. Colors = {"Lime green", "Lime green"}
  2264. local wave11111 = Instance.new("Part", char)
  2265. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2266. wave11111.Anchored = true
  2267. wave11111.Name = "Wave"
  2268. wave11111.CanCollide = false
  2269. wave11111.Locked = true
  2270. wave11111.Size = Vector3.new(1, 1, 1)
  2271. wave11111.TopSurface = "Smooth"
  2272. wave11111.BottomSurface = "Smooth"
  2273. wave11111.Transparency = 0.35
  2274. wave11111.CFrame = HandCF
  2275. wm31111 = Instance.new("SpecialMesh", wave11111)
  2276. wm31111.MeshId = "rbxassetid://3270017"
  2277. coroutine.wrap(function()
  2278. for i = 1, 30, 1 do
  2279. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2280. wave11111.Size = wm31111.Scale
  2281. wave11111.CFrame = HandCF
  2282. wave11111.Transparency = i/30
  2283. wait()
  2284. end
  2285. wait()
  2286. wave11111:Destroy()
  2287. end)()
  2288. end
  2289. GroundWaves9 = function()
  2290. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2291.  
  2292. Colors = {"Lime green", "Lime green"}
  2293. local wave111111 = Instance.new("Part", char)
  2294. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2295. wave111111.Anchored = true
  2296. wave111111.Name = "Wave"
  2297. wave111111.CanCollide = false
  2298. wave111111.Locked = true
  2299. wave111111.Size = Vector3.new(1, 1, 1)
  2300. wave111111.TopSurface = "Smooth"
  2301. wave111111.BottomSurface = "Smooth"
  2302. wave111111.Transparency = 0.35
  2303. wave111111.CFrame = HandCF
  2304. wm311111 = Instance.new("SpecialMesh", wave111111)
  2305. wm311111.MeshId = "rbxassetid://3270017"
  2306. coroutine.wrap(function()
  2307. for i = 1, 30, 1 do
  2308. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2309. wave111111.Size = wm311111.Scale
  2310. wave111111.CFrame = HandCF
  2311. wave111111.Transparency = i/30
  2312. wait()
  2313. end
  2314. wait()
  2315. wave111111:Destroy()
  2316. end)()
  2317. end
  2318. GroundWaves10 = function()
  2319. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2320.  
  2321. Colors = {"Lime green", "Lime green"}
  2322. local wave1111111 = Instance.new("Part", char)
  2323. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2324. wave1111111.Anchored = true
  2325. wave1111111.Name = "Wave"
  2326. wave1111111.CanCollide = false
  2327. wave1111111.Locked = true
  2328. wave1111111.Size = Vector3.new(1, 1, 1)
  2329. wave1111111.TopSurface = "Smooth"
  2330. wave1111111.BottomSurface = "Smooth"
  2331. wave1111111.Transparency = 0.35
  2332. wave1111111.CFrame = HandCF
  2333. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  2334. wm3111111.MeshId = "rbxassetid://3270017"
  2335. coroutine.wrap(function()
  2336. for i = 1, 30, 1 do
  2337. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2338. wave1111111.Size = wm3111111.Scale
  2339. wave1111111.CFrame = HandCF
  2340. wave1111111.Transparency = i/30
  2341. wait()
  2342. end
  2343. wait()
  2344. wave1111111:Destroy()
  2345. end)()
  2346. end
  2347.  
  2348.  
  2349.  
  2350. for i = 1, 40 do
  2351. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2352. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2353. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2354. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2355. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2356. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2357. if Debounces.on == false then break end
  2358. wait()
  2359. end
  2360.  
  2361.  
  2362.  
  2363.  
  2364. coroutine.resume(coroutine.create(function()
  2365. for i=1, 5 do
  2366. p=Instance.new("Part")
  2367. p.FrontSurface=par.TopSurface
  2368. p.Material=par.Material
  2369. p.BottomSurface=0
  2370. p.Anchored=true p.CanCollide=false
  2371. p.BrickColor=par.BrickColor
  2372. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  2373. p.CFrame=CFrame.new(ht.Position-Vector3.new(math.random(-i,i)/1,3,math.random(-i,i)/1),loc+Vector3.new(0,1000-i*20,0))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)
  2374. p.Parent=char
  2375. game:GetService("Debris"):AddItem(p,2+i*.1)
  2376. if math.random(1,5)==5 then
  2377. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=30 f.RiseVelocity=0 f.Opacity=.025 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2378. end
  2379. end
  2380. for i=1, 5 do
  2381. for i=1, 1 do
  2382. p=Instance.new("Part")
  2383. p.TopSurface=par.TopSurface
  2384. p.BottomSurface=par.BottomSurface
  2385. p.Material=par.Material
  2386. p.BottomSurface=0
  2387. p.Anchored=false p.CanCollide=true
  2388. p.BrickColor=par.BrickColor
  2389. p.formFactor="Custom"
  2390. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  2391. p.CFrame=CFrame.new(ht.Position-Vector3.new(math.random(-4,4),-2,math.random(-4,4)))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/20,math.random(-10,10)/5,math.random(-10,10)/20)
  2392. p.Parent=char
  2393. game:GetService("Debris"):AddItem(p,3+i*.1)
  2394. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  2395. p.RotVelocity=p.Velocity
  2396. if math.random(1,5)==5 then
  2397. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=15 f.RiseVelocity=10 f.Opacity=.1 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2398. end
  2399. end
  2400. end
  2401. end))
  2402.  
  2403.  
  2404.  
  2405.  
  2406. coroutine.resume(coroutine.create(function()
  2407. wait(0.2)
  2408. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2409. if v:FindFirstChild('Humanoid') then
  2410. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2411. v.Humanoid.PlatformStand = true
  2412. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2413. end
  2414. end
  2415.  
  2416. GroundWaves5()
  2417. GroundWaves6()
  2418. GroundWaves7()
  2419. GroundWaves8()
  2420. GroundWaves9()
  2421. GroundWaves10()
  2422. end))
  2423. for i = 1, 20 do
  2424. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.6)
  2425. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2426. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2427. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2428. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2429. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2430. if Debounces.on == false then break end
  2431. wait()
  2432. end
  2433.  
  2434.  
  2435.  
  2436.  
  2437. if Debounces.CanAttack == false then
  2438. Debounces.CanAttack = true
  2439. Debounces.on = false
  2440. Debounces.NoIdl = false
  2441.  
  2442. end
  2443. end
  2444. end
  2445. end)
  2446.  
  2447.  
  2448. function newRay(start,face,range,wat)
  2449. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  2450. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  2451. return rey,hit,pos
  2452. end
  2453.  
  2454.  
  2455.  
  2456. fat = Instance.new("BindableEvent",script)
  2457. fat.Name = "Heartbeat"
  2458.  
  2459. script:WaitForChild("Heartbeat")
  2460.  
  2461. frame = 1/30
  2462. tf = 0
  2463. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  2464. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  2465. lastframe = tick()
  2466. script.Heartbeat:Fire() --ayy lmao
  2467.  
  2468. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  2469. tf = tf + s
  2470. if tf >= frame then
  2471. if allowframeloss then
  2472. script.Heartbeat:Fire()
  2473. lastframe=tick()
  2474. else
  2475. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  2476. for i=1, math.floor(tf/frame) do
  2477. script.Heartbeat:Fire()
  2478. end
  2479. lastframe=tick()
  2480. end
  2481. if tossremainder then
  2482. tf = 0
  2483. else
  2484. tf = tf - frame * math.floor(tf/frame)
  2485. end
  2486. end
  2487. end)
  2488.  
  2489. function Swait(NUMBER)
  2490. if NUMBER == 0 or NUMBER == nil then
  2491. fat.Event:wait()
  2492. else
  2493. for i = 1, NUMBER do
  2494. fat.Event:wait()
  2495. end
  2496. end
  2497. end
  2498.  
  2499. function Landing2()
  2500. local rng = Instance.new("Part", char)
  2501. rng.Anchored = true
  2502. rng.BrickColor = BrickColor.new("Lime green")
  2503. rng.CanCollide = false
  2504. rng.FormFactor = 3
  2505. rng.Name = "Ring"
  2506. rng.Size = Vector3.new(1, 1, 1)
  2507. rng.Transparency = 0
  2508. rng.TopSurface = 0
  2509. rng.BottomSurface = 0
  2510. rng.Position = root.Position
  2511. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2512. local rngm = Instance.new("SpecialMesh", rng)
  2513. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2514. local rng2 = rng:Clone()
  2515. rng2.Parent = char
  2516. local rng2m = rng2.Mesh
  2517. local rng3 = rng:Clone()
  2518. rng3.Parent = char
  2519. local rng3m = rng3.Mesh
  2520. local rng4 = rng:Clone()
  2521. rng4.Parent = char
  2522. local rng4m = rng4.Mesh
  2523. local rng5 = rng:Clone()
  2524. rng5.Parent = char
  2525. local rng5m = rng5.Mesh
  2526. for i,v in pairs(FindNearestTorso(torso.CFrame.p,905))do
  2527. if v:FindFirstChild('Humanoid') then
  2528. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2529. v.Humanoid.PlatformStand = true
  2530. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2531. end
  2532. end
  2533. --MagicBlock(BrickColor.new("Lime green"),root.CFrame,15,15,15,5,5,5,0.015)
  2534. -- CFuncs["Sound"].Create("rbxassetid://187137517", rng, 10, 1)
  2535. --CFuncs["Sound"].Create("rbxassetid://597291504", rng, 5, 0.85)
  2536. ---CFuncs["Sound"].Create("rbxassetid://144699494", rng, 10, 1)
  2537. wait()
  2538. local scaler = 10
  2539. local scaler2 = 10
  2540. for i = 0,10,0.1 do
  2541. Swait()
  2542. rng.Transparency = rng.Transparency + 0.01
  2543. rng2.Transparency = rng2.Transparency + 0.01
  2544. rng3.Transparency = rng3.Transparency + 0.01
  2545. rng4.Transparency = rng4.Transparency + 0.01
  2546. rng5.Transparency = rng5.Transparency + 0.01
  2547. scaler = scaler - 0.125
  2548. scaler2 = scaler2 - 0.1
  2549. rng2m.Scale = rng2m.Scale + Vector3.new(scaler2/1.75, scaler2/1.75, 4)
  2550. rng3m.Scale = rng3m.Scale + Vector3.new(scaler2/1.5, scaler2/1.5, 3)
  2551. rng4m.Scale = rng4m.Scale + Vector3.new(scaler2/1.25, scaler2/1.25, 2)
  2552. rng5m.Scale = rng5m.Scale + Vector3.new(scaler2, scaler2, 1)
  2553. rng5.Size = rng5m.Scale
  2554. rng5.CFrame = rng.CFrame
  2555. rngm.Scale = rngm.Scale + Vector3.new(scaler2/2, scaler2/2, 5)
  2556. end
  2557. end
  2558. function Landing()
  2559. Grabee = torso
  2560. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  2561. if par then
  2562. local cfremz = CFrame.new(loc)
  2563. debris(cfremz, par, 50)
  2564. end
  2565. for i=1, 50 do
  2566. p=Instance.new("Part")
  2567. p.FrontSurface=par.TopSurface
  2568. p.Material=par.Material
  2569. p.BottomSurface=0
  2570. p.Anchored=true p.CanCollide=false
  2571. p.BrickColor=par.BrickColor
  2572. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  2573. p.CFrame=CFrame.new(Grabee.Position-Vector3.new(math.random(-i,i)/1,3,math.random(-i,i)/1),loc+Vector3.new(0,1000-i*20,0))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)
  2574. p.Parent=char
  2575. game:GetService("Debris"):AddItem(p,2+i*.1)
  2576. if math.random(1,5)==5 then
  2577. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=30 f.RiseVelocity=0 f.Opacity=.025 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2578. end
  2579. end
  2580. for i=1, 50 do
  2581. for i=1, 1 do
  2582. p=Instance.new("Part")
  2583. p.TopSurface=par.TopSurface
  2584. p.BottomSurface=par.BottomSurface
  2585. p.Material=par.Material
  2586. p.BottomSurface=0
  2587. p.Anchored=false p.CanCollide=true
  2588. p.BrickColor=par.BrickColor
  2589. p.formFactor="Custom"
  2590. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  2591. p.CFrame=CFrame.new(Grabee.Position-Vector3.new(math.random(-4,4),-2,math.random(-4,4)))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/20,math.random(-10,10)/5,math.random(-10,10)/20)
  2592. p.Parent=char
  2593. game:GetService("Debris"):AddItem(p,3+i*.1)
  2594. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  2595. p.RotVelocity=p.Velocity
  2596. if math.random(1,5)==5 then
  2597. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=15 f.RiseVelocity=10 f.Opacity=.1 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2598. end
  2599. end
  2600. Swait(.025)
  2601. end
  2602. end
  2603.  
  2604.  
  2605.  
  2606.  
  2607.  
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613. mouse.KeyDown:connect(function(key)
  2614. if key == "m" then
  2615. hum.WalkSpeed = 0
  2616. if Debounces.CanAttack == true then
  2617. Debounces.CanAttack = false
  2618. Debounces.on = true
  2619. Debounces.NoIdl = true
  2620.  
  2621. for i = 1, 20 do
  2622. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  2623. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  2624. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  2625. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  2626. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  2627. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  2628. if Debounces.on == false then break end
  2629. wait()
  2630.  
  2631. end
  2632. wait(1)
  2633. local rng = Instance.new("Part", char)
  2634. rng.Anchored = true
  2635. rng.BrickColor = BrickColor.new("Lime green")
  2636. rng.CanCollide = false
  2637. rng.FormFactor = 3
  2638. rng.Name = "Ring"
  2639. rng.Size = Vector3.new(1, 1, 1)
  2640. rng.Transparency = 0.35
  2641. rng.TopSurface = 0
  2642. rng.BottomSurface = 0
  2643. rng.Position = torso.Position - Vector3.new(0,2,0)
  2644. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2645. local rngm = Instance.new("SpecialMesh", rng)
  2646. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2647. rngm.Scale = Vector3.new(1, 1, 2)
  2648. l = Instance.new("Sound",char)
  2649. l.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2650. l.Looped = false
  2651. l.Pitch = .7
  2652. l.Volume = 1
  2653. l:Play()
  2654. coroutine.wrap(function()
  2655. for i = 1, 60, 2 do
  2656. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2657. rng.Transparency = i/60
  2658. wait()
  2659. end
  2660. wait()
  2661. rng:Destroy()
  2662. end)()
  2663. hum.WalkSpeed = 50
  2664. BV = Instance.new("BodyVelocity", torso)
  2665. BV.maxForce = Vector3.new(0,100000,0)
  2666. BV.P = 100000
  2667. BV.velocity = Vector3.new(0,999999,0)
  2668. for i = 1, 145 do
  2669. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  2670. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2671. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2672. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  2673. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2674. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2675. if Debounces.on == false then break end
  2676. wait()
  2677. end
  2678. l:Destroy()
  2679. BV:Destroy()
  2680. coroutine.resume(coroutine.create(function()
  2681. wait(0.01)
  2682. l = Instance.new("Sound",char)
  2683. l.SoundId = "http://www.roblox.com/asset/?id=938838122"
  2684. l.Looped = false
  2685. l.Pitch = 1
  2686. l.Volume = 80
  2687. l:Play()
  2688. end))
  2689. for i = 1, 60 do
  2690. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2691. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2692. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2693. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2694. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2695. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2696. if Debounces.on == false then break end
  2697. wait()
  2698. end
  2699. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2700. for i = 1, 30 do
  2701. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2702. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2703. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2704. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2705. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2706. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2707. if Debounces.on == false then break end
  2708. wait()
  2709. end
  2710. end
  2711. Debounces.on = false
  2712. Debounces.NoIdl = false
  2713. local ry,ht,ps=nil,nil,nil
  2714. while ht==nil do
  2715. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  2716. wait()
  2717. end
  2718.  
  2719.  
  2720. coroutine.resume(coroutine.create(function()
  2721.  
  2722. for i,v in pairs(workspace:children()) do
  2723. charr = v:FindFirstChild('Character')
  2724. for i = 1, 15 do
  2725. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2726. wait()
  2727. end
  2728.  
  2729. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2730. end
  2731. end))
  2732.  
  2733.  
  2734.  
  2735.  
  2736. coroutine.resume(coroutine.create(function()
  2737. for i = 1, 15 do
  2738. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2739. wait()
  2740. end
  2741. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2742. end))
  2743.  
  2744.  
  2745. coroutine.resume(coroutine.create(function()
  2746. Landing2()
  2747. end))
  2748. Landing()
  2749. game:GetService("Debris"):AddItem(rng, 1)
  2750. game:GetService("Debris"):AddItem(rng2, 1)
  2751. game:GetService("Debris"):AddItem(rng3, 1)
  2752. game:GetService("Debris"):AddItem(rng4, 1)
  2753. game:GetService("Debris"):AddItem(rng5, 1)
  2754. hum.WalkSpeed = 5
  2755. if Debounces.CanAttack == false then
  2756. Debounces.CanAttack = true
  2757. end
  2758. end
  2759. end
  2760. end)
  2761.  
  2762.  
  2763.  
  2764. ptez = {0.7, 0.8, 0.9, 1}
  2765.  
  2766. function GroundPound()
  2767. local rng = Instance.new("Part", char)
  2768. rng.Anchored = true
  2769. rng.BrickColor = BrickColor.new("Lime green")
  2770. rng.CanCollide = false
  2771. rng.FormFactor = 3
  2772. rng.Name = "Ring"
  2773. rng.Size = Vector3.new(1, 1, 1)
  2774. rng.Transparency = 0.35
  2775. rng.TopSurface = 0
  2776. rng.BottomSurface = 0
  2777. rng.Position = larm.Position - Vector3.new(0,4,0)
  2778. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2779. local rngm = Instance.new("SpecialMesh", rng)
  2780. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2781. rngm.Scale = Vector3.new(1, 1, 2)
  2782. coroutine.resume(coroutine.create(function()
  2783. t = Instance.new("Sound",char)
  2784. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2785. t.Pitch = ptez[math.random(1,#ptez)]
  2786. t.Volume = 1
  2787. wait(.1)
  2788. t:Play()
  2789. end))
  2790. coroutine.wrap(function()
  2791. for i = 1, 60, 2 do
  2792. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2793. rng.Transparency = i/60
  2794. wait()
  2795. end
  2796. wait()
  2797. rng:Destroy()
  2798. end)()
  2799.  
  2800. end
  2801.  
  2802.  
  2803. function GroundPound2()
  2804. local rng = Instance.new("Part", char)
  2805. rng.Anchored = true
  2806. rng.BrickColor = BrickColor.new("Lime green")
  2807. rng.CanCollide = false
  2808. rng.FormFactor = 3
  2809. rng.Name = "Ring"
  2810. rng.Size = Vector3.new(1, 1, 1)
  2811. rng.Transparency = 0.35
  2812. rng.TopSurface = 0
  2813. rng.BottomSurface = 0
  2814. rng.Position = rarm.Position - Vector3.new(0,4,0)
  2815. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2816. local rngm = Instance.new("SpecialMesh", rng)
  2817. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2818. rngm.Scale = Vector3.new(1, 1, 2)
  2819. coroutine.resume(coroutine.create(function()
  2820. t = Instance.new("Sound",char)
  2821. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2822. t.Pitch = ptez[math.random(1,#ptez)]
  2823. t.Volume = 1
  2824. wait(.1)
  2825. t:Play()
  2826. end))
  2827. coroutine.wrap(function()
  2828. for i = 1, 60, 2 do
  2829. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2830. rng.Transparency = i/60
  2831. wait()
  2832. end
  2833. wait()
  2834. rng:Destroy()
  2835. end)()
  2836. end
  2837.  
  2838.  
  2839.  
  2840.  
  2841. mouse.KeyDown:connect(function(key)
  2842. if key == "e" then
  2843. if Debounces.CanAttack == true then
  2844. Debounces.CanAttack = false
  2845. Debounces.NoIdl = true
  2846. Debounces.on = true
  2847.  
  2848.  
  2849.  
  2850.  
  2851. coroutine.resume(coroutine.create(function()
  2852.  
  2853. for i,v in pairs(workspace:children()) do
  2854. charr = v:FindFirstChild('Character')
  2855. for i = 1, 48 do
  2856. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2857. wait()
  2858. end
  2859.  
  2860. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2861. end
  2862. end))
  2863.  
  2864.  
  2865.  
  2866.  
  2867. coroutine.resume(coroutine.create(function()
  2868. for i = 1, 78 do
  2869. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2870. wait()
  2871. end
  2872. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2873. end))
  2874.  
  2875.  
  2876. coroutine.resume(coroutine.create(function()
  2877. wait(0.1)
  2878. for i = 1,78 do
  2879. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2880. if v:FindFirstChild('Humanoid') then
  2881. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2882. v.Humanoid.PlatformStand = true
  2883. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2884. end
  2885. end
  2886. end
  2887. end))
  2888.  
  2889. GroundPound()
  2890. for i = 1, 5 do
  2891. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2892. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2893. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2894. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2895. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2896. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2897. if Debounces.on == false then break end
  2898. wait()
  2899. end
  2900. GroundPound2()
  2901. for i = 1, 5 do
  2902. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2903. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2904. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2905. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2906. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2907. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2908. if Debounces.on == false then break end
  2909. wait()
  2910. end
  2911. GroundPound()
  2912. for i = 1, 5 do
  2913. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2914. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2915. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2916. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2917. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2918. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2919. if Debounces.on == false then break end
  2920. wait()
  2921. end
  2922. GroundPound2()
  2923. for i = 1, 5 do
  2924. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2925. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2926. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2927. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2928. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2929. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2930. if Debounces.on == false then break end
  2931. wait()
  2932. end
  2933. GroundPound()
  2934. for i = 1, 5 do
  2935. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2936. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2937. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2938. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2939. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2940. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2941. if Debounces.on == false then break end
  2942. wait()
  2943. end
  2944. GroundPound2()
  2945. for i = 1, 5 do
  2946. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2947. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2948. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2949. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2950. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2951. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2952. if Debounces.on == false then break end
  2953. wait()
  2954. end
  2955. GroundPound()
  2956. for i = 1, 5 do
  2957. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2958. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2959. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2960. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2961. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2962. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2963. if Debounces.on == false then break end
  2964. wait()
  2965. end
  2966. GroundPound2()
  2967. for i = 1, 5 do
  2968. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2969. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2970. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2971. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2972. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2973. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2974. if Debounces.on == false then break end
  2975. wait()
  2976. end
  2977. GroundPound()
  2978. for i = 1, 5 do
  2979. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2980. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2981. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2982. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2983. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2984. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2985. if Debounces.on == false then break end
  2986. wait()
  2987. end
  2988. GroundPound2()
  2989. for i = 1, 5 do
  2990. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2991. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2992. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2993. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2994. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2995. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2996. if Debounces.on == false then break end
  2997. wait()
  2998. end
  2999. GroundPound()
  3000. for i = 1, 5 do
  3001. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  3002. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  3003. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3004. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3005. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3006. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3007. if Debounces.on == false then break end
  3008. wait()
  3009. end
  3010. GroundPound2()
  3011. for i = 1, 5 do
  3012. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  3013. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  3014. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3015. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3016. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3017. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3018. if Debounces.on == false then break end
  3019. wait()
  3020. end
  3021. GroundPound()
  3022. for i = 1, 5 do
  3023. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  3024. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  3025. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3026. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3027. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3028. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3029. if Debounces.on == false then break end
  3030. wait()
  3031. end
  3032. GroundPound2()
  3033. for i = 1, 5 do
  3034. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  3035. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  3036. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3037. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3038. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3039. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3040. if Debounces.on == false then break end
  3041. wait()
  3042. end
  3043. GroundPound()
  3044. for i = 1, 5 do
  3045. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  3046. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  3047. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3048. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3049. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3050. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3051. if Debounces.on == false then break end
  3052. wait()
  3053. end
  3054. GroundPound2()
  3055. for i = 1, 5 do
  3056. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  3057. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  3058. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3059. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3060. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3061. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3062. if Debounces.on == false then break end
  3063. wait()
  3064. end
  3065.  
  3066.  
  3067.  
  3068. if Debounces.CanAttack == false then
  3069. Debounces.CanAttack = true
  3070. Debounces.on = false
  3071. Debounces.NoIdl = false
  3072.  
  3073. end
  3074. end
  3075. end
  3076. end)
  3077.  
  3078.  
  3079.  
  3080.  
  3081. local animpose = "Idle"
  3082. local lastanimpose = "Idle"
  3083. local sine = 0
  3084. local change = 1
  3085. local val = 0
  3086. local ffing = false
  3087. ----------------------------------------------------
  3088. x = Instance.new("Sound", char)
  3089. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3090. x.Looped = true
  3091. x.Volume = 30
  3092. x.Pitch = 1
  3093. local footsteps = false
  3094. -------------------------------
  3095. game:GetService("RunService").RenderStepped:connect(function()
  3096. if char.Humanoid.Jump == true then
  3097. jump = true
  3098. else
  3099. jump = false
  3100. end
  3101. char.Humanoid.FreeFalling:connect(function(f)
  3102. if f then
  3103. ffing = true
  3104. else
  3105. ffing = false
  3106. end
  3107. end)
  3108. sine = sine + change
  3109. if jumpn == true then
  3110. animpose = "Jumping"
  3111. elseif ffing == true then
  3112. animpose = "Freefalling"
  3113. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3114. animpose = "Idle"
  3115. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3116. animpose = "Walking"
  3117. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3118. animpose = "Running"
  3119. end
  3120. if animpose ~= lastanimpose then
  3121. sine = 0
  3122. if Debounces.NoIdl == false then
  3123. if animpose == "Idle" then
  3124. for i = 1, 2 do
  3125. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  3126. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  3127. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3128. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3129. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3130. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3131. end
  3132. elseif animpose == "Walking" then
  3133. for i = 1, 2 do
  3134. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(0)), 0.2)
  3135. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3136. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  3137. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3138. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3139. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3140. end
  3141. elseif animpose == "Running" then
  3142. for i = 1, 2 do
  3143. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-0), math.rad(-40), math.rad(0)), 0.2)
  3144. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3145. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3146. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3147. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3148. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3149. end
  3150. wait()
  3151. end
  3152. else
  3153. end
  3154. end
  3155. lastanimpose = animpose
  3156. if Debounces.NoIdl == false then
  3157. if animpose == "Idle" then
  3158. if stanceToggle == "Normal" then
  3159. change = 0.5
  3160. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(50),math.rad(0)), 0.2)
  3161. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  3162. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  3163. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3164. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3165. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3166. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3167. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3168. elseif stanceToggle == "Sitting" then
  3169. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3170. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3171. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3172. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3173. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3174. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3175. end
  3176. elseif animpose == "Walking" then
  3177. if stanceToggle == "Normal" then
  3178. change = 1
  3179. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/-4, math.rad(1) + -math.sin(sine/14)/2, math.rad(30)), 0.1)
  3180. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.1)
  3181. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  3182. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  3183. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .1)
  3184. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .1)
  3185. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3186. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3187. end
  3188. elseif animpose == "Running" then
  3189. change = 1
  3190. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3191. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3192. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3193. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3194. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3195. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3196. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3197. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3198. end
  3199. end
  3200. if animpose == "Walking" then
  3201. if footsteps == false then
  3202. x:Play()
  3203. footsteps = true
  3204. end
  3205. x.Pitch = 0.9
  3206. elseif animpose == "Idle" then
  3207. x:Stop()
  3208. footsteps = false
  3209. elseif animpose == "Running" then
  3210. x.Pitch = 1.2
  3211. if footsteps == false then
  3212. x:Play()
  3213. footsteps = true
  3214. end
  3215. end
  3216. end)
  3217. -------Radioactive party boi by goodguyaiden-------
Add Comment
Please, Sign In to add comment