Advertisement
MarcAndrew

Untitled

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