Advertisement
billwa

Nice Admin

Nov 13th, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 471.16 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6. local lleg = char["Left Leg"]
  7. local rleg = char["Right Leg"]
  8. local hed = char.Head
  9. local torso = char.Torso
  10. local hum = char.Humanoid
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local deb = false
  14. local shot = 0
  15. local l = game:GetService("Lighting")
  16. local rs = game:GetService("RunService").RenderStepped
  17. local stanceToggle = "Normal"
  18. math.randomseed(os.time())
  19. hum.WalkSpeed = 30
  20. char.Health:Destroy()
  21. hum.MaxHealth = 50000
  22. wait(0.1)
  23. hum.Health = 50000
  24. ----------------------------------------------------
  25. char.Shirt:Destroy()
  26. char.Pants:Destroy()
  27. shirt = Instance.new("Shirt", char)
  28. shirt.Name = "Shirt"
  29. pants = Instance.new("Pants", char)
  30. pants.Name = "Pants"
  31. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  32. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  33. ----------------------------------------------------
  34. Debounces = {
  35. on = false;
  36. ks = false;
  37. CanAttack = true;
  38. CanJoke = true;
  39. NoIdl = false;
  40. Slashing = false;
  41. Slashed = false;
  42. Grabbing = false;
  43. Grabbed = false;
  44. }
  45. local Touche = {char.Name, }
  46. ----------------------------------------------------
  47. function lerp(a, b, t) -- Linear interpolation
  48.     return a + (b - a)*t
  49. end
  50.  
  51. function slerp(a, b, t) --Spherical interpolation
  52.     dot = a:Dot(b)
  53.     if dot > 0.99999 or dot < -0.99999 then
  54.         return t <= 0.5 and a or b
  55.     else
  56.         r = math.acos(dot)
  57.         return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  58.     end
  59. end
  60.  
  61. function matrixInterpolate(a, b, t)
  62.     local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  63.     local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  64.     local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  65.     local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
  66.     local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
  67.     local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
  68.     local t = v1:Dot(v2)
  69.     if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
  70.         return CFrame.new()
  71.     end
  72.     return CFrame.new(
  73.     v0.x, v0.y, v0.z,
  74.     v1.x, v1.y, v1.z,
  75.     v2.x, v2.y, v2.z,
  76.     v3.x, v3.y, v3.z)
  77. end
  78. ----------------------------------------------------
  79. function genWeld(a,b)
  80.     local w = Instance.new("Weld",a)
  81.     w.Part0 = a
  82.     w.Part1 = b
  83.     return w
  84. end
  85. function weld(a, b)
  86.     local weld = Instance.new("Weld")
  87.     weld.Name = "W"
  88.     weld.Part0 = a
  89.     weld.Part1 = b
  90.     weld.C0 = a.CFrame:inverse() * b.CFrame
  91.     weld.Parent = a
  92.     return weld;
  93. end
  94. ----------------------------------------------------
  95. function Lerp(c1,c2,al)
  96. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  97. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  98. for i,v in pairs(com1) do
  99. com1[i] = v+(com2[i]-v)*al
  100. end
  101. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  102. end
  103. ----------------------------------------------------
  104. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  105. local wld = Instance.new("Weld", wp1)
  106. wld.Part0 = wp0
  107. wld.Part1 = wp1
  108. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  109. end
  110. ----------------------------------------------------
  111. for i,v in pairs(char:children()) do
  112.     if v:IsA("Hat") then
  113.         v:Destroy()
  114.     end
  115. end
  116. for i,v in pairs(hed:children()) do
  117.     if v:IsA("Sound") then
  118.         v:Destroy()
  119.     end
  120. end
  121. ----------------------------------------------------
  122. function HasntTouched(plrname)
  123. local ret = true
  124. for _, v in pairs(Touche) do
  125. if v == plrname then
  126. ret = false
  127. end
  128. end
  129. return ret
  130. end
  131. ----------------------------------------------------
  132. larm.Size = larm.Size * 2
  133. rarm.Size = rarm.Size * 2
  134. lleg.Size = lleg.Size * 2
  135. rleg.Size = rleg.Size * 2
  136. torso.Size = torso.Size * 2
  137. hed.Size = hed.Size * 2
  138. root.Size = root.Size * 2
  139. ----------------------------------------------------
  140. newWeld(torso, larm, -1.5, 0.5, 0)
  141. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  142. newWeld(torso, rarm, 1.5, 0.5, 0)
  143. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  144. newWeld(torso, hed, 0, 1.5, 0)
  145. newWeld(torso, lleg, -0.5, -1, 0)
  146. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  147. newWeld(torso, rleg, 0.5, -1, 0)
  148. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  149. newWeld(root, torso, 0, -1, 0)
  150. torso.Weld.C1 = CFrame.new(0, -1, 0)
  151. ----------------------------------------------------
  152. game:service'InsertService':LoadAsset(63993845):children()[1].Parent=char
  153. char.LavendarPlasmaHood.Handle.Mesh.Scale = char.LavendarPlasmaHood.Handle.Mesh.Scale * 1.8
  154. char.LavendarPlasmaHood.Handle.Mesh.VertexColor = Vector3.new(0.1,0.1,0.1)
  155. hed.face.Texture = "rbxassetid://46282671"
  156. z=Instance.new('Decal',hed)
  157. z.Face = 'Front'
  158. z.Texture='rbxassetid://99174105'
  159. hed.BrickColor = BrickColor.new("Really black")
  160. lite = Instance.new("PointLight", torso)
  161. lite.Brightness = 14
  162. lite.Range = 10
  163. lite.Color = Color3.new(1, 0, 0)
  164. --[[local hed2 = hed:Clone()
  165. hed2.CanCollide = false
  166. hed2.Parent = char
  167. hed2:ClearAllChildren()
  168. hed2.Transparency = 1
  169. hed2.Name = "DARP"
  170. local w = Instance.new("Weld",hed2)
  171. w.Part0 = hed
  172. w.Part1 = hed2
  173. w.C0 = CFrame.new(0,0,-0.175)
  174. z=Instance.new("SurfaceGui",hed2)
  175. z.Enabled = true
  176. z.Face = "Front"
  177. z.Adornee = hed2
  178. z.CanvasSize = Vector2.new(100,100)
  179. local face = Instance.new("ImageLabel",z)
  180. face.Size = UDim2.new(1,-30,1,0)
  181. face.Position = UDim2.new(0,15,0,0)
  182. face.BackgroundTransparency = 1
  183. face.Image='rbxassetid://46282671']]--
  184. ----------------------------------------------------
  185. z = Instance.new("Sound", char)
  186. z.SoundId = "rbxassetid://170822236"--242463565
  187. z.Looped = true
  188. z.Pitch = .58
  189. z.Volume = 1
  190. wait(.01)
  191. z:Play()
  192. ----------------------------------------------------
  193. local m = Instance.new("Model")
  194. m.Name = "Absolution"
  195. p1 = Instance.new("Part", m)
  196. p1.BrickColor = BrickColor.new("Really red")
  197. p1.FormFactor = Enum.FormFactor.Custom
  198. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  199. 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)
  200. p1.CanCollide = false
  201. p1.Locked = true
  202. p1.Elasticity = 0
  203. p1.BottomSurface = Enum.SurfaceType.Smooth
  204. p1.TopSurface = Enum.SurfaceType.Smooth
  205. b1 = Instance.new("SpecialMesh", p1)
  206. b1.MeshType = Enum.MeshType.Wedge
  207. b1.Name = "Mesh"
  208. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  209. p2 = Instance.new("Part", m)
  210. p2.BrickColor = BrickColor.new("Really black")
  211. p2.FormFactor = Enum.FormFactor.Custom
  212. p2.Size = Vector3.new(1, 2.9000001, 1)
  213. 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)
  214. p2.CanCollide = false
  215. p2.Locked = true
  216. p2.Elasticity = 0
  217. p2.BottomSurface = Enum.SurfaceType.Smooth
  218. p2.TopSurface = Enum.SurfaceType.Smooth
  219. b2 = Instance.new("BlockMesh", p2)
  220. b2.Name = "Mesh"
  221. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  222. p3 = Instance.new("Part", m)
  223. p3.BrickColor = BrickColor.new("Really red")
  224. p3.FormFactor = Enum.FormFactor.Custom
  225. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  226. 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)
  227. p3.CanCollide = false
  228. p3.Locked = true
  229. p3.Elasticity = 0
  230. p3.BottomSurface = Enum.SurfaceType.Smooth
  231. p3.TopSurface = Enum.SurfaceType.Smooth
  232. b3 = Instance.new("SpecialMesh", p3)
  233. b3.MeshType = Enum.MeshType.Wedge
  234. b3.Name = "Mesh"
  235. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  236. p4 = Instance.new("Part", m)
  237. p4.BrickColor = BrickColor.new("Really red")
  238. p4.FormFactor = Enum.FormFactor.Custom
  239. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  240. 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)
  241. p4.CanCollide = false
  242. p4.Locked = true
  243. p4.Elasticity = 0
  244. p4.BottomSurface = Enum.SurfaceType.Smooth
  245. p4.TopSurface = Enum.SurfaceType.Smooth
  246. b4 = Instance.new("SpecialMesh", p4)
  247. b4.MeshType = Enum.MeshType.Wedge
  248. b4.Name = "Mesh"
  249. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  250. p5 = Instance.new("Part", m)
  251. p5.BrickColor = BrickColor.new("Really red")
  252. p5.FormFactor = Enum.FormFactor.Custom
  253. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  254. 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)
  255. p5.CanCollide = false
  256. p5.Locked = true
  257. p5.Elasticity = 0
  258. p5.BottomSurface = Enum.SurfaceType.Smooth
  259. p5.TopSurface = Enum.SurfaceType.Smooth
  260. b5 = Instance.new("SpecialMesh", p5)
  261. b5.MeshType = Enum.MeshType.Wedge
  262. b5.Name = "Mesh"
  263. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  264. p6 = Instance.new("Part", m)
  265. p6.Name = "Handle"
  266. p6.BrickColor = BrickColor.new("Really black")
  267. p6.FormFactor = Enum.FormFactor.Custom
  268. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  269. 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)
  270. p6.CanCollide = false
  271. p6.Locked = true
  272. p6.Elasticity = 0
  273. p6.BottomSurface = Enum.SurfaceType.Smooth
  274. p6.TopSurface = Enum.SurfaceType.Smooth
  275. b6 = Instance.new("BlockMesh", p6)
  276. b6.Name = "Mesh"
  277. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  278. p7 = Instance.new("Part", m)
  279. p7.BrickColor = BrickColor.new("Really red")
  280. p7.FormFactor = Enum.FormFactor.Custom
  281. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  282. 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)
  283. p7.CanCollide = false
  284. p7.Locked = true
  285. p7.Elasticity = 0
  286. p7.BottomSurface = Enum.SurfaceType.Smooth
  287. p7.TopSurface = Enum.SurfaceType.Smooth
  288. b7 = Instance.new("SpecialMesh", p7)
  289. b7.MeshType = Enum.MeshType.Wedge
  290. b7.Name = "Mesh"
  291. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  292. p8 = Instance.new("Part", m)
  293. p8.BrickColor = BrickColor.new("Really red")
  294. p8.FormFactor = Enum.FormFactor.Custom
  295. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  296. 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)
  297. p8.CanCollide = false
  298. p8.Locked = true
  299. p8.Elasticity = 0
  300. p8.BottomSurface = Enum.SurfaceType.Smooth
  301. p8.TopSurface = Enum.SurfaceType.Smooth
  302. b8 = Instance.new("SpecialMesh", p8)
  303. b8.MeshType = Enum.MeshType.Wedge
  304. b8.Name = "Mesh"
  305. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  306. p9 = Instance.new("Part", m)
  307. p9.BrickColor = BrickColor.new("Really black")
  308. p9.FormFactor = Enum.FormFactor.Custom
  309. p9.Size = Vector3.new(1, 1.07999957, 1)
  310. 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)
  311. p9.CanCollide = false
  312. p9.Locked = true
  313. p9.Elasticity = 0
  314. p9.BottomSurface = Enum.SurfaceType.Smooth
  315. p9.TopSurface = Enum.SurfaceType.Smooth
  316. b9 = Instance.new("BlockMesh", p9)
  317. b9.Name = "Mesh"
  318. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  319. p10 = Instance.new("Part", m)
  320. p10.BrickColor = BrickColor.new("Really black")
  321. p10.FormFactor = Enum.FormFactor.Custom
  322. p10.Size = Vector3.new(1, 1.41999948, 1)
  323. 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)
  324. p10.CanCollide = false
  325. p10.Locked = true
  326. p10.Elasticity = 0
  327. p10.BottomSurface = Enum.SurfaceType.Smooth
  328. p10.TopSurface = Enum.SurfaceType.Smooth
  329. b10 = Instance.new("BlockMesh", p10)
  330. b10.Name = "Mesh"
  331. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  332. p11 = Instance.new("Part", m)
  333. p11.BrickColor = BrickColor.new("Really black")
  334. p11.FormFactor = Enum.FormFactor.Custom
  335. p11.Size = Vector3.new(1, 1.50999951, 1)
  336. 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)
  337. p11.CanCollide = false
  338. p11.Locked = true
  339. p11.Elasticity = 0
  340. p11.BottomSurface = Enum.SurfaceType.Smooth
  341. p11.TopSurface = Enum.SurfaceType.Smooth
  342. b11 = Instance.new("BlockMesh", p11)
  343. b11.Name = "Mesh"
  344. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  345. p12 = Instance.new("Part", m)
  346. p12.Name = "BladeCenter"
  347. p12.BrickColor = BrickColor.new("Dark stone grey")
  348. p12.Material = Enum.Material.Concrete
  349. p12.FormFactor = Enum.FormFactor.Symmetric
  350. p12.Size = Vector3.new(1, 2, 2)
  351. 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)
  352. p12.CanCollide = false
  353. p12.Locked = true
  354. p12.BottomSurface = Enum.SurfaceType.Smooth
  355. p12.TopSurface = Enum.SurfaceType.Smooth
  356. b12 = Instance.new("SpecialMesh", p12)
  357. b12.MeshType = Enum.MeshType.Brick
  358. b12.Name = "Mesh"
  359. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  360. p13 = Instance.new("Part", m)
  361. p13.BrickColor = BrickColor.new("Really black")
  362. p13.FormFactor = Enum.FormFactor.Custom
  363. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  364. 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)
  365. p13.CanCollide = false
  366. p13.Locked = true
  367. p13.Elasticity = 0
  368. p13.BottomSurface = Enum.SurfaceType.Smooth
  369. p13.TopSurface = Enum.SurfaceType.Smooth
  370. b13 = Instance.new("BlockMesh", p13)
  371. b13.Name = "Mesh"
  372. b13.Scale = Vector3.new(1, 1, 0.400000006)
  373. p14 = Instance.new("Part", m)
  374. p14.BrickColor = BrickColor.new("Really black")
  375. p14.FormFactor = Enum.FormFactor.Custom
  376. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  377. 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)
  378. p14.CanCollide = false
  379. p14.Locked = true
  380. p14.Elasticity = 0
  381. p14.BottomSurface = Enum.SurfaceType.Smooth
  382. p14.TopSurface = Enum.SurfaceType.Smooth
  383. b14 = Instance.new("BlockMesh", p14)
  384. b14.Name = "Mesh"
  385. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  386. p15 = Instance.new("Part", m)
  387. p15.BrickColor = BrickColor.new("Really black")
  388. p15.FormFactor = Enum.FormFactor.Custom
  389. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  390. 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)
  391. p15.CanCollide = false
  392. p15.Locked = true
  393. p15.Elasticity = 0
  394. p15.BottomSurface = Enum.SurfaceType.Smooth
  395. p15.TopSurface = Enum.SurfaceType.Smooth
  396. b15 = Instance.new("BlockMesh", p15)
  397. b15.Name = "Mesh"
  398. b15.Scale = Vector3.new(1, 1, 0.400000006)
  399. p16 = Instance.new("Part", m)
  400. p16.BrickColor = BrickColor.new("Really black")
  401. p16.FormFactor = Enum.FormFactor.Custom
  402. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  403. 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)
  404. p16.CanCollide = false
  405. p16.Locked = true
  406. p16.Elasticity = 0
  407. p16.BottomSurface = Enum.SurfaceType.Smooth
  408. p16.TopSurface = Enum.SurfaceType.Smooth
  409. b16 = Instance.new("BlockMesh", p16)
  410. b16.Name = "Mesh"
  411. b16.Scale = Vector3.new(1, 1, 0.400000006)
  412. p17 = Instance.new("Part", m)
  413. p17.BrickColor = BrickColor.new("Really black")
  414. p17.FormFactor = Enum.FormFactor.Custom
  415. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  416. 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)
  417. p17.CanCollide = false
  418. p17.Locked = true
  419. p17.Elasticity = 0
  420. p17.BottomSurface = Enum.SurfaceType.Smooth
  421. p17.TopSurface = Enum.SurfaceType.Smooth
  422. b17 = Instance.new("BlockMesh", p17)
  423. b17.Name = "Mesh"
  424. b17.Scale = Vector3.new(1, 1, 0.400000006)
  425. p18 = Instance.new("WedgePart", m)
  426. p18.BrickColor = BrickColor.new("Dark stone grey")
  427. p18.Name = "BladePart1"
  428. p18.Material = Enum.Material.Concrete
  429. p18.Name = "Wedge"
  430. p18.FormFactor = Enum.FormFactor.Symmetric
  431. p18.Size = Vector3.new(1, 4, 2)
  432. 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)
  433. p18.CanCollide = false
  434. p18.Locked = true
  435. p18.BottomSurface = Enum.SurfaceType.Smooth
  436. p18.TopSurface = Enum.SurfaceType.Smooth
  437. b18 = Instance.new("SpecialMesh", p18)
  438. b18.MeshType = Enum.MeshType.Wedge
  439. b18.Name = "Mesh"
  440. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  441. p19 = Instance.new("WedgePart", m)
  442. p19.BrickColor = BrickColor.new("Dark stone grey")
  443. p19.Name = "BladePart2"
  444. p19.Material = Enum.Material.Concrete
  445. p19.Name = "Wedge"
  446. p19.FormFactor = Enum.FormFactor.Symmetric
  447. p19.Size = Vector3.new(1, 4, 2)
  448. 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)
  449. p19.CanCollide = false
  450. p19.Locked = true
  451. p19.BottomSurface = Enum.SurfaceType.Smooth
  452. p19.TopSurface = Enum.SurfaceType.Smooth
  453. b19 = Instance.new("SpecialMesh", p19)
  454. b19.MeshType = Enum.MeshType.Wedge
  455. b19.Name = "Mesh"
  456. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  457. p20 = Instance.new("Part", m)
  458. p20.BrickColor = BrickColor.new("Really black")
  459. p20.FormFactor = Enum.FormFactor.Custom
  460. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  461. 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)
  462. p20.CanCollide = false
  463. p20.Locked = true
  464. p20.Elasticity = 0
  465. p20.BottomSurface = Enum.SurfaceType.Smooth
  466. p20.TopSurface = Enum.SurfaceType.Smooth
  467. b20 = Instance.new("BlockMesh", p20)
  468. b20.Name = "Mesh"
  469. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  470. p21 = Instance.new("Part", m)
  471. p21.BrickColor = BrickColor.new("Really red")
  472. p21.FormFactor = Enum.FormFactor.Custom
  473. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  474. 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)
  475. p21.CanCollide = false
  476. p21.Locked = true
  477. p21.Elasticity = 0
  478. p21.BottomSurface = Enum.SurfaceType.Smooth
  479. p21.TopSurface = Enum.SurfaceType.Smooth
  480. b21 = Instance.new("SpecialMesh", p21)
  481. b21.MeshType = Enum.MeshType.Wedge
  482. b21.Name = "Mesh"
  483. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  484. w1 = Instance.new("Weld", p1)
  485. w1.Name = "Part_Weld"
  486. w1.Part0 = p1
  487. 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)
  488. w1.Part1 = p2
  489. 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)
  490. w2 = Instance.new("Weld", p2)
  491. w2.Name = "Part_Weld"
  492. w2.Part0 = p2
  493. 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)
  494. w2.Part1 = p3
  495. 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)
  496. w3 = Instance.new("Weld", p3)
  497. w3.Name = "Part_Weld"
  498. w3.Part0 = p3
  499. 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)
  500. w3.Part1 = p4
  501. 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)
  502. w4 = Instance.new("Weld", p4)
  503. w4.Name = "Part_Weld"
  504. w4.Part0 = p4
  505. 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)
  506. w4.Part1 = p5
  507. 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)
  508. w5 = Instance.new("Weld", p5)
  509. w5.Name = "Part_Weld"
  510. w5.Part0 = p5
  511. 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)
  512. w5.Part1 = p6
  513. 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)
  514. w6 = Instance.new("Weld", p6)
  515. w6.Name = "Part_Weld"
  516. w6.Part0 = p6
  517. 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)
  518. w6.Part1 = p7
  519. 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)
  520. w7 = Instance.new("Weld", p7)
  521. w7.Name = "Part_Weld"
  522. w7.Part0 = p7
  523. 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)
  524. w7.Part1 = p8
  525. 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)
  526. w8 = Instance.new("Weld", p8)
  527. w8.Name = "Part_Weld"
  528. w8.Part0 = p8
  529. 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)
  530. w8.Part1 = p9
  531. 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)
  532. w9 = Instance.new("Weld", p9)
  533. w9.Name = "Part_Weld"
  534. w9.Part0 = p9
  535. 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)
  536. w9.Part1 = p10
  537. 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)
  538. w10 = Instance.new("Weld", p10)
  539. w10.Name = "Part_Weld"
  540. w10.Part0 = p10
  541. 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)
  542. w10.Part1 = p11
  543. 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)
  544. w11 = Instance.new("Weld", p11)
  545. w11.Name = "Part_Weld"
  546. w11.Part0 = p11
  547. 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)
  548. w11.Part1 = p12
  549. 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)
  550. w12 = Instance.new("Weld", p12)
  551. w12.Name = "Part_Weld"
  552. w12.Part0 = p12
  553. 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)
  554. w12.Part1 = p13
  555. 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)
  556. w13 = Instance.new("Weld", p13)
  557. w13.Name = "Part_Weld"
  558. w13.Part0 = p13
  559. 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)
  560. w13.Part1 = p14
  561. 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)
  562. w14 = Instance.new("Weld", p14)
  563. w14.Name = "Part_Weld"
  564. w14.Part0 = p14
  565. 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)
  566. w14.Part1 = p15
  567. 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)
  568. w15 = Instance.new("Weld", p15)
  569. w15.Name = "Part_Weld"
  570. w15.Part0 = p15
  571. 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)
  572. w15.Part1 = p16
  573. 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)
  574. w16 = Instance.new("Weld", p16)
  575. w16.Name = "Part_Weld"
  576. w16.Part0 = p16
  577. 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)
  578. w16.Part1 = p17
  579. 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)
  580. w17 = Instance.new("Weld", p17)
  581. w17.Name = "Wedge_Weld"
  582. w17.Part0 = p17
  583. 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)
  584. w17.Part1 = p18
  585. 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)
  586. w18 = Instance.new("Weld", p18)
  587. w18.Name = "Wedge_Weld"
  588. w18.Part0 = p18
  589. 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)
  590. w18.Part1 = p19
  591. 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)
  592. w19 = Instance.new("Weld", p19)
  593. w19.Name = "Part_Weld"
  594. w19.Part0 = p19
  595. 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)
  596. w19.Part1 = p20
  597. 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)
  598. w20 = Instance.new("Weld", p20)
  599. w20.Name = "Part_Weld"
  600. w20.Part0 = p20
  601. 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)
  602. w20.Part1 = p21
  603. 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)
  604. m.Parent = char
  605. m:MakeJoints()
  606. ----------------------------------------------------
  607. local cor = Instance.new("Part", char.Absolution)
  608. cor.Name = "Thingy"
  609. cor.Locked = true
  610. cor.BottomSurface = 0
  611. cor.CanCollide = false
  612. cor.Size = Vector3.new(1, 13, 1)
  613. cor.Transparency = 1
  614. cor.TopSurface = 0
  615. corw = Instance.new("Weld", cor)
  616. corw.Part0 = rarm
  617. corw.Part1 = cor
  618. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  619. corw.C1 = CFrame.new(0, 0, 0)
  620. weld1 = Instance.new("Weld", char.Absolution)
  621. weld1.Part0 = cor
  622. weld1.Part1 = p6
  623. weld1.C0 = CFrame.new(0, 0, 0)
  624. ----------------------------------------------------
  625. hitb = Instance.new("Part", char.Absolution)
  626. hitb.Name = "Thingy2"
  627. hitb.Locked = true
  628. hitb.BottomSurface = 0
  629. hitb.CanCollide = false
  630. hitb.Size = Vector3.new(0, 8, 6)
  631. hitb.Transparency = 1
  632. hitb.TopSurface = 0
  633. weld2 = Instance.new("Weld", char.Absolution)
  634. weld2.Part0 = hitb
  635. weld2.Part1 = p12
  636. weld2.C0 = CFrame.new(0, .6, 1)
  637. ----------------------------------------------------
  638. local m = Instance.new("Model")
  639. m.Name = "Claw"
  640. p1 = Instance.new("Part", m)
  641. p1.BrickColor = BrickColor.new("Really black")
  642. p1.FormFactor = Enum.FormFactor.Custom
  643. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  644. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  645. p1.CanCollide = false
  646. p1.Locked = true
  647. p1.BottomSurface = Enum.SurfaceType.Smooth
  648. p1.TopSurface = Enum.SurfaceType.Smooth
  649. b1 = Instance.new("BlockMesh", p1)
  650. b1.Name = "Mesh"
  651. p2 = Instance.new("WedgePart", m)
  652. p2.BrickColor = BrickColor.new("Really black")
  653. p2.Name = "Wedge"
  654. p2.FormFactor = Enum.FormFactor.Custom
  655. p2.Size = Vector3.new(3, 1, 0.5)
  656. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  657. p2.CanCollide = false
  658. p2.Locked = true
  659. p2.BottomSurface = Enum.SurfaceType.Smooth
  660. p2.TopSurface = Enum.SurfaceType.Smooth
  661. p3 = Instance.new("Part", m)
  662. p3.BrickColor = BrickColor.new("Really black")
  663. p3.FormFactor = Enum.FormFactor.Custom
  664. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  665. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  666. p3.CanCollide = false
  667. p3.Locked = true
  668. p3.BottomSurface = Enum.SurfaceType.Smooth
  669. p3.TopSurface = Enum.SurfaceType.Smooth
  670. b2 = Instance.new("BlockMesh", p3)
  671. b2.Name = "Mesh"
  672. p4 = Instance.new("WedgePart", m)
  673. p4.BrickColor = BrickColor.new("Really black")
  674. p4.Name = "Wedge"
  675. p4.FormFactor = Enum.FormFactor.Custom
  676. p4.Size = Vector3.new(3, 1, 0.5)
  677. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  678. p4.CanCollide = false
  679. p4.Locked = true
  680. p4.BottomSurface = Enum.SurfaceType.Smooth
  681. p4.TopSurface = Enum.SurfaceType.Smooth
  682. p5 = Instance.new("Part", m)
  683. p5.BrickColor = BrickColor.new("Really black")
  684. p5.FormFactor = Enum.FormFactor.Custom
  685. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  686. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  687. p5.CanCollide = false
  688. p5.Locked = true
  689. p5.BottomSurface = Enum.SurfaceType.Smooth
  690. p5.TopSurface = Enum.SurfaceType.Smooth
  691. b3 = Instance.new("BlockMesh", p5)
  692. b3.Name = "Mesh"
  693. p6 = Instance.new("Part", m)
  694. p6.BrickColor = BrickColor.new("Really black")
  695. p6.FormFactor = Enum.FormFactor.Custom
  696. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  697. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  698. p6.CanCollide = false
  699. p6.Locked = true
  700. p6.BottomSurface = Enum.SurfaceType.Smooth
  701. p6.TopSurface = Enum.SurfaceType.Smooth
  702. b4 = Instance.new("BlockMesh", p6)
  703. b4.Name = "Mesh"
  704. p7 = Instance.new("Part", m)
  705. p7.BrickColor = BrickColor.new("Really black")
  706. p7.FormFactor = Enum.FormFactor.Custom
  707. p7.Size = Vector3.new(3, 1, 1.20000005)
  708. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  709. p7.CanCollide = false
  710. p7.Locked = true
  711. p7.BottomSurface = Enum.SurfaceType.Smooth
  712. p7.TopSurface = Enum.SurfaceType.Smooth
  713. b5 = Instance.new("BlockMesh", p7)
  714. b5.Name = "Mesh"
  715. p8 = Instance.new("Part", m)
  716. p8.BrickColor = BrickColor.new("Really red")
  717. p8.FormFactor = Enum.FormFactor.Symmetric
  718. p8.Size = Vector3.new(1, 1, 1)
  719. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  720. p8.CanCollide = false
  721. p8.Locked = true
  722. b6 = Instance.new("SpecialMesh", p8)
  723. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  724. b6.TextureId = ""
  725. b6.MeshType = Enum.MeshType.FileMesh
  726. b6.Name = "Mesh"
  727. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  728. p9 = Instance.new("Part", m)
  729. p9.BrickColor = BrickColor.new("Really black")
  730. p9.FormFactor = Enum.FormFactor.Custom
  731. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  732. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  733. p9.CanCollide = false
  734. p9.Locked = true
  735. p9.BottomSurface = Enum.SurfaceType.Smooth
  736. p9.TopSurface = Enum.SurfaceType.Smooth
  737. b7 = Instance.new("BlockMesh", p9)
  738. b7.Name = "Mesh"
  739. p10 = Instance.new("Part", m)
  740. p10.BrickColor = BrickColor.new("Really red")
  741. p10.FormFactor = Enum.FormFactor.Symmetric
  742. p10.Size = Vector3.new(1, 1, 1)
  743. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  744. p10.CanCollide = false
  745. p10.Locked = true
  746. b8 = Instance.new("SpecialMesh", p10)
  747. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  748. b8.TextureId = ""
  749. b8.MeshType = Enum.MeshType.FileMesh
  750. b8.Name = "Mesh"
  751. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  752. p11 = Instance.new("Part", m)
  753. p11.BrickColor = BrickColor.new("Really black")
  754. p11.FormFactor = Enum.FormFactor.Custom
  755. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  756. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  757. p11.CanCollide = false
  758. p11.Locked = true
  759. p11.BottomSurface = Enum.SurfaceType.Smooth
  760. p11.TopSurface = Enum.SurfaceType.Smooth
  761. b9 = Instance.new("BlockMesh", p11)
  762. b9.Name = "Mesh"
  763. p12 = Instance.new("Part", m)
  764. p12.BrickColor = BrickColor.new("Really black")
  765. p12.FormFactor = Enum.FormFactor.Custom
  766. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  767. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  768. p12.CanCollide = false
  769. p12.Locked = true
  770. p12.BottomSurface = Enum.SurfaceType.Smooth
  771. p12.TopSurface = Enum.SurfaceType.Smooth
  772. b10 = Instance.new("BlockMesh", p12)
  773. b10.Name = "Mesh"
  774. p13 = Instance.new("Part", m)
  775. p13.BrickColor = BrickColor.new("Really black")
  776. p13.FormFactor = Enum.FormFactor.Custom
  777. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  778. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  779. p13.CanCollide = false
  780. p13.Locked = true
  781. p13.BottomSurface = Enum.SurfaceType.Smooth
  782. p13.TopSurface = Enum.SurfaceType.Smooth
  783. b11 = Instance.new("BlockMesh", p13)
  784. b11.Name = "Mesh"
  785. p14 = Instance.new("Part", m)
  786. p14.BrickColor = BrickColor.new("Really red")
  787. p14.FormFactor = Enum.FormFactor.Symmetric
  788. p14.Size = Vector3.new(1, 1, 1)
  789. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  790. p14.CanCollide = false
  791. p14.Locked = true
  792. b12 = Instance.new("SpecialMesh", p14)
  793. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  794. b12.TextureId = ""
  795. b12.MeshType = Enum.MeshType.FileMesh
  796. b12.Name = "Mesh"
  797. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  798. p15 = Instance.new("Part", m)
  799. p15.BrickColor = BrickColor.new("Medium stone grey")
  800. p15.Transparency = 1
  801. p15.Name = "ArmPart"
  802. p15.FormFactor = Enum.FormFactor.Custom
  803. p15.Size = Vector3.new(2, 1, 1)
  804. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  805. p15.CanCollide = false
  806. p15.Locked = true
  807. p15.BottomSurface = Enum.SurfaceType.Smooth
  808. p15.TopSurface = Enum.SurfaceType.Smooth
  809. b13 = Instance.new("BlockMesh", p15)
  810. b13.Name = "Mesh"
  811. p16 = Instance.new("Part", m)
  812. p16.BrickColor = BrickColor.new("Really black")
  813. p16.FormFactor = Enum.FormFactor.Custom
  814. p16.Size = Vector3.new(3, 1, 2.4000001)
  815. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  816. p16.CanCollide = false
  817. p16.Locked = true
  818. p16.BottomSurface = Enum.SurfaceType.Smooth
  819. p16.TopSurface = Enum.SurfaceType.Smooth
  820. b14 = Instance.new("BlockMesh", p16)
  821. b14.Name = "Mesh"
  822. p17 = Instance.new("Part", m)
  823. p17.BrickColor = BrickColor.new("Really black")
  824. p17.FormFactor = Enum.FormFactor.Custom
  825. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  826. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  827. p17.CanCollide = false
  828. p17.Locked = true
  829. p17.BottomSurface = Enum.SurfaceType.Smooth
  830. p17.TopSurface = Enum.SurfaceType.Smooth
  831. b15 = Instance.new("BlockMesh", p17)
  832. b15.Name = "Mesh"
  833. p18 = Instance.new("Part", m)
  834. p18.BrickColor = BrickColor.new("Really red")
  835. p18.FormFactor = Enum.FormFactor.Symmetric
  836. p18.Size = Vector3.new(1, 1, 1)
  837. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  838. p18.CanCollide = false
  839. p18.Locked = true
  840. b16 = Instance.new("SpecialMesh", p18)
  841. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  842. b16.TextureId = ""
  843. b16.MeshType = Enum.MeshType.FileMesh
  844. b16.Name = "Mesh"
  845. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  846. p19 = Instance.new("Part", m)
  847. p19.BrickColor = BrickColor.new("Really red")
  848. p19.FormFactor = Enum.FormFactor.Symmetric
  849. p19.Size = Vector3.new(1, 1, 1)
  850. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  851. p19.CanCollide = false
  852. p19.Locked = true
  853. b17 = Instance.new("SpecialMesh", p19)
  854. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  855. b17.TextureId = ""
  856. b17.MeshType = Enum.MeshType.FileMesh
  857. b17.Name = "Mesh"
  858. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  859. p20 = Instance.new("Part", m)
  860. p20.BrickColor = BrickColor.new("Really black")
  861. p20.FormFactor = Enum.FormFactor.Custom
  862. p20.Size = Vector3.new(3, 1, 2.4000001)
  863. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  864. p20.CanCollide = false
  865. p20.Locked = true
  866. p20.BottomSurface = Enum.SurfaceType.Smooth
  867. p20.TopSurface = Enum.SurfaceType.Smooth
  868. b18 = Instance.new("BlockMesh", p20)
  869. b18.Name = "Mesh"
  870. p21 = Instance.new("Part", m)
  871. p21.BrickColor = BrickColor.new("Really black")
  872. p21.FormFactor = Enum.FormFactor.Custom
  873. p21.Size = Vector3.new(3, 1, 1.19999993)
  874. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  875. p21.CanCollide = false
  876. p21.Locked = true
  877. p21.BottomSurface = Enum.SurfaceType.Smooth
  878. p21.TopSurface = Enum.SurfaceType.Smooth
  879. b19 = Instance.new("BlockMesh", p21)
  880. b19.Name = "Mesh"
  881. p22 = Instance.new("WedgePart", m)
  882. p22.BrickColor = BrickColor.new("Really black")
  883. p22.Name = "Wedge"
  884. p22.FormFactor = Enum.FormFactor.Custom
  885. p22.Size = Vector3.new(3, 1, 0.5)
  886. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  887. p22.CanCollide = false
  888. p22.Locked = true
  889. p22.BottomSurface = Enum.SurfaceType.Smooth
  890. p22.TopSurface = Enum.SurfaceType.Smooth
  891. p23 = Instance.new("Part", m)
  892. p23.BrickColor = BrickColor.new("Really black")
  893. p23.FormFactor = Enum.FormFactor.Custom
  894. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  895. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  896. p23.CanCollide = false
  897. p23.Locked = true
  898. p23.BottomSurface = Enum.SurfaceType.Smooth
  899. p23.TopSurface = Enum.SurfaceType.Smooth
  900. b20 = Instance.new("BlockMesh", p23)
  901. b20.Name = "Mesh"
  902. p24 = Instance.new("WedgePart", m)
  903. p24.BrickColor = BrickColor.new("Really black")
  904. p24.Name = "Wedge"
  905. p24.FormFactor = Enum.FormFactor.Custom
  906. p24.Size = Vector3.new(3, 1, 0.5)
  907. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  908. p24.CanCollide = false
  909. p24.Locked = true
  910. p24.BottomSurface = Enum.SurfaceType.Smooth
  911. p24.TopSurface = Enum.SurfaceType.Smooth
  912. p25 = Instance.new("Part", m)
  913. p25.BrickColor = BrickColor.new("Really red")
  914. p25.FormFactor = Enum.FormFactor.Symmetric
  915. p25.Size = Vector3.new(1, 1, 1)
  916. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  917. p25.CanCollide = false
  918. p25.Locked = true
  919. p25.BottomSurface = Enum.SurfaceType.Smooth
  920. p25.TopSurface = Enum.SurfaceType.Smooth
  921. b21 = Instance.new("SpecialMesh", p25)
  922. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  923. b21.TextureId = ""
  924. b21.MeshType = Enum.MeshType.FileMesh
  925. b21.Name = "Mesh"
  926. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  927. p26 = Instance.new("Part", m)
  928. p26.BrickColor = BrickColor.new("Really black")
  929. p26.FormFactor = Enum.FormFactor.Symmetric
  930. p26.Size = Vector3.new(1, 1, 1)
  931. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  932. p26.CanCollide = false
  933. p26.Locked = true
  934. p26.BottomSurface = Enum.SurfaceType.Smooth
  935. p26.TopSurface = Enum.SurfaceType.Smooth
  936. b22 = Instance.new("SpecialMesh", p26)
  937. b22.MeshType = Enum.MeshType.Brick
  938. b22.Name = "Mesh"
  939. w1 = Instance.new("Weld", p1)
  940. w1.Name = "Wedge_Weld"
  941. w1.Part0 = p1
  942. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  943. w1.Part1 = p2
  944. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  945. w2 = Instance.new("Weld", p2)
  946. w2.Name = "Part_Weld"
  947. w2.Part0 = p2
  948. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  949. w2.Part1 = p3
  950. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  951. w3 = Instance.new("Weld", p3)
  952. w3.Name = "Wedge_Weld"
  953. w3.Part0 = p3
  954. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  955. w3.Part1 = p4
  956. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  957. w4 = Instance.new("Weld", p4)
  958. w4.Name = "Part_Weld"
  959. w4.Part0 = p4
  960. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  961. w4.Part1 = p5
  962. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  963. w5 = Instance.new("Weld", p5)
  964. w5.Name = "Part_Weld"
  965. w5.Part0 = p5
  966. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  967. w5.Part1 = p6
  968. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  969. w6 = Instance.new("Weld", p6)
  970. w6.Name = "Part_Weld"
  971. w6.Part0 = p6
  972. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  973. w6.Part1 = p7
  974. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  975. w7 = Instance.new("Weld", p7)
  976. w7.Name = "Part_Weld"
  977. w7.Part0 = p7
  978. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  979. w7.Part1 = p8
  980. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  981. w8 = Instance.new("Weld", p8)
  982. w8.Name = "Part_Weld"
  983. w8.Part0 = p8
  984. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  985. w8.Part1 = p9
  986. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  987. w9 = Instance.new("Weld", p9)
  988. w9.Name = "Part_Weld"
  989. w9.Part0 = p9
  990. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  991. w9.Part1 = p10
  992. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  993. w10 = Instance.new("Weld", p10)
  994. w10.Name = "Part_Weld"
  995. w10.Part0 = p10
  996. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  997. w10.Part1 = p11
  998. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  999. w11 = Instance.new("Weld", p11)
  1000. w11.Name = "Part_Weld"
  1001. w11.Part0 = p11
  1002. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1003. w11.Part1 = p12
  1004. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1005. w12 = Instance.new("Weld", p12)
  1006. w12.Name = "Part_Weld"
  1007. w12.Part0 = p12
  1008. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1009. w12.Part1 = p13
  1010. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1011. w13 = Instance.new("Weld", p13)
  1012. w13.Name = "Part_Weld"
  1013. w13.Part0 = p13
  1014. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1015. w13.Part1 = p14
  1016. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1017. w14 = Instance.new("Weld", p14)
  1018. w14.Name = "ArmPart_Weld"
  1019. w14.Part0 = p14
  1020. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1021. w14.Part1 = p15
  1022. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1023. w15 = Instance.new("Weld", p15)
  1024. w15.Name = "Part_Weld"
  1025. w15.Part0 = p15
  1026. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1027. w15.Part1 = p16
  1028. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1029. w16 = Instance.new("Weld", p16)
  1030. w16.Name = "Part_Weld"
  1031. w16.Part0 = p16
  1032. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1033. w16.Part1 = p17
  1034. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1035. w17 = Instance.new("Weld", p17)
  1036. w17.Name = "Part_Weld"
  1037. w17.Part0 = p17
  1038. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1039. w17.Part1 = p18
  1040. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1041. w18 = Instance.new("Weld", p18)
  1042. w18.Name = "Part_Weld"
  1043. w18.Part0 = p18
  1044. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1045. w18.Part1 = p19
  1046. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1047. w19 = Instance.new("Weld", p19)
  1048. w19.Name = "Part_Weld"
  1049. w19.Part0 = p19
  1050. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1051. w19.Part1 = p20
  1052. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1053. w20 = Instance.new("Weld", p20)
  1054. w20.Name = "Part_Weld"
  1055. w20.Part0 = p20
  1056. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1057. w20.Part1 = p21
  1058. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1059. w21 = Instance.new("Weld", p21)
  1060. w21.Name = "Wedge_Weld"
  1061. w21.Part0 = p21
  1062. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1063. w21.Part1 = p22
  1064. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1065. w22 = Instance.new("Weld", p22)
  1066. w22.Name = "Part_Weld"
  1067. w22.Part0 = p22
  1068. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1069. w22.Part1 = p23
  1070. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1071. w23 = Instance.new("Weld", p23)
  1072. w23.Name = "Wedge_Weld"
  1073. w23.Part0 = p23
  1074. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1075. w23.Part1 = p24
  1076. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1077. w24 = Instance.new("Weld", p24)
  1078. w24.Name = "Part_Weld"
  1079. w24.Part0 = p24
  1080. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1081. w24.Part1 = p25
  1082. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1083. w25 = Instance.new("Weld", p25)
  1084. w25.Name = "Part_Weld"
  1085. w25.Part0 = p25
  1086. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1087. w25.Part1 = p26
  1088. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1089. m.Parent = char
  1090. m:MakeJoints()
  1091. ----------------------------------------------------
  1092. local cor2 = Instance.new("Part", char.Claw)
  1093. cor2.Name = "Thingy"
  1094. cor2.Locked = true
  1095. cor2.BottomSurface = 0
  1096. cor2.CanCollide = false
  1097. cor2.Size = Vector3.new(2, 1, 1)
  1098. cor2.Transparency = 1
  1099. cor2.TopSurface = 0
  1100. corw2 = Instance.new("Weld", cor2)
  1101. corw2.Part0 = larm
  1102. corw2.Part1 = cor2
  1103. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1104. corw2.C1 = CFrame.new(0, 0, 0)
  1105. weld2 = Instance.new("Weld", char.Claw)
  1106. weld2.Part0 = cor2
  1107. weld2.Part1 = char.Claw.ArmPart
  1108. weld2.C0 = CFrame.new(0, 0, 0)
  1109. ----------------------------------------------------
  1110. function weld5(part0, part1, c0, c1)
  1111.     weeld=Instance.new("Weld", part0)
  1112.     weeld.Part0=part0
  1113.     weeld.Part1=part1
  1114.     weeld.C0=c0
  1115.     weeld.C1=c1
  1116.     return weeld
  1117. end
  1118. ----------------------------------------------------
  1119. function newRay(start,face,range,wat)
  1120.         local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1121.         hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1122.         return rey,hit,pos
  1123. end
  1124. ----------------------------------------------------
  1125. mod5 = Instance.new("Model",char)
  1126.  
  1127. function FindNearestTorso(Position,Distance,SinglePlayer)
  1128.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1129.         local List = {}
  1130.         for i,v in pairs(workspace:GetChildren())do
  1131.             if v:IsA("Model")then
  1132.                 if v:findFirstChild("Torso")then
  1133.                     if v ~= char then
  1134.                         if(v.Torso.Position -Position).magnitude <= Distance then
  1135.                             table.insert(List,v)
  1136.                         end
  1137.                     end
  1138.                 end
  1139.             end
  1140.         end
  1141.     return List
  1142. end
  1143.  
  1144. function Landing()
  1145.     part=Instance.new('Part',mod5)
  1146.     part.Anchored=true
  1147.     part.CanCollide=false
  1148.     part.FormFactor='Custom'
  1149.     part.Size=Vector3.new(.2,.2,.2)
  1150.     part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1151.     part.Transparency=.7
  1152.     part.BrickColor=BrickColor.new('Really black')
  1153.     mesh=Instance.new('SpecialMesh',part)
  1154.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1155.     mesh.Scale=Vector3.new(10,5,10)
  1156.  
  1157.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1158.         if v:FindFirstChild('Humanoid') then
  1159.             v.Humanoid:TakeDamage(math.random(20,30))
  1160.             v.Humanoid.PlatformStand = true
  1161.             v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1162.         end
  1163.     end
  1164.  
  1165.     coroutine.resume(coroutine.create(function()
  1166.         for i=0,3.8,0.05 do
  1167.             wait()
  1168.             part.CFrame=part.CFrame
  1169.             part.Transparency=i
  1170.             mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1171.             end
  1172.         part.Parent = nil
  1173.     end))
  1174. end
  1175. ----------------------------------------------------
  1176. mod4 = Instance.new("Model",char)
  1177.  
  1178. ptez = {0.7, 0.8, 0.9, 1}
  1179.  
  1180. function FindNearestTorso(Position,Distance,SinglePlayer)
  1181.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1182.         local List = {}
  1183.         for i,v in pairs(workspace:GetChildren())do
  1184.             if v:IsA("Model")then
  1185.                 if v:findFirstChild("Torso")then
  1186.                     if v ~= char then
  1187.                         if(v.Torso.Position -Position).magnitude <= Distance then
  1188.                             table.insert(List,v)
  1189.                         end
  1190.                     end
  1191.                 end
  1192.             end
  1193.         end
  1194.     return List
  1195. end
  1196.  
  1197. function GroundPound()
  1198.     part=Instance.new('Part',mod4)
  1199.     part.Anchored=true
  1200.     part.CanCollide=false
  1201.     part.FormFactor='Custom'
  1202.     part.Size=Vector3.new(.2,.2,.2)
  1203.     part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1204.     part.Transparency=.7
  1205.     part.BrickColor=BrickColor.new('Really black')
  1206.     mesh=Instance.new('SpecialMesh',part)
  1207.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1208.     mesh.Scale=Vector3.new(3,3,3)
  1209.     part2=Instance.new('Part',mod4)
  1210.     part2.Anchored=true
  1211.     part2.CanCollide=false
  1212.     part2.FormFactor='Custom'
  1213.     part2.Size=Vector3.new(.2,.2,.2)
  1214.     part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1215.     part2.Transparency=.7
  1216.     part2.BrickColor=BrickColor.new('Really red')
  1217.     mesh2=Instance.new('SpecialMesh',part2)
  1218.     mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1219.     mesh2.Scale=Vector3.new(3,1.5,3)
  1220.     x = Instance.new("Sound",char)
  1221.     x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1222.     x.Pitch = ptez[math.random(1,#ptez)]
  1223.     x.Volume = 1
  1224.     wait(.1)
  1225.     x:Play()
  1226.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1227.         if v:FindFirstChild('Humanoid') then
  1228.             v.Humanoid:TakeDamage(math.random(8,15))
  1229.         end
  1230.     end
  1231.     coroutine.resume(coroutine.create(function()
  1232.         for i=0,0.62,0.13 do
  1233.             wait()
  1234.             part.CFrame=part.CFrame
  1235.             part.Transparency=i
  1236.             mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1237.             part2.CFrame=part2.CFrame
  1238.             part2.Transparency=i
  1239.             mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1240.             end
  1241.         part.Parent=nil
  1242.         part2.Parent=nil
  1243.         x:Destroy()
  1244.     end))
  1245. end
  1246. ----------------------------------------------------
  1247. mod=Instance.new('Model',char)
  1248.  
  1249. function charge()
  1250.     hed.Velocity=hed.CFrame.lookVector*200
  1251.     part=Instance.new('Part',mod)
  1252.     part.Anchored=true
  1253.     part.CanCollide=false
  1254.     part.FormFactor='Custom'
  1255.     part.Size=Vector3.new(.2,.2,.2)
  1256.     part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1257.     part.Transparency=.7
  1258.     part.BrickColor=BrickColor.new('Black')
  1259.     mesh=Instance.new('SpecialMesh',part)
  1260.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1261.     mesh.Scale=Vector3.new(10,5,10)
  1262.     part2=part:clone()
  1263.     part2.Parent=mod
  1264.     part2.BrickColor=BrickColor.new('Really red')
  1265.     mesh2=mesh:clone()
  1266.     mesh2.Parent=part2
  1267.     mesh2.Scale=Vector3.new(20,10,20)
  1268.     part3=part2:clone()
  1269.     part3.Parent = mod
  1270.     part3.BrickColor=BrickColor.new('Really black')
  1271.     mesh3=mesh2:clone()
  1272.     mesh2.Parent=part3
  1273.     mesh3.Scale=Vector3.new(30,15,30)
  1274.     coroutine.resume(coroutine.create(function()
  1275.         for i=0,1,0.1 do
  1276.             wait()
  1277.             part.CFrame=part.CFrame
  1278.             part.Transparency=i
  1279.             mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1280.             part2.CFrame=part2.CFrame
  1281.             part2.Transparency=i
  1282.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1283.             part3.CFrame=part3.CFrame
  1284.             part3.Transparency=i
  1285.             mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1286.             end
  1287.         part.Parent=nil
  1288.         part2.Parent=nil
  1289.         part3.Parent = nil
  1290.     end))
  1291. end
  1292. ----------------------------------------------------
  1293. function FindNearestTorso(Position,Distance,SinglePlayer)
  1294.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1295.         local List = {}
  1296.         for i,v in pairs(workspace:GetChildren())do
  1297.             if v:IsA("Model")then
  1298.                 if v:findFirstChild("Torso")then
  1299.                     if v ~= char then
  1300.                         if(v.Torso.Position -Position).magnitude <= Distance then
  1301.                             table.insert(List,v)
  1302.                         end
  1303.                     end
  1304.                 end
  1305.             end
  1306.         end
  1307.     return List
  1308. end
  1309.  
  1310. mod3 = Instance.new("Model",rleg)
  1311.  
  1312. function Stomp()
  1313.     part=Instance.new('Part',mod3)
  1314.     part.Anchored=true
  1315.     part.CanCollide=false
  1316.     part.FormFactor='Custom'
  1317.     part.Size=Vector3.new(.2,.2,.2)
  1318.     part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1319.     part.Transparency=.7
  1320.     part.BrickColor=BrickColor.new('Bright green')
  1321.     mesh=Instance.new('SpecialMesh',part)
  1322.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1323.     mesh.Scale=Vector3.new(25,25,25)
  1324.     part2=part:clone()
  1325.     part2.Parent=mod3
  1326.     part2.BrickColor=BrickColor.new('Bright green')
  1327.     mesh2=mesh:clone()
  1328.     mesh2.Parent=part2
  1329.     mesh2.Scale=Vector3.new(15,15,15)
  1330.     part3=part:clone()
  1331.     part3.Parent=mod3
  1332.     part3.TopSurface=0
  1333.     part3.BottomSurface=0
  1334.     part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1335.     mesh3=Instance.new('SpecialMesh',part3)
  1336.     mesh3.MeshType = 3
  1337.     mesh3.Scale=Vector3.new(12,12,12)
  1338.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1339.         if v:FindFirstChild('Humanoid') then
  1340.             v.Humanoid:TakeDamage(math.random(20,60))
  1341.             v.Humanoid.PlatformStand = true
  1342.             v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1343.         end
  1344.     end
  1345.     coroutine.resume(coroutine.create(function()
  1346.         for i=0,3.8,0.05 do
  1347.             wait()
  1348.             part.CFrame=part.CFrame
  1349.             part.Transparency=i
  1350.             mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1351.             part2.CFrame=part2.CFrame
  1352.             part2.Transparency=i
  1353.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1354.             part3.CFrame=part3.CFrame
  1355.             part3.Transparency=i
  1356.             mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1357.         end
  1358.     end))
  1359. end
  1360. ----------------------------------------------------
  1361.  
  1362. local acos = math.acos
  1363. local sqrt = math.sqrt
  1364. local Vec3 = Vector3.new
  1365. local fromAxisAngle = CFrame.fromAxisAngle
  1366.  
  1367. local function toAxisAngle(CFr)
  1368.         local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1369.         local Angle = math.acos((R00+R11+R22-1)/2)
  1370.         local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1371.         A = A == 0 and 0.00001 or A
  1372.         local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1373.         B = B == 0 and 0.00001 or B
  1374.         local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1375.         C = C == 0 and 0.00001 or C
  1376.         local x = (R21-R12)/sqrt(A)
  1377.         local y = (R02-R20)/sqrt(B)
  1378.         local z = (R10-R01)/sqrt(C)
  1379.         return Vec3(x,y,z),Angle
  1380. end
  1381.  
  1382. function ApplyTrig(Num,Func)
  1383.         local Min,Max = Func(0),Func(1)
  1384.         local i = Func(Num)
  1385.         return (i-Min)/(Max-Min)
  1386.         --[[if Func == "sin" then
  1387.                 return (math.sin((1-Num)*math.pi)+1)/2
  1388.         elseif Func == "cos" then
  1389.                 return (math.cos((1-Num)*math.pi)+1)/2
  1390.         end]]
  1391. end
  1392.  
  1393. function LerpCFrame(CFrame1,CFrame2,Num)
  1394.         local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1395.         return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1396. end
  1397.  
  1398. function Crater(Torso,Radius)
  1399.         Spawn(function()
  1400.         local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1401.         local Ignore = {}
  1402.         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1403.                 if v.Character ~= nil then
  1404.                         Ignore[#Ignore+1] = v.Character
  1405.                 end
  1406.         end
  1407.         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1408.         if Hit == nil then return end
  1409.         local Parts = {}
  1410.         for i = 1,360,10 do
  1411.                 local P = Instance.new("Part",Torso.Parent)
  1412.                 P.Anchored = true
  1413.                 P.FormFactor = "Custom"
  1414.                 P.BrickColor = Hit.BrickColor
  1415.                 P.Material = Hit.Material
  1416.                 P.TopSurface = "Smooth"
  1417.                 P.BottomSurface = "Smooth"
  1418.                 P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1419.                 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)))
  1420.                 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}
  1421.                 if math.random(0,5) == 0 then -- rubble
  1422.                         local P = Instance.new("Part",Torso.Parent)
  1423.                         P.Anchored = true
  1424.                         P.FormFactor = "Custom"
  1425.                         P.BrickColor = Hit.BrickColor
  1426.                         P.Material = Hit.Material
  1427.                         P.TopSurface = "Smooth"
  1428.                         P.BottomSurface = "Smooth"
  1429.                         P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1430.                         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)))
  1431.                         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}
  1432.                 end
  1433.         end
  1434.         for i = 0,1,0.05 do
  1435.                 for i2,v in pairs(Parts) do
  1436.                         v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1437.                 end
  1438.                 wait(0.02)
  1439.         end
  1440.         for i,v in pairs(Parts) do
  1441.                 if v[1].Size.X > 2.1 then
  1442.                         v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1443.                 end
  1444.                 v[1].Anchored = false
  1445.         end
  1446.         for i = 0,1,0.05 do
  1447.                 for i2,v in pairs(Parts) do
  1448.                         v[1].Transparency = i
  1449.                         if i == 1 then
  1450.                                 v[1]:Destroy()
  1451.                         elseif i >= 0.25 then
  1452.                                 v[1].CanCollide = false
  1453.                         end
  1454.                 end
  1455.                 wait(0.02)
  1456.         end
  1457.         Parts = nil
  1458.         end)
  1459. end
  1460.  
  1461. ----------------------------------------------------
  1462. mouse.KeyDown:connect(function(key)
  1463.     if key == "r" then
  1464.         larm.BrickColor = BrickColor.new("Really red")
  1465.         rarm.BrickColor = BrickColor.new("Really red")
  1466.         if Debounces.CanAttack == true then
  1467.         Debounces.CanAttack = false
  1468.         Debounces.on = true
  1469.         Debounces.NoIdl = true
  1470. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1471.         hit = ht.Parent
  1472.         if ht and hit:IsA("Model") then
  1473.                 if hit:FindFirstChild("Humanoid") then
  1474.                     if hit.Name ~= p.Name then
  1475.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1476.                                 Debounces.Slashed = true]]--
  1477.                                     hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1478.                                 wait(1)
  1479.                                 --Debounces.Slashed = false
  1480.                         --end
  1481.                     end
  1482.                 end
  1483.         elseif ht and hit:IsA("Hat") then
  1484.             if hit.Parent.Name ~= p.Name then
  1485.                 if hit.Parent:FindFirstChild("Humanoid") then
  1486.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1487.                                 Debounces.Slashed = true]]--
  1488.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1489.                                 wait(1)
  1490.                     --Debounces.Slashed = false
  1491.                 end
  1492.             end
  1493.         end    
  1494.     end)
  1495. q = Instance.new("Sound",hed)
  1496. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1497. q.Pitch = 0.85
  1498. q.Looped = false
  1499. q1 = Instance.new("Sound",hed)
  1500. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1501. q1.Pitch = 0.85
  1502. q1.Looped = false
  1503. q:Play()
  1504. q1:Play()
  1505.     for i = 1,20 do
  1506.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1507.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1508.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1509.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1510.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1511.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1512.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1513.         if Debounces.on == false then break end
  1514.     wait()
  1515. end
  1516. n = Instance.new("Sound",hed)
  1517. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1518. n.Pitch = 0.94
  1519. n.Looped = false
  1520. n1 = Instance.new("Sound",hed)
  1521. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1522. n1.Pitch = 0.94
  1523. n1.Looped = false
  1524. n:Play()
  1525. n1:Play()
  1526. b = Instance.new("Sound",hed)
  1527. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1528. b.Pitch = 0.94
  1529. b.Looped = false
  1530. b1 = Instance.new("Sound",hed)
  1531. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1532. b1.Pitch = 0.94
  1533. b1.Looped = false
  1534. b:Play()
  1535. b1:Play()
  1536.     for i = 1,26 do
  1537.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1538.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1539.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1540.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1541.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1542.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1543.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1544.         if Debounces.on == false then break end
  1545.     wait()
  1546. end
  1547. wait(.5)
  1548. to:disconnect()
  1549. q:Destroy()
  1550. q1:Destroy()
  1551. n:Destroy()
  1552. n1:Destroy()
  1553. larm.BrickColor = BrickColor.new("Really black")
  1554. rarm.BrickColor = BrickColor.new("Really black")
  1555.     if Debounces.CanAttack == false then
  1556.         Debounces.CanAttack = true
  1557.         Debounces.on = false
  1558.         Debounces.NoIdl = false
  1559.             end
  1560.         end
  1561.     end
  1562. end)
  1563. ----------------------------------------------------
  1564. mouse.KeyDown:connect(function(key)
  1565.     if key == "q" then
  1566.         larm.BrickColor = BrickColor.new("Really red")
  1567.         rarm.BrickColor = BrickColor.new("Really red")
  1568.         if Debounces.CanAttack == true then
  1569.         Debounces.CanAttack = false
  1570.         Debounces.on = true
  1571.         Debounces.NoIdl = true
  1572. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1573.         hit = ht.Parent
  1574.         if ht and hit:IsA("Model") then
  1575.                 if hit:FindFirstChild("Humanoid") then
  1576.                     if hit.Name ~= p.Name then
  1577.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1578.                                 Debounces.Slashed = true]]--
  1579.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1580.                                 wait(1)
  1581.                                 --Debounces.Slashed = false
  1582.                         --end
  1583.                     end
  1584.                 end
  1585.         elseif ht and hit:IsA("Hat") then
  1586.             if hit.Parent.Name ~= p.Name then
  1587.                 if hit.Parent:FindFirstChild("Humanoid") then
  1588.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1589.                                 Debounces.Slashed = true]]--
  1590.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1591.                                 wait(1)
  1592.                     --Debounces.Slashed = false
  1593.                 end
  1594.             end
  1595.         end    
  1596.     end)
  1597.         for i = 1, 20 do
  1598.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1599.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1600.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1601.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1602.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1603.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1604.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1605.         if Debounces.on == false then break end
  1606.         wait()
  1607.     end
  1608.     z = Instance.new("Sound",hed)
  1609.     z.SoundId = "rbxassetid://160069154"
  1610.     z.Looped = false
  1611.     z.Pitch = .9
  1612.     z1 = Instance.new("Sound",hed)
  1613.     z1.SoundId = "rbxassetid://160069154"
  1614.     z1.Looped = false
  1615.     z1.Pitch = .9
  1616.     wait(0.01)
  1617.     z:Play()
  1618.     z1:Play()
  1619.         for i = 1, 12 do
  1620.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1621.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1622.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1623.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1624.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1625.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1626.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1627.         if Debounces.on == false then break end
  1628.         wait()
  1629.     end
  1630.         for i = 1, 12 do
  1631.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1632.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1633.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1634.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1635.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1636.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1637.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1638.         if Debounces.on == false then break end
  1639.         wait()
  1640.     end
  1641.     z = Instance.new("Sound",hed)
  1642.     z.SoundId = "rbxassetid://168586621"
  1643.     z.Looped = false
  1644.     z.Pitch = 1
  1645.     z1 = Instance.new("Sound",hed)
  1646.     z1.SoundId = "rbxassetid://168586621"
  1647.     z1.Looped = false
  1648.     z1.Pitch = 1
  1649.     wait(0.01)
  1650.     z:Play()
  1651.     z1:Play()
  1652.         for i = 1, 12 do
  1653.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1654.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1655.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1656.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1657.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1658.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1659.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1660.         if Debounces.on == false then break end
  1661.         wait()
  1662.     end
  1663. to:disconnect()
  1664. larm.BrickColor = BrickColor.new("Really black")
  1665. rarm.BrickColor = BrickColor.new("Really black")
  1666.     if Debounces.CanAttack == false then
  1667.         Debounces.CanAttack = true
  1668.         Debounces.on = false
  1669.         Debounces.NoIdl = false
  1670.             end
  1671.         end
  1672.     end
  1673. end)
  1674. ----------------------------------------------------
  1675. Sit = false
  1676. mouse.KeyDown:connect(function(key)
  1677.     if key == "v" then
  1678.         if Sit == false then
  1679.             Sit = true
  1680.             hum.WalkSpeed = 0.0001
  1681.         stanceToggle = "Sitting"
  1682.     elseif Sit == true then
  1683.         Sit = false
  1684.             hum.WalkSpeed = 30
  1685.         stanceToggle = "Normal"
  1686.         end
  1687.     end
  1688. end)
  1689. ----------------------------------------------------
  1690. mouse.KeyDown:connect(function(key)
  1691.     if key == "t" then
  1692.         if Debounces.CanAttack == true then
  1693.         Debounces.CanAttack = false
  1694.         Debounces.on = true
  1695.         Debounces.NoIdl = true
  1696.         for i = 1, 20 do
  1697.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1698.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1699.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1700.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1701.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1702.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1703.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1704.             if Debounces.on == false then break end
  1705.             wait()
  1706.         end
  1707.         Spawn(function()
  1708.             local Parts = {}
  1709.             for Y = -5,5 do
  1710.                 local P = Instance.new("Part",char)
  1711.                 P.Anchored = true
  1712.                 P.FormFactor = "Custom"
  1713.                 P.CanCollide = false
  1714.                 P.Size = Vector3.new(1,2,1)
  1715.                 P.TopSurface = "SmoothNoOutlines"
  1716.                 P.BottomSurface = "SmoothNoOutlines"
  1717.                 P.BrickColor = BrickColor.new("Really black")
  1718.                 P.Name = tostring(Y)
  1719.                 local i = (Y+5)/(10)
  1720.                 i = 1-math.cos(math.pi*i-(math.pi/2))
  1721.                 P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1722.                 --[[P.Touched:connect(function(ht)
  1723.                     local hit = ht.Parent
  1724.                     if hit:FindFirstChild("Humanoid") then
  1725.                         hit.Humanoid:TakeDamage(math.random(20,50))
  1726.                     end
  1727.                 end)]]--
  1728.         s = Instance.new("Sound",P)
  1729.         s.SoundId = "rbxassetid://228343271"
  1730.         s.Volume = .7
  1731.         s.Pitch = 0.9
  1732.         s:Play()
  1733. P.Touched:connect(function(ht)
  1734.         hit = ht.Parent
  1735.         if ht and hit:IsA("Model") then
  1736.                 if hit:FindFirstChild("Humanoid") then
  1737.                     if hit.Name ~= p.Name then
  1738.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1739.                                 Debounces.Slashed = true]]--
  1740.                                     hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  1741.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  1742.                                 wait(1)
  1743.                                 --Debounces.Slashed = false
  1744.                         --end
  1745.                 end
  1746.                 end
  1747.         elseif ht and hit:IsA("Hat") then
  1748.             if hit.Parent.Name ~= p.Name then
  1749.                 if hit.Parent:FindFirstChild("Humanoid") then
  1750.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1751.                                 Debounces.Slashed = true]]--
  1752.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  1753.                                 hit:FindFirstChild("Humanoid").PlatformStand = true
  1754.                                 wait(1)
  1755.                     --Debounces.Slashed = false
  1756.                 --end
  1757.             end
  1758.         end
  1759.     end
  1760. end)
  1761.                 Parts[#Parts+1] = P
  1762.             end
  1763.             local BREAKIT = false
  1764.             local CParts = {}
  1765.             local Rocks = {}
  1766.             local LastPos = nil
  1767.             for i = 1,70 do
  1768.                 for i2,v in pairs(Parts) do
  1769.                     v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1770.                     local cf = v.CFrame
  1771.                     v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1772.                     v.CFrame = cf
  1773.                     v.Transparency = v.Transparency+0.02
  1774.                     if v.Transparency >= 0.975 then BREAKIT = true end
  1775.                     if v.Name == "0" then
  1776.                         local Ignore = {}
  1777.                         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1778.                             if v.Character ~= nil then
  1779.                                 Ignore[#Ignore+1] = v.Character
  1780.                             end
  1781.                         end
  1782.                         local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1783.                         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1784.                         if Hit ~= nil then
  1785.                             if #Rocks == 0 then
  1786.                                 for i = 1,5 do
  1787.                                     local P = Instance.new("Part",char)
  1788.                                     Rocks[#Rocks+1] = P
  1789.                                     P.Anchored = true
  1790.                                     P.FormFactor = "Custom"
  1791.                                     P.BrickColor = Hit.BrickColor
  1792.                                     P.Material = Hit.Material
  1793.                                     P.TopSurface = "Smooth"
  1794.                                     P.BottomSurface = "Smooth"
  1795.                                     P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1796.                                 end
  1797.                             end
  1798.                             for i,P in pairs(Rocks) do
  1799.                                 P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1800.                             end
  1801.                             local P = Instance.new("Part",char)
  1802.                             CParts[#CParts+1] = {P,tick()}
  1803.                             P.Anchored = true
  1804.                             P.FormFactor = "Custom"
  1805.                             P.BrickColor = Hit.BrickColor
  1806.                             P.Material = Hit.Material
  1807.                             P.TopSurface = "Smooth"
  1808.                             P.BottomSurface = "Smooth"
  1809.                             P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1810.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1811.                             Pos = Pos.p
  1812.                             P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1813.                             local P = P:Clone()
  1814.                             CParts[#CParts+1] = {P,tick()}
  1815.                             P.Parent = char
  1816.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1817.                             Pos = Pos.p
  1818.                             P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  1819.                             if LastPos ~= nil then
  1820.                                 local P = P:Clone()
  1821.                                 CParts[#CParts+1] = {P,tick()}
  1822.                                 P.Parent = char
  1823.                                 P.BrickColor = BrickColor.new("Really black")
  1824.                                 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1825.                                 Pos = Pos.p
  1826.                                 local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1827.                                 P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1828.                                 --P.Velocity = Vector3.new(0,-1000,0)
  1829.                                 P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1830.                             end
  1831.                             LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1832.                         end
  1833.                     end
  1834.                 end
  1835.                 if BREAKIT then break end
  1836.                 wait(0.002)
  1837.             end
  1838.             for i,v in pairs(Rocks) do
  1839.                 CParts[#CParts+1] = {v,tick()}
  1840.             end
  1841.             for i,v in pairs(Parts) do
  1842.                 v:Destroy()
  1843.             end
  1844.             Parts = nil
  1845.             while true do
  1846.                 local t = tick()
  1847.                 local p = nil
  1848.                 for i,v in pairs(CParts) do
  1849.                     if t-v[2] > 4 then
  1850.                         v[1].Transparency = v[1].Transparency+0.05
  1851.                         if v[1].Transparency >= 1 then
  1852.                             v[1]:Destroy()
  1853.                             CParts[i] = nil
  1854.                         end
  1855.                     end
  1856.                     p = v
  1857.                 end
  1858.                 if p == nil then break end
  1859.                 wait(0.002)
  1860.             end
  1861.             for i,v in pairs(CParts) do
  1862.                 v:Destroy()
  1863.             end
  1864.             CParts = {}
  1865.         end)
  1866.         for i = 1, 20 do
  1867.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  1868.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  1869.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  1870.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1871.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1872.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1873.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1874.             if Debounces.on == false then break end
  1875.             wait()
  1876.         end
  1877.     if Debounces.CanAttack == false then
  1878.         Debounces.CanAttack = true
  1879.         Debounces.on = false
  1880.         Debounces.NoIdl = false
  1881.             end
  1882.         end
  1883.     end
  1884. end)
  1885. ----------------------------------------------------
  1886. mouse.KeyDown:connect(function(key)
  1887.     if key == "e" then
  1888.     larm.BrickColor = BrickColor.new("Really red")
  1889.     rarm.BrickColor = BrickColor.new("Really red")
  1890.         if Debounces.CanAttack == true then
  1891.         Debounces.CanAttack = false
  1892.         Debounces.on = true
  1893.         Debounces.NoIdl = true
  1894.         for i = 1, 18 do
  1895.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  1896.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  1897.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1898.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1899.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1900.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1901.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1902.         if Debounces.on == false then break end
  1903.             wait()
  1904.         end
  1905.         local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1906.         local rng = Instance.new("Part", char.Absolution.Handle)
  1907.         rng.Anchored = true
  1908.         rng.BrickColor = BrickColor.new("Really black")
  1909.         rng.CanCollide = true
  1910.         rng.FormFactor = 3
  1911.         rng.Name = "Ring"
  1912.         rng.Size = Vector3.new(1, 1, 1)
  1913.         rng.CanCollide = false
  1914.         rng.Transparency = 0.35
  1915.         rng.TopSurface = 0
  1916.         rng.BottomSurface = 0
  1917.         rng.CFrame = HandCF
  1918.         local rngm = Instance.new("SpecialMesh", rng)
  1919.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1920.         rngm.Scale = Vector3.new(1, 1, 2)
  1921.             x = Instance.new("Sound", hed)
  1922.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1923.             x.Looped = false
  1924.             x.Pitch = .7
  1925.             x.Volume = 1
  1926.             x1 = Instance.new("Sound", hed)
  1927.             x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1928.             x1.Looped = false
  1929.             x1.Pitch = .7
  1930.             x1.Volume = 1
  1931.             x:Play()
  1932.             x1:Play()
  1933.             rngto = rng.Touched:connect(function(ht)
  1934.             hit = ht.Parent
  1935.             if ht and hit:IsA("Model") then
  1936.                     if hit:FindFirstChild("Humanoid") then
  1937.                         if hit.Name ~= p.Name then
  1938.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1939.                                     Debounces.Slashed = true]]--
  1940.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1941.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  1942.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  1943.                                     --Debounces.Slashed = false
  1944.                             --end
  1945.                         end
  1946.                     end
  1947.             elseif ht and hit:IsA("Hat") then
  1948.                 if hit.Parent.Name ~= p.Name then
  1949.                     if hit.Parent:FindFirstChild("Humanoid") then
  1950.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1951.                                     Debounces.Slashed = true]]--
  1952.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1953.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  1954.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  1955.                         --Debounces.Slashed = false
  1956.                     end
  1957.                 end
  1958.             end    
  1959.         end)
  1960.                 coroutine.wrap(function()
  1961.                 for i = 1, 60, 2 do
  1962.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  1963.                 rng.Size = rngm.Scale
  1964.                 rng.CFrame = HandCF
  1965.                 rng.Transparency = i/60
  1966.                 wait()
  1967.                 end
  1968.                 wait()
  1969.                 rng:Destroy()
  1970.                 end)()
  1971.         for i = 1, 18 do
  1972.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  1973.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  1974.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1975.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1976.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1977.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1978.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1979.         if Debounces.on == false then break end
  1980.             wait()
  1981.         end
  1982.         larm.BrickColor = BrickColor.new("Really black")
  1983.         rarm.BrickColor = BrickColor.new("Really black")
  1984.         x:Destroy()
  1985.         x1:Destroy()
  1986.     if Debounces.CanAttack == false then
  1987.         Debounces.CanAttack = true
  1988.         Debounces.on = false
  1989.         Debounces.NoIdl = false
  1990.             end
  1991.         end
  1992.     end
  1993. end)
  1994. ----------------------------------------------------
  1995. mouse.KeyDown:connect(function(key)
  1996.         if key == "y" then
  1997.                 if Debounces.CanAttack == true then
  1998.             Debounces.CanAttack = false
  1999.             Debounces.on = true
  2000.             Debounces.NoIdl = true
  2001.                                 for i = 1, 15 do
  2002.                                         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2003.                                         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2004.                                         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2005.                                         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2006.                                         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2007.                                         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2008.                                         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2009.                     if Debounces.on == false then break end
  2010.                     wait()
  2011.                 end
  2012.                                 x = Instance.new("Sound",char)
  2013.                                 x.SoundId = "rbxassetid://228343271"
  2014.                                 x.Pitch = 1
  2015.                                 x.Volume = .8
  2016.                                 wait(.1)
  2017.                                 x:Play()
  2018.                                 Debounces.on = false
  2019.                                 Debounces.Here = false
  2020.                                 shot = shot + 1
  2021. local rng = Instance.new("Part", char)
  2022. rng.Anchored = true
  2023. rng.BrickColor = BrickColor.new("Really black")
  2024. rng.CanCollide = false
  2025. rng.FormFactor = 3
  2026. rng.Name = "Ring"
  2027. rng.Size = Vector3.new(1, 1, 1)
  2028. rng.Transparency = 0.35
  2029. rng.TopSurface = 0
  2030. rng.BottomSurface = 0
  2031. rng2 = rng:clone()
  2032. rng3 = rng2:clone()
  2033. rng4 = rng2:clone()
  2034. local rngm = Instance.new("SpecialMesh", rng)
  2035. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2036. rngm.Scale = Vector3.new(10, 10, 1)
  2037. rngm2 = rngm:clone()
  2038. rngm2.Scale = Vector3.new(5, 5, 1)
  2039. rngm3=rngm2:clone()
  2040. rngm3.Parent = rng3
  2041. rngm3.Scale = Vector3.new(8, 8, 1)
  2042. rngm4 = rngm2:clone()
  2043. rngm4.Parent = rng4
  2044. rngm4.Scale = Vector3.new(6, 6, 1)
  2045. local bem = Instance.new("Part", char)
  2046. bem.Anchored = true
  2047. bem.BrickColor = BrickColor.new("Really black")
  2048. bem.CanCollide = false
  2049. bem.FormFactor = 3
  2050. bem.Name = "Beam" .. shot
  2051. bem.Size = Vector3.new(1, 1, 1)
  2052. bem.Transparency = 0.35
  2053. bem.TopSurface = 0
  2054. bem.BottomSurface = 0
  2055. local bemm = Instance.new("SpecialMesh", bem)
  2056. bemm.MeshType = 4
  2057. bemm.Scale = Vector3.new(1, 4, 4)
  2058. local out = Instance.new("Part", char)
  2059. out.Anchored = true
  2060. out.BrickColor = BrickColor.new("Really black")
  2061. out.CanCollide = false
  2062. out.FormFactor = 3
  2063. out.Name = "Out"
  2064. out.Size = Vector3.new(4, 4, 4)
  2065. out.Transparency = 0.35
  2066. out.TopSurface = 0
  2067. out.BottomSurface = 0
  2068. local outm = Instance.new("SpecialMesh", out)
  2069. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2070. outm.Scale = Vector3.new(4, 4, 4)
  2071. local bnd = Instance.new("Part", char)
  2072. bnd.Anchored = true
  2073. bnd.BrickColor = BrickColor.new("Really black")
  2074. bnd.CanCollide = false
  2075. bnd.FormFactor = 3
  2076. bnd.Name = "Bend"
  2077. bnd.Size = Vector3.new(1, 1, 1)
  2078. bnd.Transparency = 1
  2079. bnd.TopSurface = 0
  2080. bnd.BottomSurface = 0
  2081. local bndm = Instance.new("SpecialMesh", bnd)
  2082. bndm.MeshType = 3
  2083. bndm.Scale = Vector3.new(8, 8, 8)
  2084. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2085. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2086. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2087. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2088. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2089. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2090. Debounces.Shewt = true
  2091. coroutine.wrap(function()
  2092. for i = 1, 20, 0.2 do
  2093. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2094. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2095. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2096. rng.Transparency = i/20
  2097. rng3.Transparency = 1/16
  2098. rng4.Transparency = i/12
  2099. wait()
  2100. end
  2101. wait()
  2102. rng:Destroy()
  2103. end)()
  2104. if Debounces.Shewt == true then
  2105. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2106. hit = ht.Parent
  2107. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2108. if HasntTouched(hit.Name) == true and deb == false then
  2109. deb = true
  2110. coroutine.wrap(function()
  2111. hit:FindFirstChild("Humanoid").PlatformStand = true
  2112. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2113. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2114. end)()
  2115. table.insert(Touche, hit.Name)
  2116. deb = false
  2117. end
  2118. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2119. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2120. deb = true
  2121. coroutine.wrap(function()
  2122. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2123. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2124. wait(1)
  2125. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2126. end)()
  2127. table.insert(Touche, hit.Parent.Name)
  2128. deb = false
  2129. for i, v in pairs(Touche) do
  2130. print(v)
  2131. end
  2132. end
  2133. end
  2134. end)
  2135. end
  2136. for i = 0, 260, 8 do
  2137. bem.Size = Vector3.new(i, 2, 2)
  2138. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2139. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2140. bnd.Size = Vector3.new(1,1,1)
  2141. bndm.Scale = Vector3.new(8,8,8)
  2142. if i % 10 == 0 then
  2143. local newRng = rng2:Clone()
  2144. newRng.Parent = char
  2145. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2146. local newRngm = rngm2:clone()
  2147. newRngm.Parent=newRng
  2148. coroutine.wrap(function()
  2149. for i = 1, 10, 0.2 do
  2150. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2151. newRng.Transparency = i/10
  2152. wait()
  2153. end
  2154. wait()
  2155. newRng:Destroy()
  2156. end)()
  2157. end
  2158. wait()
  2159. end
  2160. wait()
  2161. Debounces.Shewt = false
  2162. bem:Destroy()
  2163. out:Destroy()
  2164. bnd:Destroy()
  2165. Debounces.Ready = false
  2166. for i, v in pairs(Touche) do
  2167. table.remove(Touche, i)
  2168. end
  2169. wait()
  2170. table.insert(Touche, char.Name)
  2171. Debounces.NoIdl = false
  2172. if Debounces.CanAttack == false then
  2173. Debounces.CanAttack = true
  2174. end
  2175. end
  2176. end
  2177. end)
  2178. ----------------------------------------------------
  2179. sidz = {"231917888", "231917845", "231917806"}
  2180. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2181. mouse.KeyDown:connect(function(key)
  2182.     if key == "f" then
  2183.     larm.BrickColor = BrickColor.new("Really red")
  2184.     rarm.BrickColor = BrickColor.new("Really red")
  2185.         if Debounces.CanAttack == true then
  2186.             Debounces.CanAttack = false
  2187.             Debounces.on = true
  2188.             Debounces.NoIdl = true
  2189.                 for i = 1, 10 do
  2190.                     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.4)
  2191.                     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.4)
  2192.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2193.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2194.                     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)
  2195.                     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)
  2196.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2197.                     if Debounces.on == false then break end
  2198.                     wait()
  2199.                 end
  2200.                 z = Instance.new("Sound",char)
  2201.                 z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2202.                 z.Pitch = ptz[math.random(1,#ptz)]
  2203.                 z.Volume = 1
  2204.                 z1 = Instance.new("Sound",char)
  2205.                 z1.SoundId = z.SoundId
  2206.                 z1.Pitch = z.Pitch
  2207.                 z1.Volume = 1
  2208.                 wait(1)
  2209.                 z:Play()
  2210.                 z1:Play()
  2211.                 Stomp()
  2212.                 for i = 1, 20 do
  2213.                     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.6)
  2214.                     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.6)
  2215.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2216.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2217.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2218.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2219.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2220.                     if Debounces.on == false then break end
  2221.                     wait()
  2222.                 end
  2223.         if Debounces.CanAttack == false then
  2224.             Debounces.CanAttack = true
  2225.             Debounces.on = false
  2226.             Debounces.NoIdl = false
  2227.             larm.BrickColor = BrickColor.new("Really black")
  2228.             rarm.BrickColor = BrickColor.new("Really black")
  2229.             end
  2230.         end
  2231.     end
  2232. end)    
  2233. ----------------------------------------------------
  2234. mouse.KeyDown:connect(function(key)
  2235.     if key == "g" then
  2236.     larm.BrickColor = BrickColor.new("Really red")
  2237.     rarm.BrickColor = BrickColor.new("Really red")
  2238.         if Debounces.CanAttack == true then
  2239.         Debounces.CanAttack = false
  2240.         Debounces.on = true
  2241.         Debounces.NoIdl = true
  2242.         chrg = lleg.Touched:connect(function(ht)
  2243.         hit = ht.Parent
  2244.             if ht and hit:IsA("Model") then
  2245.                     if hit:FindFirstChild("Humanoid") then
  2246.                         if hit.Name ~= p.Name then
  2247.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2248.                                     Debounces.Slashed = true]]--
  2249.                                     hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2250.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  2251.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2252.                                     --Debounces.Slashed = false
  2253.                             --end
  2254.                         end
  2255.                     end
  2256.             elseif ht and hit:IsA("Hat") then
  2257.                 if hit.Parent.Name ~= p.Name then
  2258.                     if hit.Parent:FindFirstChild("Humanoid") then
  2259.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2260.                                     Debounces.Slashed = true]]--
  2261.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2262.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  2263.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2264.                         --Debounces.Slashed = false
  2265.                     end
  2266.                 end
  2267.             end    
  2268.         end)
  2269.         for i = 1, 14 do
  2270.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2271.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2272.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2273.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2274.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2275.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2276.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2277.             if Debounces.on == false then break end
  2278.             wait()
  2279.         end
  2280.         charge()
  2281.         z = Instance.new("Sound",char)
  2282.         z.SoundId = "rbxassetid://200632875"
  2283.         z.Volume = 1
  2284.         z.Pitch = .8
  2285.         z1 = Instance.new("Sound",char)
  2286.         z1.SoundId = "rbxassetid://200632875"
  2287.         z1.Volume = 1
  2288.         z1.Pitch = .9
  2289.         z:Play()
  2290.         z1:Play()
  2291.         wait(1)
  2292.         z:Destroy()
  2293.         z1:Destroy()
  2294.         chrg:disconnect()
  2295.         if Debounces.CanAttack == false then
  2296.             Debounces.CanAttack = true
  2297.             Debounces.on = false
  2298.             Debounces.NoIdl = false
  2299.             larm.BrickColor = BrickColor.new("Really black")
  2300.             rarm.BrickColor = BrickColor.new("Really black")
  2301.             end
  2302.         end
  2303.     end
  2304. end)
  2305. ----------------------------------------------------
  2306. pt = {0.7, 0.8, 0.9}
  2307. mouse.KeyDown:connect(function(key)
  2308.     if key == "h" then
  2309.         if Debounces.CanJoke == true then
  2310.             Debounces.CanJoke = false
  2311.             u = Instance.new("Sound")
  2312.             u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2313.             u.Parent = char
  2314.             u.Looped = false
  2315.             u.Pitch = pt[math.random(1,#pt)]
  2316.             u.Volume = 1
  2317.             u2 = Instance.new("Sound")
  2318.             u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2319.             u2.Parent = char
  2320.             u2.Looped = false
  2321.             u2.Pitch = u.Pitch
  2322.             u2.Volume = 1
  2323.             wait(.01)
  2324.             u:Play()
  2325.             u2:Play()
  2326.             wait(6)
  2327.             u:Destroy()
  2328.             u2:Destroy()
  2329.             if Debounces.CanJoke == false then
  2330.                 Debounces.CanJoke = true
  2331.             end
  2332.         end
  2333.     end
  2334. end)
  2335. ----------------------------------------------------
  2336. mouse.KeyDown:connect(function(key)
  2337.     if key == "j" then
  2338.                         if Debounces.CanJoke == true then
  2339.                                 Debounces.CanJoke = false
  2340.                 z = Instance.new("Sound",char)
  2341.                 z.SoundId = "rbxassetid://135017755"
  2342.                 z.Pitch = .76
  2343.                 z.Volume = 1
  2344.                                 wait()
  2345.                                 z:Play()
  2346.                                 wait(6)
  2347.                                 z:Destroy()
  2348.                         if Debounces.CanJoke == false then
  2349.                                 Debounces.CanJoke = true
  2350.                         end
  2351.                 end
  2352.         end
  2353. end)
  2354. ----------------------------------------------------
  2355. mouse.KeyDown:connect(function(key)
  2356.     if key == "k" then
  2357.                         if Debounces.CanJoke == true then
  2358.                                 Debounces.CanJoke = false
  2359.                 z = Instance.new("Sound",char)
  2360.                 z.SoundId = "rbxassetid://135017578"
  2361.                 z.Pitch = .76
  2362.                 z.Volume = 1
  2363.                                 wait()
  2364.                                 z:Play()
  2365.                                 wait(4)
  2366.                                 z:Destroy()
  2367.                         if Debounces.CanJoke == false then
  2368.                                 Debounces.CanJoke = true
  2369.                         end
  2370.                 end
  2371.         end
  2372. end)
  2373. ----------------------------------------------------
  2374. mouse.KeyDown:connect(function(key)
  2375.     if key == "x" then
  2376.         if Debounces.CanAttack == true then
  2377.             Debounces.CanAttack = false
  2378.             Debounces.NoIdl = true
  2379.             Debounces.on = true
  2380.             Debounces.ks = true
  2381.         for i = 1, 10 do
  2382.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2383.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2384.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2385.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2386.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2387.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2388.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2389.             if Debounces.on == false then break end
  2390.             wait()
  2391.         end
  2392.         z = Instance.new("Sound",hed)
  2393.         z.SoundId = "rbxassetid://169445092"
  2394.         z.Volume = 1
  2395.         wait(0.1)
  2396.         z:Play()
  2397.         kik = rleg.Touched:connect(function(ht)
  2398.         hit = ht.Parent
  2399.             if ht and hit:IsA("Model") then
  2400.                     if hit:FindFirstChild("Humanoid") then
  2401.                         if hit.Name ~= p.Name then
  2402.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2403.                                     Debounces.Slashed = true]]--
  2404.                                     if Debounces.ks==true then
  2405.                                     z = Instance.new("Sound",hed)
  2406.                                     z.SoundId = "rbxassetid://169380525"
  2407.                                     z.Volume = 1
  2408.                                     z:Play()
  2409.                                     Debounces.ks=false
  2410.                                     end
  2411.                                     hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2412.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  2413.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2414.                             --Debounces.Slashed = false
  2415.                         --end
  2416.                     end
  2417.                 end
  2418.             elseif ht and hit:IsA("Hat") then
  2419.                 if hit.Parent.Name ~= p.Name then
  2420.                     if hit.Parent:FindFirstChild("Humanoid") then
  2421.                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2422.                                     Debounces.Slashed = true]]--
  2423.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2424.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  2425.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2426.                             --Debounces.Slashed = false
  2427.                         --end
  2428.                     end
  2429.                 end
  2430.             end    
  2431.         end)
  2432.         for i = 1, 8 do
  2433.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2434.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2435.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2436.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2437.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2438.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2439.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2440.             if Debounces.on == false then break end
  2441.             wait()
  2442.         end
  2443.         kik:disconnect()
  2444.         if Debounces.CanAttack == false then
  2445.             Debounces.CanAttack = true
  2446.             Debounces.on = false
  2447.             Debounces.NoIdl = false
  2448.             end
  2449.         end
  2450.     end
  2451. end)
  2452. ----------------------------------------------------
  2453. mouse.KeyDown:connect(function(key)
  2454.     if key == "c" then
  2455.         if Debounces.CanAttack == true then
  2456.             Debounces.CanAttack = false
  2457.             Debounces.NoIdl = true
  2458.             Debounces.on = true
  2459.             SIDZ = {"231917744", "231917742"}
  2460.             PTZ = {0.7, 0.8, 0.9, 1}
  2461.                 for i = 1, 20 do
  2462.                     wait()
  2463.                         for i,v in pairs(char.Absolution:children()) do
  2464.                     if v:IsA("Part") or v:IsA("WedgePart") then
  2465.                         v.Transparency = v.Transparency + 0.05
  2466.                         end
  2467.                     end
  2468.                 end
  2469.                 function FindNearestTorso(Position,Distance,SinglePlayer)
  2470.                     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2471.                         local List = {}
  2472.                         for i,v in pairs(workspace:GetChildren())do
  2473.                             if v:IsA("Model")then
  2474.                                 if v:findFirstChild("Torso")then
  2475.                                     if v ~= char then
  2476.                                         if(v.Torso.Position -Position).magnitude <= Distance then
  2477.                                             table.insert(List,v)
  2478.                                         end
  2479.                                     end
  2480.                                 end
  2481.                             end
  2482.                         end
  2483.                     return List
  2484.                 end
  2485.                 GroundPound()
  2486.                 for i = 1, 5 do
  2487.                     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)
  2488.                     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)
  2489.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2490.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2491.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2492.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2493.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2494.                     if Debounces.on == false then break end
  2495.                     wait()
  2496.                 end
  2497.                 GroundPound()
  2498.                 for i = 1, 5 do
  2499.                     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)
  2500.                     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)
  2501.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2502.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2503.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2504.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2505.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2506.                     if Debounces.on == false then break end
  2507.                     wait()
  2508.                 end
  2509.                 GroundPound()
  2510.                 for i = 1, 5 do
  2511.                     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)
  2512.                     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)
  2513.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2514.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2515.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2516.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2517.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2518.                     if Debounces.on == false then break end
  2519.                     wait()
  2520.                 end
  2521.                 GroundPound()
  2522.                 for i = 1, 5 do
  2523.                     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)
  2524.                     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)
  2525.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2526.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2527.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2528.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2529.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2530.                     if Debounces.on == false then break end
  2531.                     wait()
  2532.                 end
  2533.                 GroundPound()
  2534.                 for i = 1, 5 do
  2535.                     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)
  2536.                     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)
  2537.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2538.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2539.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2540.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2541.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2542.                     if Debounces.on == false then break end
  2543.                     wait()
  2544.                 end
  2545.                 GroundPound()
  2546.                 for i = 1, 5 do
  2547.                     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)
  2548.                     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)
  2549.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2550.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2551.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2552.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2553.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2554.                     if Debounces.on == false then break end
  2555.                     wait()
  2556.                 end
  2557.                 for i = 1, 18 do
  2558.                     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)
  2559.                     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)
  2560.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2561.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2562.                     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)
  2563.                     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)
  2564.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2565.                     if Debounces.on == false then break end
  2566.                     wait()
  2567.                 end
  2568.                 for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2569.                     if v:FindFirstChild('Humanoid') then
  2570.                         v.Humanoid:TakeDamage(math.random(20,60))
  2571.                         v.Humanoid.PlatformStand = true
  2572.                         v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2573.                     end
  2574.                 end
  2575.                 x = Instance.new("Sound",char)
  2576.                 x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2577.                 x.Pitch = PTZ[math.random(1,#PTZ)]
  2578.                 x.Volume = 1
  2579.                 wait(0.1)
  2580.                 x:Play()
  2581.                 Crater(hed,20)
  2582.                 for i = 1, 14 do
  2583.                     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)
  2584.                     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)
  2585.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2586.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2587.                     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)
  2588.                     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)
  2589.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2590.                     if Debounces.on == false then break end
  2591.                     wait()
  2592.                 end
  2593.             if Debounces.CanAttack == false then
  2594.                 Debounces.CanAttack = true
  2595.                 Debounces.on = false
  2596.                 Debounces.NoIdl = false
  2597.                 for i = 1, 20 do
  2598.                     wait()
  2599.                         for i,v in pairs(char.Absolution:children()) do
  2600.                     if v:IsA("Part") or v:IsA("WedgePart") then
  2601.                         v.Transparency = v.Transparency - 0.05
  2602.                         end
  2603.                     end
  2604.                 end
  2605.             end
  2606.         end
  2607.     end
  2608. end)
  2609. ----------------------------------------------------176349813
  2610. mouse.KeyDown:connect(function(key)
  2611.     if key == "b" then
  2612.         hum.WalkSpeed = 0.01
  2613.         if Debounces.CanAttack == true then
  2614.             Debounces.CanAttack = false
  2615.             Debounces.NoIdl = true
  2616.             Debounces.on = true
  2617.             for i = 1,20 do
  2618.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2619.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2620.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2621.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2622.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2623.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2624.             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)
  2625.             if Debounces.on == false then break end
  2626.             wait()
  2627.             end
  2628.         wait(1)
  2629.         v = Instance.new("Sound")
  2630.         v.SoundId = "rbxassetid://181384451"
  2631.         v.Parent = char
  2632.         v.Looped = false
  2633.         v.Pitch = 1.04
  2634.         v.Volume = 1
  2635.         wait(.01)
  2636.         v:Play()
  2637.        
  2638.         if Daytime == true then
  2639.             Daytime = false
  2640.             l.TimeOfDay = 24
  2641.         else
  2642.             Daytime = true
  2643.             l.TimeOfDay = 12
  2644.             l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2645.         end
  2646.        
  2647.             local Shockwave = function()
  2648.                 local rng1 = Instance.new("Part", char)
  2649.                 rng1.Anchored = true
  2650.                 rng1.BrickColor = BrickColor.new("Really black")
  2651.                 rng1.CanCollide = false
  2652.                 rng1.FormFactor = 3
  2653.                 rng1.Name = "Ring"
  2654.                 rng1.Size = Vector3.new(1, 1, 1)
  2655.                 rng1.Transparency = 0.35
  2656.                 rng1.TopSurface = 0
  2657.                 rng1.BottomSurface = 0
  2658.                 local rngm1 = Instance.new("SpecialMesh", rng)
  2659.                 rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2660.                 rngm1.Scale = Vector3.new(10, 10, 1)
  2661.                 rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2662.                 local Wave = Instance.new("Part", game.Workspace--[[?]])
  2663.                 Wave.Name = "Shockwave"
  2664.                 Wave.BrickColor = BrickColor.new("Really black")
  2665.                 Wave.Size = Vector3.new(1, 1, 1)
  2666.                 Wave.Shape = "Ball"
  2667.                 Wave.CanCollide = false
  2668.                 Wave.Anchored = true
  2669.                 Wave.TopSurface = 0
  2670.                 Wave.BottomSurface = 0
  2671.                 Wave.Touched:connect(function(hit)
  2672.                     if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2673.                         local Occlude = true
  2674.                         local NotOccludes = {
  2675.                             char.Name;
  2676.                             "Wings";
  2677.                             "Scythe";
  2678.                             "Thingy";
  2679.                             "Thingy2"; -- put all of the names in a table pls
  2680.                         }
  2681.                         for i,v in pairs(NotOccludes) do
  2682.                             if hit.Parent.Name == v then
  2683.                                 Occlude = false
  2684.                             end
  2685.                         end
  2686.                         --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
  2687.                         if Occlude then
  2688.                             hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2689.                             hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2690.                         end
  2691.                     end
  2692.                 end)
  2693.                
  2694.                 Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2695.                
  2696.                 coroutine.wrap(function()
  2697.                     for i = 1, 20, 0.2 do
  2698.                         rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2699.                         rng1.Transparency = i/20
  2700.                     wait()
  2701.                     end
  2702.                     wait()
  2703.                     rng1:Destroy()
  2704.                 end)()
  2705.                
  2706.                 Delay(0, function()
  2707.  
  2708.                     if Daytime == false then
  2709.                        for i = 1, 50, 1 do
  2710.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2711.                             Wave.CFrame = char.Torso.CFrame
  2712.                             local t = i / 50
  2713.                             Wave.Transparency = t
  2714.                             wait()
  2715.                         end
  2716.                     else
  2717.                         for i = 1, 50, 1 do
  2718.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2719.                             Wave.CFrame = char.Torso.CFrame
  2720.                             local t = i / 50
  2721.                             Wave.Transparency = t
  2722.                             wait()
  2723.                         end
  2724.                     end
  2725.                     Wave:Destroy()
  2726.                 end)
  2727.                 Delay(0, function()
  2728.                     while wait() do
  2729.                         if Wave ~= nil then
  2730.                             Wave.CFrame = char.Torso.CFrame
  2731.                         else
  2732.                             break
  2733.                         end
  2734.                     end
  2735.                 end)
  2736.             end
  2737.         Shockwave()
  2738.         for i = 1, 15 do
  2739.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  2740.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  2741.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2742.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  2743.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2744.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2745.             if Debounces.on == false then break end
  2746.             wait()
  2747.         end
  2748.         for i = 1, 15 do
  2749.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  2750.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  2751.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2752.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  2753.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2754.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2755.             if Debounces.on == false then break end
  2756.             wait()
  2757.         end
  2758.         for i = 1, 15 do
  2759.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  2760.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  2761.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2762.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  2763.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2764.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2765.             if Debounces.on == false then break end
  2766.             wait()
  2767.         end
  2768.         for i = 1, 15 do
  2769.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  2770.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  2771.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2772.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  2773.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2774.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2775.             if Debounces.on == false then break end
  2776.             wait()
  2777.         end
  2778.         for i = 1, 15 do
  2779.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  2780.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  2781.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2782.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  2783.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2784.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2785.             if Debounces.on == false then break end
  2786.             wait()
  2787.         end
  2788.         for i = 1, 15 do
  2789.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  2790.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  2791.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2792.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  2793.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2794.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2795.             if Debounces.on == false then break end
  2796.             wait()
  2797.         end
  2798.         wait(1.4)
  2799.         Debounces.NoIdl = false
  2800.         hum.WalkSpeed = 30
  2801.         Debounces.on = false
  2802.         wait()
  2803.         if Debounces.CanAttack == false then
  2804.             Debounces.CanAttack = true
  2805.             v:Destroy()
  2806.             end
  2807.         end
  2808.     end
  2809. end)
  2810. ----------------------------------------------------
  2811. mouse.KeyDown:connect(function(key)
  2812.     if key == "m" then
  2813. hum.WalkSpeed = 30
  2814.         if Debounces.CanAttack == true then
  2815.         Debounces.CanAttack = false
  2816.         Debounces.on = true
  2817.         Debounces.NoIdl = true
  2818.             --[[x = Instance.new("Sound",char)
  2819.             x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  2820.             x.Looped = false
  2821.             x.Pitch = 1.1
  2822.             x.Volume = 1
  2823.             x:Play()
  2824.             x2 = Instance.new("Sound",char)
  2825.             x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  2826.             x2.Looped = false
  2827.             x2.Pitch = .7
  2828.             x2.Volume = 1
  2829.             wait(.1)
  2830.             x:Play()
  2831.             x2:Play()
  2832.         for i = 1, 20 do
  2833.             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)
  2834.             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)
  2835.             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)
  2836.             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)
  2837.             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)
  2838.             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)
  2839.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  2840.             if Debounces.on == false then break end
  2841.                 wait()
  2842.             x:Destroy()
  2843.             x2:Destroy()
  2844.             end
  2845.             wait(1)]]--
  2846.         local rng = Instance.new("Part", char)
  2847.         rng.Anchored = true
  2848.         rng.BrickColor = BrickColor.new("Really black")
  2849.         rng.CanCollide = false
  2850.         rng.FormFactor = 3
  2851.         rng.Name = "Ring"
  2852.         rng.Size = Vector3.new(1, 1, 1)
  2853.         rng.Transparency = 0.35
  2854.         rng.TopSurface = 0
  2855.         rng.BottomSurface = 0
  2856.         rng.Position = torso.Position - Vector3.new(0,2,0)
  2857.         rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2858.         local rngm = Instance.new("SpecialMesh", rng)
  2859.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2860.         rngm.Scale = Vector3.new(1, 1, 2)
  2861.             x = Instance.new("Sound",char)
  2862.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2863.             x.Looped = false
  2864.             x.Pitch = .7
  2865.             x.Volume = 1
  2866.             x:Play()
  2867.                 coroutine.wrap(function()
  2868.                 for i = 1, 60, 2 do
  2869.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2870.                 rng.Transparency = i/60
  2871.                 wait()
  2872.                 end
  2873.                 wait()
  2874.                 rng:Destroy()
  2875.                 end)()
  2876.             hum.WalkSpeed = 50
  2877.         BV = Instance.new("BodyVelocity", torso)
  2878.         BV.maxForce = Vector3.new(0,200000,0)
  2879.         BV.P = 100000
  2880.         BV.velocity = Vector3.new(0,800,0)
  2881.     for i = 1, 20 do
  2882.         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)
  2883.         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)
  2884.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
  2885.         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)
  2886.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2887.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2888.         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)
  2889.         if Debounces.on == false then break end
  2890.         wait()
  2891.     end
  2892. x:Destroy()
  2893. BV:Destroy()
  2894.     --[[for i = 1, 30 do
  2895.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0),     math.rad(0)),0.3)
  2896.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad    (0), math.rad(0)), 0.3)
  2897.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(-10)), 0.3)
  2898.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(10)), 0.3)
  2899.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2900.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
  2901.         if Debounces.on == false then break end
  2902.         wait()
  2903.     end]]--
  2904. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2905.     for i = 1, 30 do
  2906.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2907.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2908.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  2909.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2910.         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)
  2911.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2912.         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)
  2913.         if Debounces.on == false then break end
  2914.         wait()
  2915.     end
  2916. end
  2917. Debounces.on = false
  2918. Debounces.NoIdl = false
  2919. local ry,ht,ps=nil,nil,nil
  2920. while ht==nil do
  2921.         ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  2922.         wait()
  2923. end
  2924. z = Instance.new("Sound",char)
  2925. z.SoundId = "rbxassetid://142070127"
  2926. z.Volume = 1
  2927. wait(.1)
  2928. z:Play()
  2929. Landing()
  2930. hum.WalkSpeed = 30
  2931. if Debounces.CanAttack == false then
  2932. Debounces.CanAttack = true
  2933. end
  2934. end
  2935. end
  2936. end)
  2937. ----------------------------------------------------
  2938. Grab = false
  2939. mouse.KeyDown:connect(function(key)
  2940.     if key == "z" then
  2941.     larm.BrickColor = BrickColor.new("Really")
  2942.     rarm.BrickColor = BrickColor.new("Really red")
  2943.         Debounces.on = true
  2944.         Debounces.NoIdl = true
  2945.         if Grab == false then
  2946.         gp = nil
  2947.         con1=larm.Touched:connect(function(hit) -- this is grab
  2948.             ht = hit.Parent
  2949.             hum1=ht:FindFirstChild('Humanoid')
  2950.             if hum1 ~= nil then
  2951.                 hum1.PlatformStand=true
  2952.                 gp = ht
  2953.                 Grab = true
  2954.                 asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  2955.                 asd.Parent = larm
  2956.                 asd.Name = "asd"
  2957.                 asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  2958.             elseif hum1 == nil then
  2959.                 con1:disconnect()
  2960.                 wait() return
  2961.             end
  2962.         end)
  2963.         for i = 1, 18 do
  2964.             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)
  2965.             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)
  2966.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2967.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  2968.             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)
  2969.             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)
  2970.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2971.             if Debounces.on == false then break end
  2972.             wait()
  2973.         end
  2974.     con1:disconnect()
  2975.     Debounces.on = false
  2976.     Debounces.NoIdl = false
  2977.     elseif Grab == true then
  2978.         Grab = false
  2979.     for i = 1, 20 do
  2980.         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)
  2981.         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)
  2982.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2983.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2984.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2985.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2986.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2987.         if Debounces.on == false then end
  2988.         wait()
  2989.     end
  2990.         if gp ~= nil then
  2991.         for i,v in pairs(larm:GetChildren()) do
  2992.             if v.Name == "asd" and v:IsA("Weld") then
  2993.                 v:Remove()
  2994.             end
  2995.         end
  2996.         bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  2997.         bv.maxForce = Vector3.new(400000, 400000, 400000)
  2998.         bv.P = 125000
  2999.         bv.velocity = char.Head.CFrame.lookVector * 200
  3000.         for i = 1, 12 do
  3001.             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)
  3002.             if Debounces.on == false then end
  3003.             wait()
  3004.         end
  3005.         ht=nil
  3006.         Spawn(function()
  3007.             wait(0.5)
  3008.             bv:Destroy()
  3009.         end)
  3010.         Debounces.on = false
  3011.         Debounces.NoIdl = false
  3012.         elseif ht == nil then wait()
  3013.         Grab = false
  3014.         Debounces.on = false
  3015.         Debounces.NoIdl = false
  3016.             end
  3017.         end
  3018.     end
  3019. end)
  3020. ----------------------------------------------------
  3021. mouse.KeyDown:connect(function(key)
  3022.     if string.byte(key) == 52 then
  3023.         char.Humanoid.WalkSpeed = 30
  3024.     end
  3025. end)
  3026. mouse.KeyUp:connect(function(key)
  3027.     if string.byte(key) == 52 then
  3028.         char.Humanoid.WalkSpeed = 30
  3029.     end
  3030. end)
  3031. ----------------------------------------------------
  3032. local animpose = "Idle"
  3033. local lastanimpose = "Idle"
  3034. local sine = 0
  3035. local change = 1
  3036. local val = 0
  3037. local ffing = false
  3038. ----------------------------------------------------
  3039. --[[x = Instance.new("Sound", char)
  3040. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3041. x.Looped = true
  3042. x.Volume = 1
  3043. x.Pitch = 1
  3044. local footsteps = false]]--
  3045. -------------------------------
  3046. game:GetService("RunService").RenderStepped:connect(function()
  3047. --[[if char.Humanoid.Jump == true then
  3048. jump = true
  3049. else
  3050. jump = false
  3051. end]]
  3052. char.Humanoid.FreeFalling:connect(function(f)
  3053. if f then
  3054. ffing = true
  3055. else
  3056. ffing = false
  3057. end
  3058. end)
  3059. sine = sine + change
  3060. if jumpn == true then
  3061. animpose = "Jumping"
  3062. elseif ffing == true then
  3063. animpose = "Freefalling"
  3064. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3065. animpose = "Idle"
  3066. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3067. animpose = "Walking"
  3068. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3069. animpose = "Running"
  3070. end
  3071. if animpose ~= lastanimpose then
  3072. sine = 0
  3073. if Debounces.NoIdl == false then
  3074. if animpose == "Idle" then
  3075. for i = 1, 2 do
  3076. 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)
  3077. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  3078. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3079. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3080. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3081. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3082. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3083. end
  3084. elseif animpose == "Walking" then
  3085. for i = 1, 2 do
  3086. 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)
  3087. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3088. 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)
  3089. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3090. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3091. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3092. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3093. end
  3094. elseif animpose == "Running" then
  3095. for i = 1, 2 do
  3096. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3097. 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)
  3098. 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)
  3099. 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)
  3100. 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)
  3101. 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)
  3102. 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)
  3103. end
  3104. wait()
  3105. end
  3106. else
  3107. end
  3108. end
  3109. lastanimpose = animpose
  3110. if Debounces.NoIdl == false then
  3111. if animpose == "Idle" then
  3112. if stanceToggle == "Normal" then
  3113. change = 0.5
  3114. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  3115. 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)
  3116. 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)
  3117. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3118. 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)
  3119. 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)
  3120. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3121. elseif stanceToggle == "Sitting" then
  3122. 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)
  3123. 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)
  3124. 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)
  3125. 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)
  3126. 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)
  3127. 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)
  3128. 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)
  3129. end
  3130. elseif animpose == "Walking" then
  3131. if stanceToggle == "Normal" then
  3132. change = 1
  3133. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  3134. 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.2)
  3135. 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)
  3136. 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)
  3137. 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), .4)
  3138. 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), .4)
  3139. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3140. end
  3141. elseif animpose == "Running" then
  3142. change = 1
  3143. 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)
  3144. 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)
  3145. 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)
  3146. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3147. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3148. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3149. 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)
  3150. end
  3151. end
  3152. --[[if animpose == "Walking" then
  3153.     if footsteps == false then
  3154.         x:Play()
  3155.         footsteps = true
  3156.     end
  3157.     x.Pitch = 1.1
  3158. elseif animpose == "Idle" then
  3159.     x:Stop()
  3160.     footsteps = false
  3161. elseif animpose == "Running" then
  3162.     x.Pitch = 1.2
  3163.     if footsteps == false then
  3164.         x:Play()
  3165.         footsteps = true
  3166.     end
  3167. end]]--
  3168. end)
  3169. clone this paste RAW Paste Data
  3170.  
  3171. local p = game.Players.LocalPlayer
  3172. local char = p.Character
  3173. local mouse = p:GetMouse()
  3174. local larm = char["Left Arm"]
  3175. local rarm = char["Right Arm"]
  3176. local lleg = char["Left Leg"]
  3177. local rleg = char["Right Leg"]
  3178. local hed = char.Head
  3179. local torso = char.Torso
  3180. local hum = char.Humanoid
  3181. local cam = game.Workspace.CurrentCamera
  3182. local root = char.HumanoidRootPart
  3183. local deb = false
  3184. local shot = 0
  3185. local l = game:GetService("Lighting")
  3186. local rs = game:GetService("RunService").RenderStepped
  3187. local stanceToggle = "Normal"
  3188. math.randomseed(os.time())
  3189. hum.WalkSpeed = 30
  3190. char.Health:Destroy()
  3191. hum.MaxHealth = 50000
  3192. wait(0.1)
  3193. hum.Health = 50000
  3194. ----------------------------------------------------
  3195. char.Shirt:Destroy()
  3196. char.Pants:Destroy()
  3197. shirt = Instance.new("Shirt", char)
  3198. shirt.Name = "Shirt"
  3199. pants = Instance.new("Pants", char)
  3200. pants.Name = "Pants"
  3201. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  3202. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  3203. ----------------------------------------------------
  3204. Debounces = {
  3205. on = false;
  3206. ks = false;
  3207. CanAttack = true;
  3208. CanJoke = true;
  3209. NoIdl = false;
  3210. Slashing = false;
  3211. Slashed = false;
  3212. Grabbing = false;
  3213. Grabbed = false;
  3214. }
  3215. local Touche = {char.Name, }
  3216. ----------------------------------------------------
  3217. function lerp(a, b, t) -- Linear interpolation
  3218.     return a + (b - a)*t
  3219. end
  3220.  
  3221. function slerp(a, b, t) --Spherical interpolation
  3222.     dot = a:Dot(b)
  3223.     if dot > 0.99999 or dot < -0.99999 then
  3224.         return t <= 0.5 and a or b
  3225.     else
  3226.         r = math.acos(dot)
  3227.         return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  3228.     end
  3229. end
  3230.  
  3231. function matrixInterpolate(a, b, t)
  3232.     local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  3233.     local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  3234.     local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  3235.     local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
  3236.     local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
  3237.     local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
  3238.     local t = v1:Dot(v2)
  3239.     if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
  3240.         return CFrame.new()
  3241.     end
  3242.     return CFrame.new(
  3243.     v0.x, v0.y, v0.z,
  3244.     v1.x, v1.y, v1.z,
  3245.     v2.x, v2.y, v2.z,
  3246.     v3.x, v3.y, v3.z)
  3247. end
  3248. ----------------------------------------------------
  3249. function genWeld(a,b)
  3250.     local w = Instance.new("Weld",a)
  3251.     w.Part0 = a
  3252.     w.Part1 = b
  3253.     return w
  3254. end
  3255. function weld(a, b)
  3256.     local weld = Instance.new("Weld")
  3257.     weld.Name = "W"
  3258.     weld.Part0 = a
  3259.     weld.Part1 = b
  3260.     weld.C0 = a.CFrame:inverse() * b.CFrame
  3261.     weld.Parent = a
  3262.     return weld;
  3263. end
  3264. ----------------------------------------------------
  3265. function Lerp(c1,c2,al)
  3266. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  3267. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  3268. for i,v in pairs(com1) do
  3269. com1[i] = v+(com2[i]-v)*al
  3270. end
  3271. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  3272. end
  3273. ----------------------------------------------------
  3274. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  3275. local wld = Instance.new("Weld", wp1)
  3276. wld.Part0 = wp0
  3277. wld.Part1 = wp1
  3278. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  3279. end
  3280. ----------------------------------------------------
  3281. for i,v in pairs(char:children()) do
  3282.     if v:IsA("Hat") then
  3283.         v:Destroy()
  3284.     end
  3285. end
  3286. for i,v in pairs(hed:children()) do
  3287.     if v:IsA("Sound") then
  3288.         v:Destroy()
  3289.     end
  3290. end
  3291. ----------------------------------------------------
  3292. function HasntTouched(plrname)
  3293. local ret = true
  3294. for _, v in pairs(Touche) do
  3295. if v == plrname then
  3296. ret = false
  3297. end
  3298. end
  3299. return ret
  3300. end
  3301. ----------------------------------------------------
  3302. larm.Size = larm.Size * 2
  3303. rarm.Size = rarm.Size * 2
  3304. lleg.Size = lleg.Size * 2
  3305. rleg.Size = rleg.Size * 2
  3306. torso.Size = torso.Size * 2
  3307. hed.Size = hed.Size * 2
  3308. root.Size = root.Size * 2
  3309. ----------------------------------------------------
  3310. newWeld(torso, larm, -1.5, 0.5, 0)
  3311. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  3312. newWeld(torso, rarm, 1.5, 0.5, 0)
  3313. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  3314. newWeld(torso, hed, 0, 1.5, 0)
  3315. newWeld(torso, lleg, -0.5, -1, 0)
  3316. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  3317. newWeld(torso, rleg, 0.5, -1, 0)
  3318. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  3319. newWeld(root, torso, 0, -1, 0)
  3320. torso.Weld.C1 = CFrame.new(0, -1, 0)
  3321. ----------------------------------------------------
  3322. game:service'InsertService':LoadAsset(63993845):children()[1].Parent=char
  3323. char.LavendarPlasmaHood.Handle.Mesh.Scale = char.LavendarPlasmaHood.Handle.Mesh.Scale * 1.8
  3324. char.LavendarPlasmaHood.Handle.Mesh.VertexColor = Vector3.new(0.1,0.1,0.1)
  3325. hed.face.Texture = "rbxassetid://46282671"
  3326. z=Instance.new('Decal',hed)
  3327. z.Face = 'Front'
  3328. z.Texture='rbxassetid://99174105'
  3329. hed.BrickColor = BrickColor.new("Really black")
  3330. lite = Instance.new("PointLight", torso)
  3331. lite.Brightness = 14
  3332. lite.Range = 10
  3333. lite.Color = Color3.new(1, 0, 0)
  3334. --[[local hed2 = hed:Clone()
  3335. hed2.CanCollide = false
  3336. hed2.Parent = char
  3337. hed2:ClearAllChildren()
  3338. hed2.Transparency = 1
  3339. hed2.Name = "DARP"
  3340. local w = Instance.new("Weld",hed2)
  3341. w.Part0 = hed
  3342. w.Part1 = hed2
  3343. w.C0 = CFrame.new(0,0,-0.175)
  3344. z=Instance.new("SurfaceGui",hed2)
  3345. z.Enabled = true
  3346. z.Face = "Front"
  3347. z.Adornee = hed2
  3348. z.CanvasSize = Vector2.new(100,100)
  3349. local face = Instance.new("ImageLabel",z)
  3350. face.Size = UDim2.new(1,-30,1,0)
  3351. face.Position = UDim2.new(0,15,0,0)
  3352. face.BackgroundTransparency = 1
  3353. face.Image='rbxassetid://46282671']]--
  3354. ----------------------------------------------------
  3355. z = Instance.new("Sound", char)
  3356. z.SoundId = "rbxassetid://170822236"--242463565
  3357. z.Looped = true
  3358. z.Pitch = .58
  3359. z.Volume = 1
  3360. wait(.01)
  3361. z:Play()
  3362. ----------------------------------------------------
  3363. local m = Instance.new("Model")
  3364. m.Name = "Absolution"
  3365. p1 = Instance.new("Part", m)
  3366. p1.BrickColor = BrickColor.new("Really red")
  3367. p1.FormFactor = Enum.FormFactor.Custom
  3368. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  3369. 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)
  3370. p1.CanCollide = false
  3371. p1.Locked = true
  3372. p1.Elasticity = 0
  3373. p1.BottomSurface = Enum.SurfaceType.Smooth
  3374. p1.TopSurface = Enum.SurfaceType.Smooth
  3375. b1 = Instance.new("SpecialMesh", p1)
  3376. b1.MeshType = Enum.MeshType.Wedge
  3377. b1.Name = "Mesh"
  3378. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  3379. p2 = Instance.new("Part", m)
  3380. p2.BrickColor = BrickColor.new("Really black")
  3381. p2.FormFactor = Enum.FormFactor.Custom
  3382. p2.Size = Vector3.new(1, 2.9000001, 1)
  3383. 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)
  3384. p2.CanCollide = false
  3385. p2.Locked = true
  3386. p2.Elasticity = 0
  3387. p2.BottomSurface = Enum.SurfaceType.Smooth
  3388. p2.TopSurface = Enum.SurfaceType.Smooth
  3389. b2 = Instance.new("BlockMesh", p2)
  3390. b2.Name = "Mesh"
  3391. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  3392. p3 = Instance.new("Part", m)
  3393. p3.BrickColor = BrickColor.new("Really red")
  3394. p3.FormFactor = Enum.FormFactor.Custom
  3395. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  3396. 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)
  3397. p3.CanCollide = false
  3398. p3.Locked = true
  3399. p3.Elasticity = 0
  3400. p3.BottomSurface = Enum.SurfaceType.Smooth
  3401. p3.TopSurface = Enum.SurfaceType.Smooth
  3402. b3 = Instance.new("SpecialMesh", p3)
  3403. b3.MeshType = Enum.MeshType.Wedge
  3404. b3.Name = "Mesh"
  3405. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  3406. p4 = Instance.new("Part", m)
  3407. p4.BrickColor = BrickColor.new("Really red")
  3408. p4.FormFactor = Enum.FormFactor.Custom
  3409. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  3410. 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)
  3411. p4.CanCollide = false
  3412. p4.Locked = true
  3413. p4.Elasticity = 0
  3414. p4.BottomSurface = Enum.SurfaceType.Smooth
  3415. p4.TopSurface = Enum.SurfaceType.Smooth
  3416. b4 = Instance.new("SpecialMesh", p4)
  3417. b4.MeshType = Enum.MeshType.Wedge
  3418. b4.Name = "Mesh"
  3419. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  3420. p5 = Instance.new("Part", m)
  3421. p5.BrickColor = BrickColor.new("Really red")
  3422. p5.FormFactor = Enum.FormFactor.Custom
  3423. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  3424. 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)
  3425. p5.CanCollide = false
  3426. p5.Locked = true
  3427. p5.Elasticity = 0
  3428. p5.BottomSurface = Enum.SurfaceType.Smooth
  3429. p5.TopSurface = Enum.SurfaceType.Smooth
  3430. b5 = Instance.new("SpecialMesh", p5)
  3431. b5.MeshType = Enum.MeshType.Wedge
  3432. b5.Name = "Mesh"
  3433. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  3434. p6 = Instance.new("Part", m)
  3435. p6.Name = "Handle"
  3436. p6.BrickColor = BrickColor.new("Really black")
  3437. p6.FormFactor = Enum.FormFactor.Custom
  3438. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  3439. 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)
  3440. p6.CanCollide = false
  3441. p6.Locked = true
  3442. p6.Elasticity = 0
  3443. p6.BottomSurface = Enum.SurfaceType.Smooth
  3444. p6.TopSurface = Enum.SurfaceType.Smooth
  3445. b6 = Instance.new("BlockMesh", p6)
  3446. b6.Name = "Mesh"
  3447. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  3448. p7 = Instance.new("Part", m)
  3449. p7.BrickColor = BrickColor.new("Really red")
  3450. p7.FormFactor = Enum.FormFactor.Custom
  3451. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  3452. 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)
  3453. p7.CanCollide = false
  3454. p7.Locked = true
  3455. p7.Elasticity = 0
  3456. p7.BottomSurface = Enum.SurfaceType.Smooth
  3457. p7.TopSurface = Enum.SurfaceType.Smooth
  3458. b7 = Instance.new("SpecialMesh", p7)
  3459. b7.MeshType = Enum.MeshType.Wedge
  3460. b7.Name = "Mesh"
  3461. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  3462. p8 = Instance.new("Part", m)
  3463. p8.BrickColor = BrickColor.new("Really red")
  3464. p8.FormFactor = Enum.FormFactor.Custom
  3465. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  3466. 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)
  3467. p8.CanCollide = false
  3468. p8.Locked = true
  3469. p8.Elasticity = 0
  3470. p8.BottomSurface = Enum.SurfaceType.Smooth
  3471. p8.TopSurface = Enum.SurfaceType.Smooth
  3472. b8 = Instance.new("SpecialMesh", p8)
  3473. b8.MeshType = Enum.MeshType.Wedge
  3474. b8.Name = "Mesh"
  3475. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  3476. p9 = Instance.new("Part", m)
  3477. p9.BrickColor = BrickColor.new("Really black")
  3478. p9.FormFactor = Enum.FormFactor.Custom
  3479. p9.Size = Vector3.new(1, 1.07999957, 1)
  3480. 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)
  3481. p9.CanCollide = false
  3482. p9.Locked = true
  3483. p9.Elasticity = 0
  3484. p9.BottomSurface = Enum.SurfaceType.Smooth
  3485. p9.TopSurface = Enum.SurfaceType.Smooth
  3486. b9 = Instance.new("BlockMesh", p9)
  3487. b9.Name = "Mesh"
  3488. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  3489. p10 = Instance.new("Part", m)
  3490. p10.BrickColor = BrickColor.new("Really black")
  3491. p10.FormFactor = Enum.FormFactor.Custom
  3492. p10.Size = Vector3.new(1, 1.41999948, 1)
  3493. 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)
  3494. p10.CanCollide = false
  3495. p10.Locked = true
  3496. p10.Elasticity = 0
  3497. p10.BottomSurface = Enum.SurfaceType.Smooth
  3498. p10.TopSurface = Enum.SurfaceType.Smooth
  3499. b10 = Instance.new("BlockMesh", p10)
  3500. b10.Name = "Mesh"
  3501. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  3502. p11 = Instance.new("Part", m)
  3503. p11.BrickColor = BrickColor.new("Really black")
  3504. p11.FormFactor = Enum.FormFactor.Custom
  3505. p11.Size = Vector3.new(1, 1.50999951, 1)
  3506. 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)
  3507. p11.CanCollide = false
  3508. p11.Locked = true
  3509. p11.Elasticity = 0
  3510. p11.BottomSurface = Enum.SurfaceType.Smooth
  3511. p11.TopSurface = Enum.SurfaceType.Smooth
  3512. b11 = Instance.new("BlockMesh", p11)
  3513. b11.Name = "Mesh"
  3514. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  3515. p12 = Instance.new("Part", m)
  3516. p12.Name = "BladeCenter"
  3517. p12.BrickColor = BrickColor.new("Dark stone grey")
  3518. p12.Material = Enum.Material.Concrete
  3519. p12.FormFactor = Enum.FormFactor.Symmetric
  3520. p12.Size = Vector3.new(1, 2, 2)
  3521. 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)
  3522. p12.CanCollide = false
  3523. p12.Locked = true
  3524. p12.BottomSurface = Enum.SurfaceType.Smooth
  3525. p12.TopSurface = Enum.SurfaceType.Smooth
  3526. b12 = Instance.new("SpecialMesh", p12)
  3527. b12.MeshType = Enum.MeshType.Brick
  3528. b12.Name = "Mesh"
  3529. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  3530. p13 = Instance.new("Part", m)
  3531. p13.BrickColor = BrickColor.new("Really black")
  3532. p13.FormFactor = Enum.FormFactor.Custom
  3533. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  3534. 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)
  3535. p13.CanCollide = false
  3536. p13.Locked = true
  3537. p13.Elasticity = 0
  3538. p13.BottomSurface = Enum.SurfaceType.Smooth
  3539. p13.TopSurface = Enum.SurfaceType.Smooth
  3540. b13 = Instance.new("BlockMesh", p13)
  3541. b13.Name = "Mesh"
  3542. b13.Scale = Vector3.new(1, 1, 0.400000006)
  3543. p14 = Instance.new("Part", m)
  3544. p14.BrickColor = BrickColor.new("Really black")
  3545. p14.FormFactor = Enum.FormFactor.Custom
  3546. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  3547. 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)
  3548. p14.CanCollide = false
  3549. p14.Locked = true
  3550. p14.Elasticity = 0
  3551. p14.BottomSurface = Enum.SurfaceType.Smooth
  3552. p14.TopSurface = Enum.SurfaceType.Smooth
  3553. b14 = Instance.new("BlockMesh", p14)
  3554. b14.Name = "Mesh"
  3555. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  3556. p15 = Instance.new("Part", m)
  3557. p15.BrickColor = BrickColor.new("Really black")
  3558. p15.FormFactor = Enum.FormFactor.Custom
  3559. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  3560. 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)
  3561. p15.CanCollide = false
  3562. p15.Locked = true
  3563. p15.Elasticity = 0
  3564. p15.BottomSurface = Enum.SurfaceType.Smooth
  3565. p15.TopSurface = Enum.SurfaceType.Smooth
  3566. b15 = Instance.new("BlockMesh", p15)
  3567. b15.Name = "Mesh"
  3568. b15.Scale = Vector3.new(1, 1, 0.400000006)
  3569. p16 = Instance.new("Part", m)
  3570. p16.BrickColor = BrickColor.new("Really black")
  3571. p16.FormFactor = Enum.FormFactor.Custom
  3572. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  3573. 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)
  3574. p16.CanCollide = false
  3575. p16.Locked = true
  3576. p16.Elasticity = 0
  3577. p16.BottomSurface = Enum.SurfaceType.Smooth
  3578. p16.TopSurface = Enum.SurfaceType.Smooth
  3579. b16 = Instance.new("BlockMesh", p16)
  3580. b16.Name = "Mesh"
  3581. b16.Scale = Vector3.new(1, 1, 0.400000006)
  3582. p17 = Instance.new("Part", m)
  3583. p17.BrickColor = BrickColor.new("Really black")
  3584. p17.FormFactor = Enum.FormFactor.Custom
  3585. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  3586. 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)
  3587. p17.CanCollide = false
  3588. p17.Locked = true
  3589. p17.Elasticity = 0
  3590. p17.BottomSurface = Enum.SurfaceType.Smooth
  3591. p17.TopSurface = Enum.SurfaceType.Smooth
  3592. b17 = Instance.new("BlockMesh", p17)
  3593. b17.Name = "Mesh"
  3594. b17.Scale = Vector3.new(1, 1, 0.400000006)
  3595. p18 = Instance.new("WedgePart", m)
  3596. p18.BrickColor = BrickColor.new("Dark stone grey")
  3597. p18.Name = "BladePart1"
  3598. p18.Material = Enum.Material.Concrete
  3599. p18.Name = "Wedge"
  3600. p18.FormFactor = Enum.FormFactor.Symmetric
  3601. p18.Size = Vector3.new(1, 4, 2)
  3602. 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)
  3603. p18.CanCollide = false
  3604. p18.Locked = true
  3605. p18.BottomSurface = Enum.SurfaceType.Smooth
  3606. p18.TopSurface = Enum.SurfaceType.Smooth
  3607. b18 = Instance.new("SpecialMesh", p18)
  3608. b18.MeshType = Enum.MeshType.Wedge
  3609. b18.Name = "Mesh"
  3610. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  3611. p19 = Instance.new("WedgePart", m)
  3612. p19.BrickColor = BrickColor.new("Dark stone grey")
  3613. p19.Name = "BladePart2"
  3614. p19.Material = Enum.Material.Concrete
  3615. p19.Name = "Wedge"
  3616. p19.FormFactor = Enum.FormFactor.Symmetric
  3617. p19.Size = Vector3.new(1, 4, 2)
  3618. 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)
  3619. p19.CanCollide = false
  3620. p19.Locked = true
  3621. p19.BottomSurface = Enum.SurfaceType.Smooth
  3622. p19.TopSurface = Enum.SurfaceType.Smooth
  3623. b19 = Instance.new("SpecialMesh", p19)
  3624. b19.MeshType = Enum.MeshType.Wedge
  3625. b19.Name = "Mesh"
  3626. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  3627. p20 = Instance.new("Part", m)
  3628. p20.BrickColor = BrickColor.new("Really black")
  3629. p20.FormFactor = Enum.FormFactor.Custom
  3630. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  3631. 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)
  3632. p20.CanCollide = false
  3633. p20.Locked = true
  3634. p20.Elasticity = 0
  3635. p20.BottomSurface = Enum.SurfaceType.Smooth
  3636. p20.TopSurface = Enum.SurfaceType.Smooth
  3637. b20 = Instance.new("BlockMesh", p20)
  3638. b20.Name = "Mesh"
  3639. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  3640. p21 = Instance.new("Part", m)
  3641. p21.BrickColor = BrickColor.new("Really red")
  3642. p21.FormFactor = Enum.FormFactor.Custom
  3643. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  3644. 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)
  3645. p21.CanCollide = false
  3646. p21.Locked = true
  3647. p21.Elasticity = 0
  3648. p21.BottomSurface = Enum.SurfaceType.Smooth
  3649. p21.TopSurface = Enum.SurfaceType.Smooth
  3650. b21 = Instance.new("SpecialMesh", p21)
  3651. b21.MeshType = Enum.MeshType.Wedge
  3652. b21.Name = "Mesh"
  3653. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  3654. w1 = Instance.new("Weld", p1)
  3655. w1.Name = "Part_Weld"
  3656. w1.Part0 = p1
  3657. 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)
  3658. w1.Part1 = p2
  3659. 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)
  3660. w2 = Instance.new("Weld", p2)
  3661. w2.Name = "Part_Weld"
  3662. w2.Part0 = p2
  3663. 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)
  3664. w2.Part1 = p3
  3665. 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)
  3666. w3 = Instance.new("Weld", p3)
  3667. w3.Name = "Part_Weld"
  3668. w3.Part0 = p3
  3669. 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)
  3670. w3.Part1 = p4
  3671. 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)
  3672. w4 = Instance.new("Weld", p4)
  3673. w4.Name = "Part_Weld"
  3674. w4.Part0 = p4
  3675. 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)
  3676. w4.Part1 = p5
  3677. 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)
  3678. w5 = Instance.new("Weld", p5)
  3679. w5.Name = "Part_Weld"
  3680. w5.Part0 = p5
  3681. 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)
  3682. w5.Part1 = p6
  3683. 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)
  3684. w6 = Instance.new("Weld", p6)
  3685. w6.Name = "Part_Weld"
  3686. w6.Part0 = p6
  3687. 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)
  3688. w6.Part1 = p7
  3689. 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)
  3690. w7 = Instance.new("Weld", p7)
  3691. w7.Name = "Part_Weld"
  3692. w7.Part0 = p7
  3693. 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)
  3694. w7.Part1 = p8
  3695. 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)
  3696. w8 = Instance.new("Weld", p8)
  3697. w8.Name = "Part_Weld"
  3698. w8.Part0 = p8
  3699. 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)
  3700. w8.Part1 = p9
  3701. 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)
  3702. w9 = Instance.new("Weld", p9)
  3703. w9.Name = "Part_Weld"
  3704. w9.Part0 = p9
  3705. 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)
  3706. w9.Part1 = p10
  3707. 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)
  3708. w10 = Instance.new("Weld", p10)
  3709. w10.Name = "Part_Weld"
  3710. w10.Part0 = p10
  3711. 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)
  3712. w10.Part1 = p11
  3713. 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)
  3714. w11 = Instance.new("Weld", p11)
  3715. w11.Name = "Part_Weld"
  3716. w11.Part0 = p11
  3717. 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)
  3718. w11.Part1 = p12
  3719. 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)
  3720. w12 = Instance.new("Weld", p12)
  3721. w12.Name = "Part_Weld"
  3722. w12.Part0 = p12
  3723. 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)
  3724. w12.Part1 = p13
  3725. 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)
  3726. w13 = Instance.new("Weld", p13)
  3727. w13.Name = "Part_Weld"
  3728. w13.Part0 = p13
  3729. 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)
  3730. w13.Part1 = p14
  3731. 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)
  3732. w14 = Instance.new("Weld", p14)
  3733. w14.Name = "Part_Weld"
  3734. w14.Part0 = p14
  3735. 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)
  3736. w14.Part1 = p15
  3737. 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)
  3738. w15 = Instance.new("Weld", p15)
  3739. w15.Name = "Part_Weld"
  3740. w15.Part0 = p15
  3741. 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)
  3742. w15.Part1 = p16
  3743. 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)
  3744. w16 = Instance.new("Weld", p16)
  3745. w16.Name = "Part_Weld"
  3746. w16.Part0 = p16
  3747. 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)
  3748. w16.Part1 = p17
  3749. 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)
  3750. w17 = Instance.new("Weld", p17)
  3751. w17.Name = "Wedge_Weld"
  3752. w17.Part0 = p17
  3753. 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)
  3754. w17.Part1 = p18
  3755. 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)
  3756. w18 = Instance.new("Weld", p18)
  3757. w18.Name = "Wedge_Weld"
  3758. w18.Part0 = p18
  3759. 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)
  3760. w18.Part1 = p19
  3761. 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)
  3762. w19 = Instance.new("Weld", p19)
  3763. w19.Name = "Part_Weld"
  3764. w19.Part0 = p19
  3765. 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)
  3766. w19.Part1 = p20
  3767. 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)
  3768. w20 = Instance.new("Weld", p20)
  3769. w20.Name = "Part_Weld"
  3770. w20.Part0 = p20
  3771. 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)
  3772. w20.Part1 = p21
  3773. 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)
  3774. m.Parent = char
  3775. m:MakeJoints()
  3776. ----------------------------------------------------
  3777. local cor = Instance.new("Part", char.Absolution)
  3778. cor.Name = "Thingy"
  3779. cor.Locked = true
  3780. cor.BottomSurface = 0
  3781. cor.CanCollide = false
  3782. cor.Size = Vector3.new(1, 13, 1)
  3783. cor.Transparency = 1
  3784. cor.TopSurface = 0
  3785. corw = Instance.new("Weld", cor)
  3786. corw.Part0 = rarm
  3787. corw.Part1 = cor
  3788. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3789. corw.C1 = CFrame.new(0, 0, 0)
  3790. weld1 = Instance.new("Weld", char.Absolution)
  3791. weld1.Part0 = cor
  3792. weld1.Part1 = p6
  3793. weld1.C0 = CFrame.new(0, 0, 0)
  3794. ----------------------------------------------------
  3795. hitb = Instance.new("Part", char.Absolution)
  3796. hitb.Name = "Thingy2"
  3797. hitb.Locked = true
  3798. hitb.BottomSurface = 0
  3799. hitb.CanCollide = false
  3800. hitb.Size = Vector3.new(0, 8, 6)
  3801. hitb.Transparency = 1
  3802. hitb.TopSurface = 0
  3803. weld2 = Instance.new("Weld", char.Absolution)
  3804. weld2.Part0 = hitb
  3805. weld2.Part1 = p12
  3806. weld2.C0 = CFrame.new(0, .6, 1)
  3807. ----------------------------------------------------
  3808. local m = Instance.new("Model")
  3809. m.Name = "Claw"
  3810. p1 = Instance.new("Part", m)
  3811. p1.BrickColor = BrickColor.new("Really black")
  3812. p1.FormFactor = Enum.FormFactor.Custom
  3813. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  3814. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  3815. p1.CanCollide = false
  3816. p1.Locked = true
  3817. p1.BottomSurface = Enum.SurfaceType.Smooth
  3818. p1.TopSurface = Enum.SurfaceType.Smooth
  3819. b1 = Instance.new("BlockMesh", p1)
  3820. b1.Name = "Mesh"
  3821. p2 = Instance.new("WedgePart", m)
  3822. p2.BrickColor = BrickColor.new("Really black")
  3823. p2.Name = "Wedge"
  3824. p2.FormFactor = Enum.FormFactor.Custom
  3825. p2.Size = Vector3.new(3, 1, 0.5)
  3826. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  3827. p2.CanCollide = false
  3828. p2.Locked = true
  3829. p2.BottomSurface = Enum.SurfaceType.Smooth
  3830. p2.TopSurface = Enum.SurfaceType.Smooth
  3831. p3 = Instance.new("Part", m)
  3832. p3.BrickColor = BrickColor.new("Really black")
  3833. p3.FormFactor = Enum.FormFactor.Custom
  3834. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  3835. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  3836. p3.CanCollide = false
  3837. p3.Locked = true
  3838. p3.BottomSurface = Enum.SurfaceType.Smooth
  3839. p3.TopSurface = Enum.SurfaceType.Smooth
  3840. b2 = Instance.new("BlockMesh", p3)
  3841. b2.Name = "Mesh"
  3842. p4 = Instance.new("WedgePart", m)
  3843. p4.BrickColor = BrickColor.new("Really black")
  3844. p4.Name = "Wedge"
  3845. p4.FormFactor = Enum.FormFactor.Custom
  3846. p4.Size = Vector3.new(3, 1, 0.5)
  3847. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  3848. p4.CanCollide = false
  3849. p4.Locked = true
  3850. p4.BottomSurface = Enum.SurfaceType.Smooth
  3851. p4.TopSurface = Enum.SurfaceType.Smooth
  3852. p5 = Instance.new("Part", m)
  3853. p5.BrickColor = BrickColor.new("Really black")
  3854. p5.FormFactor = Enum.FormFactor.Custom
  3855. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  3856. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  3857. p5.CanCollide = false
  3858. p5.Locked = true
  3859. p5.BottomSurface = Enum.SurfaceType.Smooth
  3860. p5.TopSurface = Enum.SurfaceType.Smooth
  3861. b3 = Instance.new("BlockMesh", p5)
  3862. b3.Name = "Mesh"
  3863. p6 = Instance.new("Part", m)
  3864. p6.BrickColor = BrickColor.new("Really black")
  3865. p6.FormFactor = Enum.FormFactor.Custom
  3866. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  3867. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  3868. p6.CanCollide = false
  3869. p6.Locked = true
  3870. p6.BottomSurface = Enum.SurfaceType.Smooth
  3871. p6.TopSurface = Enum.SurfaceType.Smooth
  3872. b4 = Instance.new("BlockMesh", p6)
  3873. b4.Name = "Mesh"
  3874. p7 = Instance.new("Part", m)
  3875. p7.BrickColor = BrickColor.new("Really black")
  3876. p7.FormFactor = Enum.FormFactor.Custom
  3877. p7.Size = Vector3.new(3, 1, 1.20000005)
  3878. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  3879. p7.CanCollide = false
  3880. p7.Locked = true
  3881. p7.BottomSurface = Enum.SurfaceType.Smooth
  3882. p7.TopSurface = Enum.SurfaceType.Smooth
  3883. b5 = Instance.new("BlockMesh", p7)
  3884. b5.Name = "Mesh"
  3885. p8 = Instance.new("Part", m)
  3886. p8.BrickColor = BrickColor.new("Really red")
  3887. p8.FormFactor = Enum.FormFactor.Symmetric
  3888. p8.Size = Vector3.new(1, 1, 1)
  3889. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  3890. p8.CanCollide = false
  3891. p8.Locked = true
  3892. b6 = Instance.new("SpecialMesh", p8)
  3893. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  3894. b6.TextureId = ""
  3895. b6.MeshType = Enum.MeshType.FileMesh
  3896. b6.Name = "Mesh"
  3897. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  3898. p9 = Instance.new("Part", m)
  3899. p9.BrickColor = BrickColor.new("Really black")
  3900. p9.FormFactor = Enum.FormFactor.Custom
  3901. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  3902. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  3903. p9.CanCollide = false
  3904. p9.Locked = true
  3905. p9.BottomSurface = Enum.SurfaceType.Smooth
  3906. p9.TopSurface = Enum.SurfaceType.Smooth
  3907. b7 = Instance.new("BlockMesh", p9)
  3908. b7.Name = "Mesh"
  3909. p10 = Instance.new("Part", m)
  3910. p10.BrickColor = BrickColor.new("Really red")
  3911. p10.FormFactor = Enum.FormFactor.Symmetric
  3912. p10.Size = Vector3.new(1, 1, 1)
  3913. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  3914. p10.CanCollide = false
  3915. p10.Locked = true
  3916. b8 = Instance.new("SpecialMesh", p10)
  3917. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  3918. b8.TextureId = ""
  3919. b8.MeshType = Enum.MeshType.FileMesh
  3920. b8.Name = "Mesh"
  3921. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  3922. p11 = Instance.new("Part", m)
  3923. p11.BrickColor = BrickColor.new("Really black")
  3924. p11.FormFactor = Enum.FormFactor.Custom
  3925. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  3926. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  3927. p11.CanCollide = false
  3928. p11.Locked = true
  3929. p11.BottomSurface = Enum.SurfaceType.Smooth
  3930. p11.TopSurface = Enum.SurfaceType.Smooth
  3931. b9 = Instance.new("BlockMesh", p11)
  3932. b9.Name = "Mesh"
  3933. p12 = Instance.new("Part", m)
  3934. p12.BrickColor = BrickColor.new("Really black")
  3935. p12.FormFactor = Enum.FormFactor.Custom
  3936. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  3937. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  3938. p12.CanCollide = false
  3939. p12.Locked = true
  3940. p12.BottomSurface = Enum.SurfaceType.Smooth
  3941. p12.TopSurface = Enum.SurfaceType.Smooth
  3942. b10 = Instance.new("BlockMesh", p12)
  3943. b10.Name = "Mesh"
  3944. p13 = Instance.new("Part", m)
  3945. p13.BrickColor = BrickColor.new("Really black")
  3946. p13.FormFactor = Enum.FormFactor.Custom
  3947. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  3948. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  3949. p13.CanCollide = false
  3950. p13.Locked = true
  3951. p13.BottomSurface = Enum.SurfaceType.Smooth
  3952. p13.TopSurface = Enum.SurfaceType.Smooth
  3953. b11 = Instance.new("BlockMesh", p13)
  3954. b11.Name = "Mesh"
  3955. p14 = Instance.new("Part", m)
  3956. p14.BrickColor = BrickColor.new("Really red")
  3957. p14.FormFactor = Enum.FormFactor.Symmetric
  3958. p14.Size = Vector3.new(1, 1, 1)
  3959. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  3960. p14.CanCollide = false
  3961. p14.Locked = true
  3962. b12 = Instance.new("SpecialMesh", p14)
  3963. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  3964. b12.TextureId = ""
  3965. b12.MeshType = Enum.MeshType.FileMesh
  3966. b12.Name = "Mesh"
  3967. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  3968. p15 = Instance.new("Part", m)
  3969. p15.BrickColor = BrickColor.new("Medium stone grey")
  3970. p15.Transparency = 1
  3971. p15.Name = "ArmPart"
  3972. p15.FormFactor = Enum.FormFactor.Custom
  3973. p15.Size = Vector3.new(2, 1, 1)
  3974. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  3975. p15.CanCollide = false
  3976. p15.Locked = true
  3977. p15.BottomSurface = Enum.SurfaceType.Smooth
  3978. p15.TopSurface = Enum.SurfaceType.Smooth
  3979. b13 = Instance.new("BlockMesh", p15)
  3980. b13.Name = "Mesh"
  3981. p16 = Instance.new("Part", m)
  3982. p16.BrickColor = BrickColor.new("Really black")
  3983. p16.FormFactor = Enum.FormFactor.Custom
  3984. p16.Size = Vector3.new(3, 1, 2.4000001)
  3985. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  3986. p16.CanCollide = false
  3987. p16.Locked = true
  3988. p16.BottomSurface = Enum.SurfaceType.Smooth
  3989. p16.TopSurface = Enum.SurfaceType.Smooth
  3990. b14 = Instance.new("BlockMesh", p16)
  3991. b14.Name = "Mesh"
  3992. p17 = Instance.new("Part", m)
  3993. p17.BrickColor = BrickColor.new("Really black")
  3994. p17.FormFactor = Enum.FormFactor.Custom
  3995. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  3996. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  3997. p17.CanCollide = false
  3998. p17.Locked = true
  3999. p17.BottomSurface = Enum.SurfaceType.Smooth
  4000. p17.TopSurface = Enum.SurfaceType.Smooth
  4001. b15 = Instance.new("BlockMesh", p17)
  4002. b15.Name = "Mesh"
  4003. p18 = Instance.new("Part", m)
  4004. p18.BrickColor = BrickColor.new("Really red")
  4005. p18.FormFactor = Enum.FormFactor.Symmetric
  4006. p18.Size = Vector3.new(1, 1, 1)
  4007. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  4008. p18.CanCollide = false
  4009. p18.Locked = true
  4010. b16 = Instance.new("SpecialMesh", p18)
  4011. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  4012. b16.TextureId = ""
  4013. b16.MeshType = Enum.MeshType.FileMesh
  4014. b16.Name = "Mesh"
  4015. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  4016. p19 = Instance.new("Part", m)
  4017. p19.BrickColor = BrickColor.new("Really red")
  4018. p19.FormFactor = Enum.FormFactor.Symmetric
  4019. p19.Size = Vector3.new(1, 1, 1)
  4020. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  4021. p19.CanCollide = false
  4022. p19.Locked = true
  4023. b17 = Instance.new("SpecialMesh", p19)
  4024. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  4025. b17.TextureId = ""
  4026. b17.MeshType = Enum.MeshType.FileMesh
  4027. b17.Name = "Mesh"
  4028. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  4029. p20 = Instance.new("Part", m)
  4030. p20.BrickColor = BrickColor.new("Really black")
  4031. p20.FormFactor = Enum.FormFactor.Custom
  4032. p20.Size = Vector3.new(3, 1, 2.4000001)
  4033. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  4034. p20.CanCollide = false
  4035. p20.Locked = true
  4036. p20.BottomSurface = Enum.SurfaceType.Smooth
  4037. p20.TopSurface = Enum.SurfaceType.Smooth
  4038. b18 = Instance.new("BlockMesh", p20)
  4039. b18.Name = "Mesh"
  4040. p21 = Instance.new("Part", m)
  4041. p21.BrickColor = BrickColor.new("Really black")
  4042. p21.FormFactor = Enum.FormFactor.Custom
  4043. p21.Size = Vector3.new(3, 1, 1.19999993)
  4044. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  4045. p21.CanCollide = false
  4046. p21.Locked = true
  4047. p21.BottomSurface = Enum.SurfaceType.Smooth
  4048. p21.TopSurface = Enum.SurfaceType.Smooth
  4049. b19 = Instance.new("BlockMesh", p21)
  4050. b19.Name = "Mesh"
  4051. p22 = Instance.new("WedgePart", m)
  4052. p22.BrickColor = BrickColor.new("Really black")
  4053. p22.Name = "Wedge"
  4054. p22.FormFactor = Enum.FormFactor.Custom
  4055. p22.Size = Vector3.new(3, 1, 0.5)
  4056. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  4057. p22.CanCollide = false
  4058. p22.Locked = true
  4059. p22.BottomSurface = Enum.SurfaceType.Smooth
  4060. p22.TopSurface = Enum.SurfaceType.Smooth
  4061. p23 = Instance.new("Part", m)
  4062. p23.BrickColor = BrickColor.new("Really black")
  4063. p23.FormFactor = Enum.FormFactor.Custom
  4064. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  4065. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  4066. p23.CanCollide = false
  4067. p23.Locked = true
  4068. p23.BottomSurface = Enum.SurfaceType.Smooth
  4069. p23.TopSurface = Enum.SurfaceType.Smooth
  4070. b20 = Instance.new("BlockMesh", p23)
  4071. b20.Name = "Mesh"
  4072. p24 = Instance.new("WedgePart", m)
  4073. p24.BrickColor = BrickColor.new("Really black")
  4074. p24.Name = "Wedge"
  4075. p24.FormFactor = Enum.FormFactor.Custom
  4076. p24.Size = Vector3.new(3, 1, 0.5)
  4077. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  4078. p24.CanCollide = false
  4079. p24.Locked = true
  4080. p24.BottomSurface = Enum.SurfaceType.Smooth
  4081. p24.TopSurface = Enum.SurfaceType.Smooth
  4082. p25 = Instance.new("Part", m)
  4083. p25.BrickColor = BrickColor.new("Really red")
  4084. p25.FormFactor = Enum.FormFactor.Symmetric
  4085. p25.Size = Vector3.new(1, 1, 1)
  4086. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  4087. p25.CanCollide = false
  4088. p25.Locked = true
  4089. p25.BottomSurface = Enum.SurfaceType.Smooth
  4090. p25.TopSurface = Enum.SurfaceType.Smooth
  4091. b21 = Instance.new("SpecialMesh", p25)
  4092. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4093. b21.TextureId = ""
  4094. b21.MeshType = Enum.MeshType.FileMesh
  4095. b21.Name = "Mesh"
  4096. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  4097. p26 = Instance.new("Part", m)
  4098. p26.BrickColor = BrickColor.new("Really black")
  4099. p26.FormFactor = Enum.FormFactor.Symmetric
  4100. p26.Size = Vector3.new(1, 1, 1)
  4101. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  4102. p26.CanCollide = false
  4103. p26.Locked = true
  4104. p26.BottomSurface = Enum.SurfaceType.Smooth
  4105. p26.TopSurface = Enum.SurfaceType.Smooth
  4106. b22 = Instance.new("SpecialMesh", p26)
  4107. b22.MeshType = Enum.MeshType.Brick
  4108. b22.Name = "Mesh"
  4109. w1 = Instance.new("Weld", p1)
  4110. w1.Name = "Wedge_Weld"
  4111. w1.Part0 = p1
  4112. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  4113. w1.Part1 = p2
  4114. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  4115. w2 = Instance.new("Weld", p2)
  4116. w2.Name = "Part_Weld"
  4117. w2.Part0 = p2
  4118. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  4119. w2.Part1 = p3
  4120. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  4121. w3 = Instance.new("Weld", p3)
  4122. w3.Name = "Wedge_Weld"
  4123. w3.Part0 = p3
  4124. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  4125. w3.Part1 = p4
  4126. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  4127. w4 = Instance.new("Weld", p4)
  4128. w4.Name = "Part_Weld"
  4129. w4.Part0 = p4
  4130. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  4131. w4.Part1 = p5
  4132. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  4133. w5 = Instance.new("Weld", p5)
  4134. w5.Name = "Part_Weld"
  4135. w5.Part0 = p5
  4136. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  4137. w5.Part1 = p6
  4138. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  4139. w6 = Instance.new("Weld", p6)
  4140. w6.Name = "Part_Weld"
  4141. w6.Part0 = p6
  4142. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  4143. w6.Part1 = p7
  4144. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  4145. w7 = Instance.new("Weld", p7)
  4146. w7.Name = "Part_Weld"
  4147. w7.Part0 = p7
  4148. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  4149. w7.Part1 = p8
  4150. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  4151. w8 = Instance.new("Weld", p8)
  4152. w8.Name = "Part_Weld"
  4153. w8.Part0 = p8
  4154. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  4155. w8.Part1 = p9
  4156. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  4157. w9 = Instance.new("Weld", p9)
  4158. w9.Name = "Part_Weld"
  4159. w9.Part0 = p9
  4160. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  4161. w9.Part1 = p10
  4162. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  4163. w10 = Instance.new("Weld", p10)
  4164. w10.Name = "Part_Weld"
  4165. w10.Part0 = p10
  4166. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  4167. w10.Part1 = p11
  4168. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  4169. w11 = Instance.new("Weld", p11)
  4170. w11.Name = "Part_Weld"
  4171. w11.Part0 = p11
  4172. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  4173. w11.Part1 = p12
  4174. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  4175. w12 = Instance.new("Weld", p12)
  4176. w12.Name = "Part_Weld"
  4177. w12.Part0 = p12
  4178. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  4179. w12.Part1 = p13
  4180. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  4181. w13 = Instance.new("Weld", p13)
  4182. w13.Name = "Part_Weld"
  4183. w13.Part0 = p13
  4184. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  4185. w13.Part1 = p14
  4186. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  4187. w14 = Instance.new("Weld", p14)
  4188. w14.Name = "ArmPart_Weld"
  4189. w14.Part0 = p14
  4190. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  4191. w14.Part1 = p15
  4192. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  4193. w15 = Instance.new("Weld", p15)
  4194. w15.Name = "Part_Weld"
  4195. w15.Part0 = p15
  4196. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  4197. w15.Part1 = p16
  4198. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  4199. w16 = Instance.new("Weld", p16)
  4200. w16.Name = "Part_Weld"
  4201. w16.Part0 = p16
  4202. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  4203. w16.Part1 = p17
  4204. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  4205. w17 = Instance.new("Weld", p17)
  4206. w17.Name = "Part_Weld"
  4207. w17.Part0 = p17
  4208. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  4209. w17.Part1 = p18
  4210. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  4211. w18 = Instance.new("Weld", p18)
  4212. w18.Name = "Part_Weld"
  4213. w18.Part0 = p18
  4214. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  4215. w18.Part1 = p19
  4216. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  4217. w19 = Instance.new("Weld", p19)
  4218. w19.Name = "Part_Weld"
  4219. w19.Part0 = p19
  4220. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  4221. w19.Part1 = p20
  4222. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  4223. w20 = Instance.new("Weld", p20)
  4224. w20.Name = "Part_Weld"
  4225. w20.Part0 = p20
  4226. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  4227. w20.Part1 = p21
  4228. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  4229. w21 = Instance.new("Weld", p21)
  4230. w21.Name = "Wedge_Weld"
  4231. w21.Part0 = p21
  4232. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  4233. w21.Part1 = p22
  4234. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  4235. w22 = Instance.new("Weld", p22)
  4236. w22.Name = "Part_Weld"
  4237. w22.Part0 = p22
  4238. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  4239. w22.Part1 = p23
  4240. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  4241. w23 = Instance.new("Weld", p23)
  4242. w23.Name = "Wedge_Weld"
  4243. w23.Part0 = p23
  4244. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  4245. w23.Part1 = p24
  4246. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  4247. w24 = Instance.new("Weld", p24)
  4248. w24.Name = "Part_Weld"
  4249. w24.Part0 = p24
  4250. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  4251. w24.Part1 = p25
  4252. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  4253. w25 = Instance.new("Weld", p25)
  4254. w25.Name = "Part_Weld"
  4255. w25.Part0 = p25
  4256. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  4257. w25.Part1 = p26
  4258. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  4259. m.Parent = char
  4260. m:MakeJoints()
  4261. ----------------------------------------------------
  4262. local cor2 = Instance.new("Part", char.Claw)
  4263. cor2.Name = "Thingy"
  4264. cor2.Locked = true
  4265. cor2.BottomSurface = 0
  4266. cor2.CanCollide = false
  4267. cor2.Size = Vector3.new(2, 1, 1)
  4268. cor2.Transparency = 1
  4269. cor2.TopSurface = 0
  4270. corw2 = Instance.new("Weld", cor2)
  4271. corw2.Part0 = larm
  4272. corw2.Part1 = cor2
  4273. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  4274. corw2.C1 = CFrame.new(0, 0, 0)
  4275. weld2 = Instance.new("Weld", char.Claw)
  4276. weld2.Part0 = cor2
  4277. weld2.Part1 = char.Claw.ArmPart
  4278. weld2.C0 = CFrame.new(0, 0, 0)
  4279. ----------------------------------------------------
  4280. function weld5(part0, part1, c0, c1)
  4281.     weeld=Instance.new("Weld", part0)
  4282.     weeld.Part0=part0
  4283.     weeld.Part1=part1
  4284.     weeld.C0=c0
  4285.     weeld.C1=c1
  4286.     return weeld
  4287. end
  4288. ----------------------------------------------------
  4289. function newRay(start,face,range,wat)
  4290.     local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  4291.     hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  4292.     return rey,hit,pos
  4293. end
  4294. ----------------------------------------------------
  4295. mod5 = Instance.new("Model",char)
  4296.  
  4297. function FindNearestTorso(Position,Distance,SinglePlayer)
  4298.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4299.         local List = {}
  4300.         for i,v in pairs(workspace:GetChildren())do
  4301.             if v:IsA("Model")then
  4302.                 if v:findFirstChild("Torso")then
  4303.                     if v ~= char then
  4304.                         if(v.Torso.Position -Position).magnitude <= Distance then
  4305.                             table.insert(List,v)
  4306.                         end
  4307.                     end
  4308.                 end
  4309.             end
  4310.         end
  4311.     return List
  4312. end
  4313.  
  4314. function Landing()
  4315.     part=Instance.new('Part',mod5)
  4316.     part.Anchored=true
  4317.     part.CanCollide=false
  4318.     part.FormFactor='Custom'
  4319.     part.Size=Vector3.new(.2,.2,.2)
  4320.     part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  4321.     part.Transparency=.7
  4322.     part.BrickColor=BrickColor.new('Really black')
  4323.     mesh=Instance.new('SpecialMesh',part)
  4324.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  4325.     mesh.Scale=Vector3.new(10,5,10)
  4326.  
  4327.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  4328.         if v:FindFirstChild('Humanoid') then
  4329.             v.Humanoid:TakeDamage(math.random(20,30))
  4330.             v.Humanoid.PlatformStand = true
  4331.             v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4332.         end
  4333.     end
  4334.  
  4335.     coroutine.resume(coroutine.create(function()
  4336.         for i=0,3.8,0.05 do
  4337.             wait()
  4338.             part.CFrame=part.CFrame
  4339.             part.Transparency=i
  4340.             mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  4341.             end
  4342.         part.Parent = nil
  4343.     end))
  4344. end
  4345. ----------------------------------------------------
  4346. mod4 = Instance.new("Model",char)
  4347.  
  4348. ptez = {0.7, 0.8, 0.9, 1}
  4349.  
  4350. function FindNearestTorso(Position,Distance,SinglePlayer)
  4351.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4352.         local List = {}
  4353.         for i,v in pairs(workspace:GetChildren())do
  4354.             if v:IsA("Model")then
  4355.                 if v:findFirstChild("Torso")then
  4356.                     if v ~= char then
  4357.                         if(v.Torso.Position -Position).magnitude <= Distance then
  4358.                             table.insert(List,v)
  4359.                         end
  4360.                     end
  4361.                 end
  4362.             end
  4363.         end
  4364.     return List
  4365. end
  4366.  
  4367. function GroundPound()
  4368.     part=Instance.new('Part',mod4)
  4369.     part.Anchored=true
  4370.     part.CanCollide=false
  4371.     part.FormFactor='Custom'
  4372.     part.Size=Vector3.new(.2,.2,.2)
  4373.     part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  4374.     part.Transparency=.7
  4375.     part.BrickColor=BrickColor.new('Really black')
  4376.     mesh=Instance.new('SpecialMesh',part)
  4377.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  4378.     mesh.Scale=Vector3.new(3,3,3)
  4379.     part2=Instance.new('Part',mod4)
  4380.     part2.Anchored=true
  4381.     part2.CanCollide=false
  4382.     part2.FormFactor='Custom'
  4383.     part2.Size=Vector3.new(.2,.2,.2)
  4384.     part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  4385.     part2.Transparency=.7
  4386.     part2.BrickColor=BrickColor.new('Really red')
  4387.     mesh2=Instance.new('SpecialMesh',part2)
  4388.     mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  4389.     mesh2.Scale=Vector3.new(3,1.5,3)
  4390.     x = Instance.new("Sound",char)
  4391.     x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  4392.     x.Pitch = ptez[math.random(1,#ptez)]
  4393.     x.Volume = 1
  4394.     wait(.1)
  4395.     x:Play()
  4396.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  4397.         if v:FindFirstChild('Humanoid') then
  4398.             v.Humanoid:TakeDamage(math.random(8,15))
  4399.         end
  4400.     end
  4401.     coroutine.resume(coroutine.create(function()
  4402.         for i=0,0.62,0.13 do
  4403.             wait()
  4404.             part.CFrame=part.CFrame
  4405.             part.Transparency=i
  4406.             mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  4407.             part2.CFrame=part2.CFrame
  4408.             part2.Transparency=i
  4409.             mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  4410.             end
  4411.         part.Parent=nil
  4412.         part2.Parent=nil
  4413.         x:Destroy()
  4414.     end))
  4415. end
  4416. ----------------------------------------------------
  4417. mod=Instance.new('Model',char)
  4418.  
  4419. function charge()
  4420.     hed.Velocity=hed.CFrame.lookVector*200
  4421.     part=Instance.new('Part',mod)
  4422.     part.Anchored=true
  4423.     part.CanCollide=false
  4424.     part.FormFactor='Custom'
  4425.     part.Size=Vector3.new(.2,.2,.2)
  4426.     part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  4427.     part.Transparency=.7
  4428.     part.BrickColor=BrickColor.new('Black')
  4429.     mesh=Instance.new('SpecialMesh',part)
  4430.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  4431.     mesh.Scale=Vector3.new(10,5,10)
  4432.     part2=part:clone()
  4433.     part2.Parent=mod
  4434.     part2.BrickColor=BrickColor.new('Really red')
  4435.     mesh2=mesh:clone()
  4436.     mesh2.Parent=part2
  4437.     mesh2.Scale=Vector3.new(20,10,20)
  4438.     part3=part2:clone()
  4439.     part3.Parent = mod
  4440.     part3.BrickColor=BrickColor.new('Really black')
  4441.     mesh3=mesh2:clone()
  4442.     mesh2.Parent=part3
  4443.     mesh3.Scale=Vector3.new(30,15,30)
  4444.     coroutine.resume(coroutine.create(function()
  4445.         for i=0,1,0.1 do
  4446.             wait()
  4447.             part.CFrame=part.CFrame
  4448.             part.Transparency=i
  4449.             mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  4450.             part2.CFrame=part2.CFrame
  4451.             part2.Transparency=i
  4452.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  4453.             part3.CFrame=part3.CFrame
  4454.             part3.Transparency=i
  4455.             mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  4456.             end
  4457.         part.Parent=nil
  4458.         part2.Parent=nil
  4459.         part3.Parent = nil
  4460.     end))
  4461. end
  4462. ----------------------------------------------------
  4463. function FindNearestTorso(Position,Distance,SinglePlayer)
  4464.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4465.         local List = {}
  4466.         for i,v in pairs(workspace:GetChildren())do
  4467.             if v:IsA("Model")then
  4468.                 if v:findFirstChild("Torso")then
  4469.                     if v ~= char then
  4470.                         if(v.Torso.Position -Position).magnitude <= Distance then
  4471.                             table.insert(List,v)
  4472.                         end
  4473.                     end
  4474.                 end
  4475.             end
  4476.         end
  4477.     return List
  4478. end
  4479.  
  4480. mod3 = Instance.new("Model",rleg)
  4481.  
  4482. function Stomp()
  4483.     part=Instance.new('Part',mod3)
  4484.     part.Anchored=true
  4485.     part.CanCollide=false
  4486.     part.FormFactor='Custom'
  4487.     part.Size=Vector3.new(.2,.2,.2)
  4488.     part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  4489.     part.Transparency=.7
  4490.     part.BrickColor=BrickColor.new('Bright green')
  4491.     mesh=Instance.new('SpecialMesh',part)
  4492.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  4493.     mesh.Scale=Vector3.new(25,25,25)
  4494.     part2=part:clone()
  4495.     part2.Parent=mod3
  4496.     part2.BrickColor=BrickColor.new('Bright green')
  4497.     mesh2=mesh:clone()
  4498.     mesh2.Parent=part2
  4499.     mesh2.Scale=Vector3.new(15,15,15)
  4500.     part3=part:clone()
  4501.     part3.Parent=mod3
  4502.     part3.TopSurface=0
  4503.     part3.BottomSurface=0
  4504.     part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  4505.     mesh3=Instance.new('SpecialMesh',part3)
  4506.     mesh3.MeshType = 3
  4507.     mesh3.Scale=Vector3.new(12,12,12)
  4508.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  4509.         if v:FindFirstChild('Humanoid') then
  4510.             v.Humanoid:TakeDamage(math.random(20,60))
  4511.             v.Humanoid.PlatformStand = true
  4512.             v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4513.         end
  4514.     end
  4515.     coroutine.resume(coroutine.create(function()
  4516.         for i=0,3.8,0.05 do
  4517.             wait()
  4518.             part.CFrame=part.CFrame
  4519.             part.Transparency=i
  4520.             mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  4521.             part2.CFrame=part2.CFrame
  4522.             part2.Transparency=i
  4523.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  4524.             part3.CFrame=part3.CFrame
  4525.             part3.Transparency=i
  4526.             mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  4527.         end
  4528.     end))
  4529. end
  4530. ----------------------------------------------------
  4531.  
  4532. local acos = math.acos
  4533. local sqrt = math.sqrt
  4534. local Vec3 = Vector3.new
  4535. local fromAxisAngle = CFrame.fromAxisAngle
  4536.  
  4537. local function toAxisAngle(CFr)
  4538.         local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  4539.         local Angle = math.acos((R00+R11+R22-1)/2)
  4540.         local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4541.         A = A == 0 and 0.00001 or A
  4542.         local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4543.         B = B == 0 and 0.00001 or B
  4544.         local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4545.         C = C == 0 and 0.00001 or C
  4546.         local x = (R21-R12)/sqrt(A)
  4547.         local y = (R02-R20)/sqrt(B)
  4548.         local z = (R10-R01)/sqrt(C)
  4549.         return Vec3(x,y,z),Angle
  4550. end
  4551.  
  4552. function ApplyTrig(Num,Func)
  4553.         local Min,Max = Func(0),Func(1)
  4554.         local i = Func(Num)
  4555.         return (i-Min)/(Max-Min)
  4556.         --[[if Func == "sin" then
  4557.                 return (math.sin((1-Num)*math.pi)+1)/2
  4558.         elseif Func == "cos" then
  4559.                 return (math.cos((1-Num)*math.pi)+1)/2
  4560.         end]]
  4561. end
  4562.  
  4563. function LerpCFrame(CFrame1,CFrame2,Num)
  4564.         local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  4565.         return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  4566. end
  4567.  
  4568. function Crater(Torso,Radius)
  4569.         Spawn(function()
  4570.         local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  4571.         local Ignore = {}
  4572.         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4573.                 if v.Character ~= nil then
  4574.                         Ignore[#Ignore+1] = v.Character
  4575.                 end
  4576.         end
  4577.         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  4578.         if Hit == nil then return end
  4579.         local Parts = {}
  4580.         for i = 1,360,10 do
  4581.                 local P = Instance.new("Part",Torso.Parent)
  4582.                 P.Anchored = true
  4583.                 P.FormFactor = "Custom"
  4584.                 P.BrickColor = Hit.BrickColor
  4585.                 P.Material = Hit.Material
  4586.                 P.TopSurface = "Smooth"
  4587.                 P.BottomSurface = "Smooth"
  4588.                 P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  4589.                 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)))
  4590.                 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}
  4591.                 if math.random(0,5) == 0 then -- rubble
  4592.                         local P = Instance.new("Part",Torso.Parent)
  4593.                         P.Anchored = true
  4594.                         P.FormFactor = "Custom"
  4595.                         P.BrickColor = Hit.BrickColor
  4596.                         P.Material = Hit.Material
  4597.                         P.TopSurface = "Smooth"
  4598.                         P.BottomSurface = "Smooth"
  4599.                         P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  4600.                         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)))
  4601.                         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}
  4602.                 end
  4603.         end
  4604.         for i = 0,1,0.05 do
  4605.                 for i2,v in pairs(Parts) do
  4606.                         v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  4607.                 end
  4608.                 wait(0.02)
  4609.         end
  4610.         for i,v in pairs(Parts) do
  4611.                 if v[1].Size.X > 2.1 then
  4612.                         v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  4613.                 end
  4614.                 v[1].Anchored = false
  4615.         end
  4616.         for i = 0,1,0.05 do
  4617.                 for i2,v in pairs(Parts) do
  4618.                         v[1].Transparency = i
  4619.                         if i == 1 then
  4620.                                 v[1]:Destroy()
  4621.                         elseif i >= 0.25 then
  4622.                                 v[1].CanCollide = false
  4623.                         end
  4624.                 end
  4625.                 wait(0.02)
  4626.         end
  4627.         Parts = nil
  4628.         end)
  4629. end
  4630.  
  4631. ----------------------------------------------------
  4632. mouse.KeyDown:connect(function(key)
  4633.     if key == "r" then
  4634.         larm.BrickColor = BrickColor.new("Really red")
  4635.         rarm.BrickColor = BrickColor.new("Really red")
  4636.         if Debounces.CanAttack == true then
  4637.         Debounces.CanAttack = false
  4638.         Debounces.on = true
  4639.         Debounces.NoIdl = true
  4640. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  4641.         hit = ht.Parent
  4642.         if ht and hit:IsA("Model") then
  4643.                 if hit:FindFirstChild("Humanoid") then
  4644.                     if hit.Name ~= p.Name then
  4645.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4646.                                 Debounces.Slashed = true]]--
  4647.                                     hit:FindFirstChild("Humanoid"):TakeDamage(10)
  4648.                                 wait(1)
  4649.                                 --Debounces.Slashed = false
  4650.                         --end
  4651.                     end
  4652.                 end
  4653.         elseif ht and hit:IsA("Hat") then
  4654.             if hit.Parent.Name ~= p.Name then
  4655.                 if hit.Parent:FindFirstChild("Humanoid") then
  4656.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4657.                                 Debounces.Slashed = true]]--
  4658.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  4659.                                 wait(1)
  4660.                     --Debounces.Slashed = false
  4661.                 end
  4662.             end
  4663.         end    
  4664.     end)
  4665. q = Instance.new("Sound",hed)
  4666. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  4667. q.Pitch = 0.85
  4668. q.Looped = false
  4669. q1 = Instance.new("Sound",hed)
  4670. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  4671. q1.Pitch = 0.85
  4672. q1.Looped = false
  4673. q:Play()
  4674. q1:Play()
  4675.     for i = 1,20 do
  4676.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  4677.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  4678.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  4679.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  4680.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  4681.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  4682.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  4683.         if Debounces.on == false then break end
  4684.     wait()
  4685. end
  4686. n = Instance.new("Sound",hed)
  4687. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  4688. n.Pitch = 0.94
  4689. n.Looped = false
  4690. n1 = Instance.new("Sound",hed)
  4691. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  4692. n1.Pitch = 0.94
  4693. n1.Looped = false
  4694. n:Play()
  4695. n1:Play()
  4696. b = Instance.new("Sound",hed)
  4697. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  4698. b.Pitch = 0.94
  4699. b.Looped = false
  4700. b1 = Instance.new("Sound",hed)
  4701. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  4702. b1.Pitch = 0.94
  4703. b1.Looped = false
  4704. b:Play()
  4705. b1:Play()
  4706.     for i = 1,26 do
  4707.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  4708.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  4709.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  4710.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  4711.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  4712.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  4713.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  4714.         if Debounces.on == false then break end
  4715.     wait()
  4716. end
  4717. wait(.5)
  4718. to:disconnect()
  4719. q:Destroy()
  4720. q1:Destroy()
  4721. n:Destroy()
  4722. n1:Destroy()
  4723. larm.BrickColor = BrickColor.new("Really black")
  4724. rarm.BrickColor = BrickColor.new("Really black")
  4725.     if Debounces.CanAttack == false then
  4726.         Debounces.CanAttack = true
  4727.         Debounces.on = false
  4728.         Debounces.NoIdl = false
  4729.             end
  4730.         end
  4731.     end
  4732. end)
  4733. ----------------------------------------------------
  4734. mouse.KeyDown:connect(function(key)
  4735.     if key == "q" then
  4736.         larm.BrickColor = BrickColor.new("Really red")
  4737.         rarm.BrickColor = BrickColor.new("Really red")
  4738.         if Debounces.CanAttack == true then
  4739.         Debounces.CanAttack = false
  4740.         Debounces.on = true
  4741.         Debounces.NoIdl = true
  4742. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  4743.         hit = ht.Parent
  4744.         if ht and hit:IsA("Model") then
  4745.                 if hit:FindFirstChild("Humanoid") then
  4746.                     if hit.Name ~= p.Name then
  4747.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4748.                                 Debounces.Slashed = true]]--
  4749.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  4750.                                 wait(1)
  4751.                                 --Debounces.Slashed = false
  4752.                         --end
  4753.                     end
  4754.                 end
  4755.         elseif ht and hit:IsA("Hat") then
  4756.             if hit.Parent.Name ~= p.Name then
  4757.                 if hit.Parent:FindFirstChild("Humanoid") then
  4758.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4759.                                 Debounces.Slashed = true]]--
  4760.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  4761.                                 wait(1)
  4762.                     --Debounces.Slashed = false
  4763.                 end
  4764.             end
  4765.         end    
  4766.     end)
  4767.         for i = 1, 20 do
  4768.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  4769.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  4770.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  4771.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  4772.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  4773.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  4774.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4775.         if Debounces.on == false then break end
  4776.         wait()
  4777.     end
  4778.     z = Instance.new("Sound",hed)
  4779.     z.SoundId = "rbxassetid://160069154"
  4780.     z.Looped = false
  4781.     z.Pitch = .9
  4782.     z1 = Instance.new("Sound",hed)
  4783.     z1.SoundId = "rbxassetid://160069154"
  4784.     z1.Looped = false
  4785.     z1.Pitch = .9
  4786.     wait(0.01)
  4787.     z:Play()
  4788.     z1:Play()
  4789.         for i = 1, 12 do
  4790.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  4791.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  4792.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  4793.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  4794.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  4795.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  4796.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4797.         if Debounces.on == false then break end
  4798.         wait()
  4799.     end
  4800.         for i = 1, 12 do
  4801.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  4802.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  4803.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  4804.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  4805.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  4806.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  4807.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4808.         if Debounces.on == false then break end
  4809.         wait()
  4810.     end
  4811.     z = Instance.new("Sound",hed)
  4812.     z.SoundId = "rbxassetid://168586621"
  4813.     z.Looped = false
  4814.     z.Pitch = 1
  4815.     z1 = Instance.new("Sound",hed)
  4816.     z1.SoundId = "rbxassetid://168586621"
  4817.     z1.Looped = false
  4818.     z1.Pitch = 1
  4819.     wait(0.01)
  4820.     z:Play()
  4821.     z1:Play()
  4822.         for i = 1, 12 do
  4823.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  4824.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  4825.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  4826.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  4827.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  4828.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  4829.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  4830.         if Debounces.on == false then break end
  4831.         wait()
  4832.     end
  4833. to:disconnect()
  4834. larm.BrickColor = BrickColor.new("Really black")
  4835. rarm.BrickColor = BrickColor.new("Really black")
  4836.     if Debounces.CanAttack == false then
  4837.         Debounces.CanAttack = true
  4838.         Debounces.on = false
  4839.         Debounces.NoIdl = false
  4840.             end
  4841.         end
  4842.     end
  4843. end)
  4844. ----------------------------------------------------
  4845. Sit = false
  4846. mouse.KeyDown:connect(function(key)
  4847.     if key == "v" then
  4848.         if Sit == false then
  4849.             Sit = true
  4850.             hum.WalkSpeed = 0.0001
  4851.         stanceToggle = "Sitting"
  4852.     elseif Sit == true then
  4853.         Sit = false
  4854.             hum.WalkSpeed = 30
  4855.         stanceToggle = "Normal"
  4856.         end
  4857.     end
  4858. end)
  4859. ----------------------------------------------------
  4860. mouse.KeyDown:connect(function(key)
  4861.     if key == "t" then
  4862.         if Debounces.CanAttack == true then
  4863.         Debounces.CanAttack = false
  4864.         Debounces.on = true
  4865.         Debounces.NoIdl = true
  4866.         for i = 1, 20 do
  4867.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  4868.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  4869.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  4870.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  4871.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  4872.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  4873.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  4874.             if Debounces.on == false then break end
  4875.             wait()
  4876.         end
  4877.         Spawn(function()
  4878.             local Parts = {}
  4879.             for Y = -5,5 do
  4880.                 local P = Instance.new("Part",char)
  4881.                 P.Anchored = true
  4882.                 P.FormFactor = "Custom"
  4883.                 P.CanCollide = false
  4884.                 P.Size = Vector3.new(1,2,1)
  4885.                 P.TopSurface = "SmoothNoOutlines"
  4886.                 P.BottomSurface = "SmoothNoOutlines"
  4887.                 P.BrickColor = BrickColor.new("Really black")
  4888.                 P.Name = tostring(Y)
  4889.                 local i = (Y+5)/(10)
  4890.                 i = 1-math.cos(math.pi*i-(math.pi/2))
  4891.                 P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  4892.                 --[[P.Touched:connect(function(ht)
  4893.                     local hit = ht.Parent
  4894.                     if hit:FindFirstChild("Humanoid") then
  4895.                         hit.Humanoid:TakeDamage(math.random(20,50))
  4896.                     end
  4897.                 end)]]--
  4898.         s = Instance.new("Sound",P)
  4899.         s.SoundId = "rbxassetid://228343271"
  4900.         s.Volume = .7
  4901.         s.Pitch = 0.9
  4902.         s:Play()
  4903. P.Touched:connect(function(ht)
  4904.         hit = ht.Parent
  4905.         if ht and hit:IsA("Model") then
  4906.                 if hit:FindFirstChild("Humanoid") then
  4907.                     if hit.Name ~= p.Name then
  4908.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4909.                                 Debounces.Slashed = true]]--
  4910.                                     hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  4911.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  4912.                                 wait(1)
  4913.                                 --Debounces.Slashed = false
  4914.                         --end
  4915.                 end
  4916.                 end
  4917.         elseif ht and hit:IsA("Hat") then
  4918.             if hit.Parent.Name ~= p.Name then
  4919.                 if hit.Parent:FindFirstChild("Humanoid") then
  4920.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4921.                                 Debounces.Slashed = true]]--
  4922.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  4923.                                 hit:FindFirstChild("Humanoid").PlatformStand = true
  4924.                                 wait(1)
  4925.                     --Debounces.Slashed = false
  4926.                 --end
  4927.             end
  4928.         end
  4929.     end
  4930. end)
  4931.                 Parts[#Parts+1] = P
  4932.             end
  4933.             local BREAKIT = false
  4934.             local CParts = {}
  4935.             local Rocks = {}
  4936.             local LastPos = nil
  4937.             for i = 1,70 do
  4938.                 for i2,v in pairs(Parts) do
  4939.                     v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  4940.                     local cf = v.CFrame
  4941.                     v.Size = v.Size+Vector3.new(0.4,0.35,0)
  4942.                     v.CFrame = cf
  4943.                     v.Transparency = v.Transparency+0.02
  4944.                     if v.Transparency >= 0.975 then BREAKIT = true end
  4945.                     if v.Name == "0" then
  4946.                         local Ignore = {}
  4947.                         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4948.                             if v.Character ~= nil then
  4949.                                 Ignore[#Ignore+1] = v.Character
  4950.                             end
  4951.                         end
  4952.                         local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  4953.                         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  4954.                         if Hit ~= nil then
  4955.                             if #Rocks == 0 then
  4956.                                 for i = 1,5 do
  4957.                                     local P = Instance.new("Part",char)
  4958.                                     Rocks[#Rocks+1] = P
  4959.                                     P.Anchored = true
  4960.                                     P.FormFactor = "Custom"
  4961.                                     P.BrickColor = Hit.BrickColor
  4962.                                     P.Material = Hit.Material
  4963.                                     P.TopSurface = "Smooth"
  4964.                                     P.BottomSurface = "Smooth"
  4965.                                     P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  4966.                                 end
  4967.                             end
  4968.                             for i,P in pairs(Rocks) do
  4969.                                 P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  4970.                             end
  4971.                             local P = Instance.new("Part",char)
  4972.                             CParts[#CParts+1] = {P,tick()}
  4973.                             P.Anchored = true
  4974.                             P.FormFactor = "Custom"
  4975.                             P.BrickColor = Hit.BrickColor
  4976.                             P.Material = Hit.Material
  4977.                             P.TopSurface = "Smooth"
  4978.                             P.BottomSurface = "Smooth"
  4979.                             P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  4980.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  4981.                             Pos = Pos.p
  4982.                             P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  4983.                             local P = P:Clone()
  4984.                             CParts[#CParts+1] = {P,tick()}
  4985.                             P.Parent = char
  4986.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  4987.                             Pos = Pos.p
  4988.                             P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  4989.                             if LastPos ~= nil then
  4990.                                 local P = P:Clone()
  4991.                                 CParts[#CParts+1] = {P,tick()}
  4992.                                 P.Parent = char
  4993.                                 P.BrickColor = BrickColor.new("Really black")
  4994.                                 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  4995.                                 Pos = Pos.p
  4996.                                 local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  4997.                                 P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  4998.                                 --P.Velocity = Vector3.new(0,-1000,0)
  4999.                                 P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  5000.                             end
  5001.                             LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  5002.                         end
  5003.                     end
  5004.                 end
  5005.                 if BREAKIT then break end
  5006.                 wait(0.002)
  5007.             end
  5008.             for i,v in pairs(Rocks) do
  5009.                 CParts[#CParts+1] = {v,tick()}
  5010.             end
  5011.             for i,v in pairs(Parts) do
  5012.                 v:Destroy()
  5013.             end
  5014.             Parts = nil
  5015.             while true do
  5016.                 local t = tick()
  5017.                 local p = nil
  5018.                 for i,v in pairs(CParts) do
  5019.                     if t-v[2] > 4 then
  5020.                         v[1].Transparency = v[1].Transparency+0.05
  5021.                         if v[1].Transparency >= 1 then
  5022.                             v[1]:Destroy()
  5023.                             CParts[i] = nil
  5024.                         end
  5025.                     end
  5026.                     p = v
  5027.                 end
  5028.                 if p == nil then break end
  5029.                 wait(0.002)
  5030.             end
  5031.             for i,v in pairs(CParts) do
  5032.                 v:Destroy()
  5033.             end
  5034.             CParts = {}
  5035.         end)
  5036.         for i = 1, 20 do
  5037.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  5038.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  5039.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  5040.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  5041.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  5042.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  5043.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  5044.             if Debounces.on == false then break end
  5045.             wait()
  5046.         end
  5047.     if Debounces.CanAttack == false then
  5048.         Debounces.CanAttack = true
  5049.         Debounces.on = false
  5050.         Debounces.NoIdl = false
  5051.             end
  5052.         end
  5053.     end
  5054. end)
  5055. ----------------------------------------------------
  5056. mouse.KeyDown:connect(function(key)
  5057.     if key == "e" then
  5058.     larm.BrickColor = BrickColor.new("Really red")
  5059.     rarm.BrickColor = BrickColor.new("Really red")
  5060.         if Debounces.CanAttack == true then
  5061.         Debounces.CanAttack = false
  5062.         Debounces.on = true
  5063.         Debounces.NoIdl = true
  5064.         for i = 1, 18 do
  5065.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  5066.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  5067.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  5068.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  5069.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  5070.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  5071.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5072.         if Debounces.on == false then break end
  5073.             wait()
  5074.         end
  5075.         local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5076.         local rng = Instance.new("Part", char.Absolution.Handle)
  5077.         rng.Anchored = true
  5078.         rng.BrickColor = BrickColor.new("Really black")
  5079.         rng.CanCollide = true
  5080.         rng.FormFactor = 3
  5081.         rng.Name = "Ring"
  5082.         rng.Size = Vector3.new(1, 1, 1)
  5083.         rng.CanCollide = false
  5084.         rng.Transparency = 0.35
  5085.         rng.TopSurface = 0
  5086.         rng.BottomSurface = 0
  5087.         rng.CFrame = HandCF
  5088.         local rngm = Instance.new("SpecialMesh", rng)
  5089.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5090.         rngm.Scale = Vector3.new(1, 1, 2)
  5091.             x = Instance.new("Sound", hed)
  5092.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5093.             x.Looped = false
  5094.             x.Pitch = .7
  5095.             x.Volume = 1
  5096.             x1 = Instance.new("Sound", hed)
  5097.             x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5098.             x1.Looped = false
  5099.             x1.Pitch = .7
  5100.             x1.Volume = 1
  5101.             x:Play()
  5102.             x1:Play()
  5103.             rngto = rng.Touched:connect(function(ht)
  5104.             hit = ht.Parent
  5105.             if ht and hit:IsA("Model") then
  5106.                     if hit:FindFirstChild("Humanoid") then
  5107.                         if hit.Name ~= p.Name then
  5108.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5109.                                     Debounces.Slashed = true]]--
  5110.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  5111.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  5112.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  5113.                                     --Debounces.Slashed = false
  5114.                             --end
  5115.                         end
  5116.                     end
  5117.             elseif ht and hit:IsA("Hat") then
  5118.                 if hit.Parent.Name ~= p.Name then
  5119.                     if hit.Parent:FindFirstChild("Humanoid") then
  5120.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  5121.                                     Debounces.Slashed = true]]--
  5122.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  5123.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  5124.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  5125.                         --Debounces.Slashed = false
  5126.                     end
  5127.                 end
  5128.             end    
  5129.         end)
  5130.                 coroutine.wrap(function()
  5131.                 for i = 1, 60, 2 do
  5132.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5133.                 rng.Size = rngm.Scale
  5134.                 rng.CFrame = HandCF
  5135.                 rng.Transparency = i/60
  5136.                 wait()
  5137.                 end
  5138.                 wait()
  5139.                 rng:Destroy()
  5140.                 end)()
  5141.         for i = 1, 18 do
  5142.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  5143.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  5144.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  5145.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  5146.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  5147.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  5148.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5149.         if Debounces.on == false then break end
  5150.             wait()
  5151.         end
  5152.         larm.BrickColor = BrickColor.new("Really black")
  5153.         rarm.BrickColor = BrickColor.new("Really black")
  5154.         x:Destroy()
  5155.         x1:Destroy()
  5156.     if Debounces.CanAttack == false then
  5157.         Debounces.CanAttack = true
  5158.         Debounces.on = false
  5159.         Debounces.NoIdl = false
  5160.             end
  5161.         end
  5162.     end
  5163. end)
  5164. ----------------------------------------------------
  5165. mouse.KeyDown:connect(function(key)
  5166.     if key == "y" then
  5167.         if Debounces.CanAttack == true then
  5168.             Debounces.CanAttack = false
  5169.             Debounces.on = true
  5170.             Debounces.NoIdl = true
  5171.                 for i = 1, 15 do
  5172.                     rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  5173.                     larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  5174.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  5175.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  5176.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5177.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5178.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5179.                     if Debounces.on == false then break end
  5180.                     wait()
  5181.                 end
  5182.                 x = Instance.new("Sound",char)
  5183.                 x.SoundId = "rbxassetid://228343271"
  5184.                 x.Pitch = 1
  5185.                 x.Volume = .8
  5186.                 wait(.1)
  5187.                 x:Play()
  5188.                 Debounces.on = false
  5189.                 Debounces.Here = false
  5190.                 shot = shot + 1
  5191. local rng = Instance.new("Part", char)
  5192. rng.Anchored = true
  5193. rng.BrickColor = BrickColor.new("Really black")
  5194. rng.CanCollide = false
  5195. rng.FormFactor = 3
  5196. rng.Name = "Ring"
  5197. rng.Size = Vector3.new(1, 1, 1)
  5198. rng.Transparency = 0.35
  5199. rng.TopSurface = 0
  5200. rng.BottomSurface = 0
  5201. rng2 = rng:clone()
  5202. rng3 = rng2:clone()
  5203. rng4 = rng2:clone()
  5204. local rngm = Instance.new("SpecialMesh", rng)
  5205. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5206. rngm.Scale = Vector3.new(10, 10, 1)
  5207. rngm2 = rngm:clone()
  5208. rngm2.Scale = Vector3.new(5, 5, 1)
  5209. rngm3=rngm2:clone()
  5210. rngm3.Parent = rng3
  5211. rngm3.Scale = Vector3.new(8, 8, 1)
  5212. rngm4 = rngm2:clone()
  5213. rngm4.Parent = rng4
  5214. rngm4.Scale = Vector3.new(6, 6, 1)
  5215. local bem = Instance.new("Part", char)
  5216. bem.Anchored = true
  5217. bem.BrickColor = BrickColor.new("Really black")
  5218. bem.CanCollide = false
  5219. bem.FormFactor = 3
  5220. bem.Name = "Beam" .. shot
  5221. bem.Size = Vector3.new(1, 1, 1)
  5222. bem.Transparency = 0.35
  5223. bem.TopSurface = 0
  5224. bem.BottomSurface = 0
  5225. local bemm = Instance.new("SpecialMesh", bem)
  5226. bemm.MeshType = 4
  5227. bemm.Scale = Vector3.new(1, 4, 4)
  5228. local out = Instance.new("Part", char)
  5229. out.Anchored = true
  5230. out.BrickColor = BrickColor.new("Really black")
  5231. out.CanCollide = false
  5232. out.FormFactor = 3
  5233. out.Name = "Out"
  5234. out.Size = Vector3.new(4, 4, 4)
  5235. out.Transparency = 0.35
  5236. out.TopSurface = 0
  5237. out.BottomSurface = 0
  5238. local outm = Instance.new("SpecialMesh", out)
  5239. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  5240. outm.Scale = Vector3.new(4, 4, 4)
  5241. local bnd = Instance.new("Part", char)
  5242. bnd.Anchored = true
  5243. bnd.BrickColor = BrickColor.new("Really black")
  5244. bnd.CanCollide = false
  5245. bnd.FormFactor = 3
  5246. bnd.Name = "Bend"
  5247. bnd.Size = Vector3.new(1, 1, 1)
  5248. bnd.Transparency = 1
  5249. bnd.TopSurface = 0
  5250. bnd.BottomSurface = 0
  5251. local bndm = Instance.new("SpecialMesh", bnd)
  5252. bndm.MeshType = 3
  5253. bndm.Scale = Vector3.new(8, 8, 8)
  5254. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  5255. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  5256. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  5257. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  5258. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  5259. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  5260. Debounces.Shewt = true
  5261. coroutine.wrap(function()
  5262. for i = 1, 20, 0.2 do
  5263. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  5264. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  5265. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  5266. rng.Transparency = i/20
  5267. rng3.Transparency = 1/16
  5268. rng4.Transparency = i/12
  5269. wait()
  5270. end
  5271. wait()
  5272. rng:Destroy()
  5273. end)()
  5274. if Debounces.Shewt == true then
  5275. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  5276. hit = ht.Parent
  5277. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  5278. if HasntTouched(hit.Name) == true and deb == false then
  5279. deb = true
  5280. coroutine.wrap(function()
  5281. hit:FindFirstChild("Humanoid").PlatformStand = true
  5282. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  5283. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  5284. end)()
  5285. table.insert(Touche, hit.Name)
  5286. deb = false
  5287. end
  5288. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  5289. if HasntTouched(hit.Parent.Name) == true and deb == false then
  5290. deb = true
  5291. coroutine.wrap(function()
  5292. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  5293. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  5294. wait(1)
  5295. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  5296. end)()
  5297. table.insert(Touche, hit.Parent.Name)
  5298. deb = false
  5299. for i, v in pairs(Touche) do
  5300. print(v)
  5301. end
  5302. end
  5303. end
  5304. end)
  5305. end
  5306. for i = 0, 260, 8 do
  5307. bem.Size = Vector3.new(i, 2, 2)
  5308. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  5309. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  5310. bnd.Size = Vector3.new(1,1,1)
  5311. bndm.Scale = Vector3.new(8,8,8)
  5312. if i % 10 == 0 then
  5313. local newRng = rng2:Clone()
  5314. newRng.Parent = char
  5315. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  5316. local newRngm = rngm2:clone()
  5317. newRngm.Parent=newRng
  5318. coroutine.wrap(function()
  5319. for i = 1, 10, 0.2 do
  5320. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  5321. newRng.Transparency = i/10
  5322. wait()
  5323. end
  5324. wait()
  5325. newRng:Destroy()
  5326. end)()
  5327. end
  5328. wait()
  5329. end
  5330. wait()
  5331. Debounces.Shewt = false
  5332. bem:Destroy()
  5333. out:Destroy()
  5334. bnd:Destroy()
  5335. Debounces.Ready = false
  5336. for i, v in pairs(Touche) do
  5337. table.remove(Touche, i)
  5338. end
  5339. wait()
  5340. table.insert(Touche, char.Name)
  5341. Debounces.NoIdl = false
  5342. if Debounces.CanAttack == false then
  5343. Debounces.CanAttack = true
  5344. end
  5345. end
  5346. end
  5347. end)
  5348. ----------------------------------------------------
  5349. sidz = {"231917888", "231917845", "231917806"}
  5350. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  5351. mouse.KeyDown:connect(function(key)
  5352.     if key == "f" then
  5353.     larm.BrickColor = BrickColor.new("Really red")
  5354.     rarm.BrickColor = BrickColor.new("Really red")
  5355.         if Debounces.CanAttack == true then
  5356.             Debounces.CanAttack = false
  5357.             Debounces.on = true
  5358.             Debounces.NoIdl = true
  5359.                 for i = 1, 10 do
  5360.                     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.4)
  5361.                     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.4)
  5362.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  5363.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  5364.                     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)
  5365.                     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)
  5366.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5367.                     if Debounces.on == false then break end
  5368.                     wait()
  5369.                 end
  5370.                 z = Instance.new("Sound",char)
  5371.                 z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  5372.                 z.Pitch = ptz[math.random(1,#ptz)]
  5373.                 z.Volume = 1
  5374.                 z1 = Instance.new("Sound",char)
  5375.                 z1.SoundId = z.SoundId
  5376.                 z1.Pitch = z.Pitch
  5377.                 z1.Volume = 1
  5378.                 wait(1)
  5379.                 z:Play()
  5380.                 z1:Play()
  5381.                 Stomp()
  5382.                 for i = 1, 20 do
  5383.                     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.6)
  5384.                     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.6)
  5385.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  5386.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  5387.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  5388.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  5389.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5390.                     if Debounces.on == false then break end
  5391.                     wait()
  5392.                 end
  5393.         if Debounces.CanAttack == false then
  5394.             Debounces.CanAttack = true
  5395.             Debounces.on = false
  5396.             Debounces.NoIdl = false
  5397.             larm.BrickColor = BrickColor.new("Really black")
  5398.             rarm.BrickColor = BrickColor.new("Really black")
  5399.             end
  5400.         end
  5401.     end
  5402. end)    
  5403. ----------------------------------------------------
  5404. mouse.KeyDown:connect(function(key)
  5405.     if key == "g" then
  5406.     larm.BrickColor = BrickColor.new("Really red")
  5407.     rarm.BrickColor = BrickColor.new("Really red")
  5408.         if Debounces.CanAttack == true then
  5409.         Debounces.CanAttack = false
  5410.         Debounces.on = true
  5411.         Debounces.NoIdl = true
  5412.         chrg = lleg.Touched:connect(function(ht)
  5413.         hit = ht.Parent
  5414.             if ht and hit:IsA("Model") then
  5415.                     if hit:FindFirstChild("Humanoid") then
  5416.                         if hit.Name ~= p.Name then
  5417.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5418.                                     Debounces.Slashed = true]]--
  5419.                                     hit:FindFirstChild("Humanoid"):TakeDamage(2)
  5420.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  5421.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  5422.                                     --Debounces.Slashed = false
  5423.                             --end
  5424.                         end
  5425.                     end
  5426.             elseif ht and hit:IsA("Hat") then
  5427.                 if hit.Parent.Name ~= p.Name then
  5428.                     if hit.Parent:FindFirstChild("Humanoid") then
  5429.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  5430.                                     Debounces.Slashed = true]]--
  5431.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  5432.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  5433.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  5434.                         --Debounces.Slashed = false
  5435.                     end
  5436.                 end
  5437.             end    
  5438.         end)
  5439.         for i = 1, 14 do
  5440.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  5441.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  5442.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  5443.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  5444.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  5445.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  5446.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  5447.             if Debounces.on == false then break end
  5448.             wait()
  5449.         end
  5450.         charge()
  5451.         z = Instance.new("Sound",char)
  5452.         z.SoundId = "rbxassetid://200632875"
  5453.         z.Volume = 1
  5454.         z.Pitch = .8
  5455.         z1 = Instance.new("Sound",char)
  5456.         z1.SoundId = "rbxassetid://200632875"
  5457.         z1.Volume = 1
  5458.         z1.Pitch = .9
  5459.         z:Play()
  5460.         z1:Play()
  5461.         wait(1)
  5462.         z:Destroy()
  5463.         z1:Destroy()
  5464.         chrg:disconnect()
  5465.         if Debounces.CanAttack == false then
  5466.             Debounces.CanAttack = true
  5467.             Debounces.on = false
  5468.             Debounces.NoIdl = false
  5469.             larm.BrickColor = BrickColor.new("Really black")
  5470.             rarm.BrickColor = BrickColor.new("Really black")
  5471.             end
  5472.         end
  5473.     end
  5474. end)
  5475. ----------------------------------------------------
  5476. pt = {0.7, 0.8, 0.9}
  5477. mouse.KeyDown:connect(function(key)
  5478.     if key == "h" then
  5479.         if Debounces.CanJoke == true then
  5480.             Debounces.CanJoke = false
  5481.             u = Instance.new("Sound")
  5482.             u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  5483.             u.Parent = char
  5484.             u.Looped = false
  5485.             u.Pitch = pt[math.random(1,#pt)]
  5486.             u.Volume = 1
  5487.             u2 = Instance.new("Sound")
  5488.             u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  5489.             u2.Parent = char
  5490.             u2.Looped = false
  5491.             u2.Pitch = u.Pitch
  5492.             u2.Volume = 1
  5493.             wait(.01)
  5494.             u:Play()
  5495.             u2:Play()
  5496.             wait(6)
  5497.             u:Destroy()
  5498.             u2:Destroy()
  5499.             if Debounces.CanJoke == false then
  5500.                 Debounces.CanJoke = true
  5501.             end
  5502.         end
  5503.     end
  5504. end)
  5505. ----------------------------------------------------
  5506. mouse.KeyDown:connect(function(key)
  5507.     if key == "j" then
  5508.             if Debounces.CanJoke == true then
  5509.                 Debounces.CanJoke = false
  5510.                 z = Instance.new("Sound",char)
  5511.                 z.SoundId = "rbxassetid://135017755"
  5512.                 z.Pitch = .76
  5513.                 z.Volume = 1
  5514.                 wait()
  5515.                 z:Play()
  5516.                 wait(6)
  5517.                 z:Destroy()
  5518.             if Debounces.CanJoke == false then
  5519.                 Debounces.CanJoke = true
  5520.             end
  5521.         end
  5522.     end
  5523. end)
  5524. ----------------------------------------------------
  5525. mouse.KeyDown:connect(function(key)
  5526.     if key == "k" then
  5527.             if Debounces.CanJoke == true then
  5528.                 Debounces.CanJoke = false
  5529.                 z = Instance.new("Sound",char)
  5530.                 z.SoundId = "rbxassetid://135017578"
  5531.                 z.Pitch = .76
  5532.                 z.Volume = 1
  5533.                 wait()
  5534.                 z:Play()
  5535.                 wait(4)
  5536.                 z:Destroy()
  5537.             if Debounces.CanJoke == false then
  5538.                 Debounces.CanJoke = true
  5539.             end
  5540.         end
  5541.     end
  5542. end)
  5543. ----------------------------------------------------
  5544. mouse.KeyDown:connect(function(key)
  5545.     if key == "x" then
  5546.         if Debounces.CanAttack == true then
  5547.             Debounces.CanAttack = false
  5548.             Debounces.NoIdl = true
  5549.             Debounces.on = true
  5550.             Debounces.ks = true
  5551.         for i = 1, 10 do
  5552.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  5553.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  5554.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  5555.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  5556.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  5557.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  5558.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5559.             if Debounces.on == false then break end
  5560.             wait()
  5561.         end
  5562.         z = Instance.new("Sound",hed)
  5563.         z.SoundId = "rbxassetid://169445092"
  5564.         z.Volume = 1
  5565.         wait(0.1)
  5566.         z:Play()
  5567.         kik = rleg.Touched:connect(function(ht)
  5568.         hit = ht.Parent
  5569.             if ht and hit:IsA("Model") then
  5570.                     if hit:FindFirstChild("Humanoid") then
  5571.                         if hit.Name ~= p.Name then
  5572.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5573.                                     Debounces.Slashed = true]]--
  5574.                                     if Debounces.ks==true then
  5575.                                     z = Instance.new("Sound",hed)
  5576.                                     z.SoundId = "rbxassetid://169380525"
  5577.                                     z.Volume = 1
  5578.                                     z:Play()
  5579.                                     Debounces.ks=false
  5580.                                     end
  5581.                                     hit:FindFirstChild("Humanoid"):TakeDamage(2)
  5582.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  5583.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  5584.                             --Debounces.Slashed = false
  5585.                         --end
  5586.                     end
  5587.                 end
  5588.             elseif ht and hit:IsA("Hat") then
  5589.                 if hit.Parent.Name ~= p.Name then
  5590.                     if hit.Parent:FindFirstChild("Humanoid") then
  5591.                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5592.                                     Debounces.Slashed = true]]--
  5593.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  5594.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  5595.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  5596.                             --Debounces.Slashed = false
  5597.                         --end
  5598.                     end
  5599.                 end
  5600.             end    
  5601.         end)
  5602.         for i = 1, 8 do
  5603.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  5604.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  5605.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  5606.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  5607.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  5608.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  5609.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5610.             if Debounces.on == false then break end
  5611.             wait()
  5612.         end
  5613.         kik:disconnect()
  5614.         if Debounces.CanAttack == false then
  5615.             Debounces.CanAttack = true
  5616.             Debounces.on = false
  5617.             Debounces.NoIdl = false
  5618.             end
  5619.         end
  5620.     end
  5621. end)
  5622. ----------------------------------------------------
  5623. mouse.KeyDown:connect(function(key)
  5624.     if key == "c" then
  5625.         if Debounces.CanAttack == true then
  5626.             Debounces.CanAttack = false
  5627.             Debounces.NoIdl = true
  5628.             Debounces.on = true
  5629.             SIDZ = {"231917744", "231917742"}
  5630.             PTZ = {0.7, 0.8, 0.9, 1}
  5631.                 for i = 1, 20 do
  5632.                     wait()
  5633.                         for i,v in pairs(char.Absolution:children()) do
  5634.                     if v:IsA("Part") or v:IsA("WedgePart") then
  5635.                         v.Transparency = v.Transparency + 0.05
  5636.                         end
  5637.                     end
  5638.                 end
  5639.                 function FindNearestTorso(Position,Distance,SinglePlayer)
  5640.                     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  5641.                         local List = {}
  5642.                         for i,v in pairs(workspace:GetChildren())do
  5643.                             if v:IsA("Model")then
  5644.                                 if v:findFirstChild("Torso")then
  5645.                                     if v ~= char then
  5646.                                         if(v.Torso.Position -Position).magnitude <= Distance then
  5647.                                             table.insert(List,v)
  5648.                                         end
  5649.                                     end
  5650.                                 end
  5651.                             end
  5652.                         end
  5653.                     return List
  5654.                 end
  5655.                 GroundPound()
  5656.                 for i = 1, 5 do
  5657.                     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)
  5658.                     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)
  5659.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  5660.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  5661.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  5662.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  5663.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5664.                     if Debounces.on == false then break end
  5665.                     wait()
  5666.                 end
  5667.                 GroundPound()
  5668.                 for i = 1, 5 do
  5669.                     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)
  5670.                     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)
  5671.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  5672.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  5673.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  5674.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  5675.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5676.                     if Debounces.on == false then break end
  5677.                     wait()
  5678.                 end
  5679.                 GroundPound()
  5680.                 for i = 1, 5 do
  5681.                     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)
  5682.                     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)
  5683.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  5684.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  5685.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  5686.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  5687.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5688.                     if Debounces.on == false then break end
  5689.                     wait()
  5690.                 end
  5691.                 GroundPound()
  5692.                 for i = 1, 5 do
  5693.                     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)
  5694.                     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)
  5695.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  5696.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  5697.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  5698.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  5699.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5700.                     if Debounces.on == false then break end
  5701.                     wait()
  5702.                 end
  5703.                 GroundPound()
  5704.                 for i = 1, 5 do
  5705.                     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)
  5706.                     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)
  5707.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  5708.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  5709.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  5710.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  5711.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5712.                     if Debounces.on == false then break end
  5713.                     wait()
  5714.                 end
  5715.                 GroundPound()
  5716.                 for i = 1, 5 do
  5717.                     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)
  5718.                     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)
  5719.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  5720.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  5721.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  5722.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  5723.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5724.                     if Debounces.on == false then break end
  5725.                     wait()
  5726.                 end
  5727.                 for i = 1, 18 do
  5728.                     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)
  5729.                     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)
  5730.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  5731.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  5732.                     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)
  5733.                     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)
  5734.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5735.                     if Debounces.on == false then break end
  5736.                     wait()
  5737.                 end
  5738.                 for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  5739.                     if v:FindFirstChild('Humanoid') then
  5740.                         v.Humanoid:TakeDamage(math.random(20,60))
  5741.                         v.Humanoid.PlatformStand = true
  5742.                         v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  5743.                     end
  5744.                 end
  5745.                 x = Instance.new("Sound",char)
  5746.                 x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  5747.                 x.Pitch = PTZ[math.random(1,#PTZ)]
  5748.                 x.Volume = 1
  5749.                 wait(0.1)
  5750.                 x:Play()
  5751.                 Crater(hed,20)
  5752.                 for i = 1, 14 do
  5753.                     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)
  5754.                     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)
  5755.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  5756.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  5757.                     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)
  5758.                     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)
  5759.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5760.                     if Debounces.on == false then break end
  5761.                     wait()
  5762.                 end
  5763.             if Debounces.CanAttack == false then
  5764.                 Debounces.CanAttack = true
  5765.                 Debounces.on = false
  5766.                 Debounces.NoIdl = false
  5767.                 for i = 1, 20 do
  5768.                     wait()
  5769.                         for i,v in pairs(char.Absolution:children()) do
  5770.                     if v:IsA("Part") or v:IsA("WedgePart") then
  5771.                         v.Transparency = v.Transparency - 0.05
  5772.                         end
  5773.                     end
  5774.                 end
  5775.             end
  5776.         end
  5777.     end
  5778. end)
  5779. ----------------------------------------------------176349813
  5780. mouse.KeyDown:connect(function(key)
  5781.     if key == "b" then
  5782.         hum.WalkSpeed = 0.01
  5783.         if Debounces.CanAttack == true then
  5784.             Debounces.CanAttack = false
  5785.             Debounces.NoIdl = true
  5786.             Debounces.on = true
  5787.             for i = 1,20 do
  5788.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  5789.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  5790.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  5791.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  5792.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  5793.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  5794.             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)
  5795.             if Debounces.on == false then break end
  5796.             wait()
  5797.             end
  5798.         wait(1)
  5799.         v = Instance.new("Sound")
  5800.         v.SoundId = "rbxassetid://181384451"
  5801.         v.Parent = char
  5802.         v.Looped = false
  5803.         v.Pitch = 1.04
  5804.         v.Volume = 1
  5805.         wait(.01)
  5806.         v:Play()
  5807.        
  5808.         if Daytime == true then
  5809.             Daytime = false
  5810.             l.TimeOfDay = 24
  5811.         else
  5812.             Daytime = true
  5813.             l.TimeOfDay = 12
  5814.             l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  5815.         end
  5816.        
  5817.             local Shockwave = function()
  5818.                 local rng1 = Instance.new("Part", char)
  5819.                 rng1.Anchored = true
  5820.                 rng1.BrickColor = BrickColor.new("Really black")
  5821.                 rng1.CanCollide = false
  5822.                 rng1.FormFactor = 3
  5823.                 rng1.Name = "Ring"
  5824.                 rng1.Size = Vector3.new(1, 1, 1)
  5825.                 rng1.Transparency = 0.35
  5826.                 rng1.TopSurface = 0
  5827.                 rng1.BottomSurface = 0
  5828.                 local rngm1 = Instance.new("SpecialMesh", rng)
  5829.                 rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5830.                 rngm1.Scale = Vector3.new(10, 10, 1)
  5831.                 rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  5832.                 local Wave = Instance.new("Part", game.Workspace--[[?]])
  5833.                 Wave.Name = "Shockwave"
  5834.                 Wave.BrickColor = BrickColor.new("Really black")
  5835.                 Wave.Size = Vector3.new(1, 1, 1)
  5836.                 Wave.Shape = "Ball"
  5837.                 Wave.CanCollide = false
  5838.                 Wave.Anchored = true
  5839.                 Wave.TopSurface = 0
  5840.                 Wave.BottomSurface = 0
  5841.                 Wave.Touched:connect(function(hit)
  5842.                     if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  5843.                         local Occlude = true
  5844.                         local NotOccludes = {
  5845.                             char.Name;
  5846.                             "Wings";
  5847.                             "Scythe";
  5848.                             "Thingy";
  5849.                             "Thingy2"; -- put all of the names in a table pls
  5850.                         }
  5851.                         for i,v in pairs(NotOccludes) do
  5852.                             if hit.Parent.Name == v then
  5853.                                 Occlude = false
  5854.                             end
  5855.                         end
  5856.                         --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
  5857.                         if Occlude then
  5858.                             hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  5859.                             hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  5860.                         end
  5861.                     end
  5862.                 end)
  5863.                
  5864.                 Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  5865.                
  5866.                 coroutine.wrap(function()
  5867.                     for i = 1, 20, 0.2 do
  5868.                         rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  5869.                         rng1.Transparency = i/20
  5870.                     wait()
  5871.                     end
  5872.                     wait()
  5873.                     rng1:Destroy()
  5874.                 end)()
  5875.                
  5876.                 Delay(0, function()
  5877.  
  5878.                     if Daytime == false then
  5879.                        for i = 1, 50, 1 do
  5880.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  5881.                             Wave.CFrame = char.Torso.CFrame
  5882.                             local t = i / 50
  5883.                             Wave.Transparency = t
  5884.                             wait()
  5885.                         end
  5886.                     else
  5887.                         for i = 1, 50, 1 do
  5888.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  5889.                             Wave.CFrame = char.Torso.CFrame
  5890.                             local t = i / 50
  5891.                             Wave.Transparency = t
  5892.                             wait()
  5893.                         end
  5894.                     end
  5895.                     Wave:Destroy()
  5896.                 end)
  5897.                 Delay(0, function()
  5898.                     while wait() do
  5899.                         if Wave ~= nil then
  5900.                             Wave.CFrame = char.Torso.CFrame
  5901.                         else
  5902.                             break
  5903.                         end
  5904.                     end
  5905.                 end)
  5906.             end
  5907.         Shockwave()
  5908.         for i = 1, 15 do
  5909.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  5910.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  5911.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  5912.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  5913.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  5914.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  5915.             if Debounces.on == false then break end
  5916.             wait()
  5917.         end
  5918.         for i = 1, 15 do
  5919.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  5920.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  5921.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  5922.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  5923.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  5924.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  5925.             if Debounces.on == false then break end
  5926.             wait()
  5927.         end
  5928.         for i = 1, 15 do
  5929.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  5930.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  5931.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  5932.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  5933.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  5934.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  5935.             if Debounces.on == false then break end
  5936.             wait()
  5937.         end
  5938.         for i = 1, 15 do
  5939.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  5940.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  5941.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  5942.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  5943.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  5944.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  5945.             if Debounces.on == false then break end
  5946.             wait()
  5947.         end
  5948.         for i = 1, 15 do
  5949.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  5950.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  5951.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  5952.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  5953.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  5954.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  5955.             if Debounces.on == false then break end
  5956.             wait()
  5957.         end
  5958.         for i = 1, 15 do
  5959.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  5960.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  5961.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  5962.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  5963.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  5964.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  5965.             if Debounces.on == false then break end
  5966.             wait()
  5967.         end
  5968.         wait(1.4)
  5969.         Debounces.NoIdl = false
  5970.         hum.WalkSpeed = 30
  5971.         Debounces.on = false
  5972.         wait()
  5973.         if Debounces.CanAttack == false then
  5974.             Debounces.CanAttack = true
  5975.             v:Destroy()
  5976.             end
  5977.         end
  5978.     end
  5979. end)
  5980. ----------------------------------------------------
  5981. mouse.KeyDown:connect(function(key)
  5982.     if key == "m" then
  5983. hum.WalkSpeed = 30
  5984.         if Debounces.CanAttack == true then
  5985.         Debounces.CanAttack = false
  5986.         Debounces.on = true
  5987.         Debounces.NoIdl = true
  5988.             --[[x = Instance.new("Sound",char)
  5989.             x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5990.             x.Looped = false
  5991.             x.Pitch = 1.1
  5992.             x.Volume = 1
  5993.             x:Play()
  5994.             x2 = Instance.new("Sound",char)
  5995.             x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5996.             x2.Looped = false
  5997.             x2.Pitch = .7
  5998.             x2.Volume = 1
  5999.             wait(.1)
  6000.             x:Play()
  6001.             x2:Play()
  6002.         for i = 1, 20 do
  6003.             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)
  6004.             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)
  6005.             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)
  6006.             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)
  6007.             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)
  6008.             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)
  6009.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  6010.             if Debounces.on == false then break end
  6011.                 wait()
  6012.             x:Destroy()
  6013.             x2:Destroy()
  6014.             end
  6015.             wait(1)]]--
  6016.         local rng = Instance.new("Part", char)
  6017.         rng.Anchored = true
  6018.         rng.BrickColor = BrickColor.new("Really black")
  6019.         rng.CanCollide = false
  6020.         rng.FormFactor = 3
  6021.         rng.Name = "Ring"
  6022.         rng.Size = Vector3.new(1, 1, 1)
  6023.         rng.Transparency = 0.35
  6024.         rng.TopSurface = 0
  6025.         rng.BottomSurface = 0
  6026.         rng.Position = torso.Position - Vector3.new(0,2,0)
  6027.         rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  6028.         local rngm = Instance.new("SpecialMesh", rng)
  6029.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6030.         rngm.Scale = Vector3.new(1, 1, 2)
  6031.             x = Instance.new("Sound",char)
  6032.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  6033.             x.Looped = false
  6034.             x.Pitch = .7
  6035.             x.Volume = 1
  6036.             x:Play()
  6037.                 coroutine.wrap(function()
  6038.                 for i = 1, 60, 2 do
  6039.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  6040.                 rng.Transparency = i/60
  6041.                 wait()
  6042.                 end
  6043.                 wait()
  6044.                 rng:Destroy()
  6045.                 end)()
  6046.             hum.WalkSpeed = 50
  6047.         BV = Instance.new("BodyVelocity", torso)
  6048.         BV.maxForce = Vector3.new(0,200000,0)
  6049.         BV.P = 100000
  6050.         BV.velocity = Vector3.new(0,800,0)
  6051.     for i = 1, 20 do
  6052.         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)
  6053.         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)
  6054.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
  6055.         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)
  6056.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  6057.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  6058.         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)
  6059.         if Debounces.on == false then break end
  6060.         wait()
  6061.     end
  6062. x:Destroy()
  6063. BV:Destroy()
  6064.     --[[for i = 1, 30 do
  6065.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0),     math.rad(0)),0.3)
  6066.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad    (0), math.rad(0)), 0.3)
  6067.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(-10)), 0.3)
  6068.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(10)), 0.3)
  6069.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  6070.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
  6071.         if Debounces.on == false then break end
  6072.         wait()
  6073.     end]]--
  6074. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  6075.     for i = 1, 30 do
  6076.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  6077.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  6078.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  6079.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  6080.         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)
  6081.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  6082.         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)
  6083.         if Debounces.on == false then break end
  6084.         wait()
  6085.     end
  6086. end
  6087. Debounces.on = false
  6088. Debounces.NoIdl = false
  6089. local ry,ht,ps=nil,nil,nil
  6090. while ht==nil do
  6091.     ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  6092.     wait()
  6093. end
  6094. z = Instance.new("Sound",char)
  6095. z.SoundId = "rbxassetid://142070127"
  6096. z.Volume = 1
  6097. wait(.1)
  6098. z:Play()
  6099. Landing()
  6100. hum.WalkSpeed = 30
  6101. if Debounces.CanAttack == false then
  6102. Debounces.CanAttack = true
  6103. end
  6104. end
  6105. end
  6106. end)
  6107. ----------------------------------------------------
  6108. Grab = false
  6109. mouse.KeyDown:connect(function(key)
  6110.     if key == "z" then
  6111.     larm.BrickColor = BrickColor.new("Really")
  6112.     rarm.BrickColor = BrickColor.new("Really red")
  6113.         Debounces.on = true
  6114.         Debounces.NoIdl = true
  6115.         if Grab == false then
  6116.         gp = nil
  6117.         con1=larm.Touched:connect(function(hit) -- this is grab
  6118.             ht = hit.Parent
  6119.             hum1=ht:FindFirstChild('Humanoid')
  6120.             if hum1 ~= nil then
  6121.                 hum1.PlatformStand=true
  6122.                 gp = ht
  6123.                 Grab = true
  6124.                 asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  6125.                 asd.Parent = larm
  6126.                 asd.Name = "asd"
  6127.                 asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  6128.             elseif hum1 == nil then
  6129.                 con1:disconnect()
  6130.                 wait() return
  6131.             end
  6132.         end)
  6133.         for i = 1, 18 do
  6134.             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)
  6135.             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)
  6136.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  6137.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  6138.             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)
  6139.             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)
  6140.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  6141.             if Debounces.on == false then break end
  6142.             wait()
  6143.         end
  6144.     con1:disconnect()
  6145.     Debounces.on = false
  6146.     Debounces.NoIdl = false
  6147.     elseif Grab == true then
  6148.         Grab = false
  6149.     for i = 1, 20 do
  6150.         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)
  6151.         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)
  6152.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  6153.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  6154.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  6155.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  6156.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  6157.         if Debounces.on == false then end
  6158.         wait()
  6159.     end
  6160.         if gp ~= nil then
  6161.         for i,v in pairs(larm:GetChildren()) do
  6162.             if v.Name == "asd" and v:IsA("Weld") then
  6163.                 v:Remove()
  6164.             end
  6165.         end
  6166.         bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  6167.         bv.maxForce = Vector3.new(400000, 400000, 400000)
  6168.         bv.P = 125000
  6169.         bv.velocity = char.Head.CFrame.lookVector * 200
  6170.         for i = 1, 12 do
  6171.             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)
  6172.             if Debounces.on == false then end
  6173.             wait()
  6174.         end
  6175.         ht=nil
  6176.         Spawn(function()
  6177.             wait(0.5)
  6178.             bv:Destroy()
  6179.         end)
  6180.         Debounces.on = false
  6181.         Debounces.NoIdl = false
  6182.         elseif ht == nil then wait()
  6183.         Grab = false
  6184.         Debounces.on = false
  6185.         Debounces.NoIdl = false
  6186.             end
  6187.         end
  6188.     end
  6189. end)
  6190. ----------------------------------------------------
  6191. mouse.KeyDown:connect(function(key)
  6192.     if string.byte(key) == 52 then
  6193.         char.Humanoid.WalkSpeed = 30
  6194.     end
  6195. end)
  6196. mouse.KeyUp:connect(function(key)
  6197.     if string.byte(key) == 52 then
  6198.         char.Humanoid.WalkSpeed = 30
  6199.     end
  6200. end)
  6201. ----------------------------------------------------
  6202. local animpose = "Idle"
  6203. local lastanimpose = "Idle"
  6204. local sine = 0
  6205. local change = 1
  6206. local val = 0
  6207. local ffing = false
  6208. ----------------------------------------------------
  6209. --[[x = Instance.new("Sound", char)
  6210. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  6211. x.Looped = true
  6212. x.Volume = 1
  6213. x.Pitch = 1
  6214. local footsteps = false]]--
  6215. -------------------------------
  6216. game:GetService("RunService").RenderStepped:connect(function()
  6217. --[[if char.Humanoid.Jump == true then
  6218. jump = true
  6219. else
  6220. jump = false
  6221. end]]
  6222. char.Humanoid.FreeFalling:connect(function(f)
  6223. if f then
  6224. ffing = true
  6225. else
  6226. ffing = false
  6227. end
  6228. end)
  6229. sine = sine + change
  6230. if jumpn == true then
  6231. animpose = "Jumping"
  6232. elseif ffing == true then
  6233. animpose = "Freefalling"
  6234. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  6235. animpose = "Idle"
  6236. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  6237. animpose = "Walking"
  6238. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  6239. animpose = "Running"
  6240. end
  6241. if animpose ~= lastanimpose then
  6242. sine = 0
  6243. if Debounces.NoIdl == false then
  6244. if animpose == "Idle" then
  6245. for i = 1, 2 do
  6246. 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)
  6247. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  6248. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  6249. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  6250. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  6251. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  6252. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  6253. end
  6254. elseif animpose == "Walking" then
  6255. for i = 1, 2 do
  6256. 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)
  6257. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  6258. 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)
  6259. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  6260. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  6261. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  6262. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  6263. end
  6264. elseif animpose == "Running" then
  6265. for i = 1, 2 do
  6266. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  6267. 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)
  6268. 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)
  6269. 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)
  6270. 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)
  6271. 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)
  6272. 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)
  6273. end
  6274. wait()
  6275. end
  6276. else
  6277. end
  6278. end
  6279. lastanimpose = animpose
  6280. if Debounces.NoIdl == false then
  6281. if animpose == "Idle" then
  6282. if stanceToggle == "Normal" then
  6283. change = 0.5
  6284. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  6285. 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)
  6286. 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)
  6287. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  6288. 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)
  6289. 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)
  6290. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  6291. elseif stanceToggle == "Sitting" then
  6292. 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)
  6293. 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)
  6294. 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)
  6295. 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)
  6296. 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)
  6297. 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)
  6298. 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)
  6299. end
  6300. elseif animpose == "Walking" then
  6301. if stanceToggle == "Normal" then
  6302. change = 1
  6303. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  6304. 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.2)
  6305. 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)
  6306. 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)
  6307. 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), .4)
  6308. 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), .4)
  6309. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  6310. end
  6311. elseif animpose == "Running" then
  6312. change = 1
  6313. 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)
  6314. 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)
  6315. 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)
  6316. 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)
  6317. 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)
  6318. 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)
  6319. 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)
  6320. end
  6321. end
  6322. --[[if animpose == "Walking" then
  6323.     if footsteps == false then
  6324.         x:Play()
  6325.         footsteps = true
  6326.     end
  6327.     x.Pitch = 1.1
  6328. elseif animpose == "Idle" then
  6329.     x:Stop()
  6330.     footsteps = false
  6331. elseif animpose == "Running" then
  6332.     x.Pitch = 1.2
  6333.     if footsteps == false then
  6334.         x:Play()
  6335.         footsteps = true
  6336.     end
  6337. end]]--
  6338. end)
  6339.  
  6340. Pastebin.com Tools & Applications
  6341. iPhone/iPad  Windows  Firefox  Chrome  WebOS  Android  Mac  Opera  Click.to  UNIX  WinPhone
  6342. create new paste  |  api  |  trends  |  syntax languages  |  faq  |  tools  |  privacy  |  cookies  |  contact  |  dmca  |  advertise on pastebin  |  scraping  |  go PRO
  6343. Follow us: pastebin on facebook  |  pastebin on twitter  |  pastebin in the news
  6344. Dedicated Server Hosting by Steadfast
  6345. Pastebin v3.11 rendered in: 0.013 seconds
  6346. Site design & logo © 2015 Pastebin; user contributions (pastes) licensed under cc by-sa 3.0  
  6347.  
  6348. Top
  6349. local p = game.Players.LocalPlayer
  6350. local char = p.Character
  6351. local mouse = p:GetMouse()
  6352. local larm = char["Left Arm"]
  6353. local rarm = char["Right Arm"]
  6354. local lleg = char["Left Leg"]
  6355. local rleg = char["Right Leg"]
  6356. local hed = char.Head
  6357. local torso = char.Torso
  6358. local hum = char.Humanoid
  6359. local cam = game.Workspace.CurrentCamera
  6360. local root = char.HumanoidRootPart
  6361. local deb = false
  6362. local shot = 0
  6363. local l = game:GetService("Lighting")
  6364. local rs = game:GetService("RunService").RenderStepped
  6365. local stanceToggle = "Normal"
  6366. math.randomseed(os.time())
  6367. hum.WalkSpeed = 30
  6368. char.Health:Destroy()
  6369. hum.MaxHealth = 50000
  6370. wait(0.1)
  6371. hum.Health = 50000
  6372. ----------------------------------------------------
  6373. char.Shirt:Destroy()
  6374. char.Pants:Destroy()
  6375. shirt = Instance.new("Shirt", char)
  6376. shirt.Name = "Shirt"
  6377. pants = Instance.new("Pants", char)
  6378. pants.Name = "Pants"
  6379. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  6380. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  6381. ----------------------------------------------------
  6382. Debounces = {
  6383. on = false;
  6384. ks = false;
  6385. CanAttack = true;
  6386. CanJoke = true;
  6387. NoIdl = false;
  6388. Slashing = false;
  6389. Slashed = false;
  6390. Grabbing = false;
  6391. Grabbed = false;
  6392. }
  6393. local Touche = {char.Name, }
  6394. ----------------------------------------------------
  6395. function lerp(a, b, t) -- Linear interpolation
  6396.     return a + (b - a)*t
  6397. end
  6398.  
  6399. function slerp(a, b, t) --Spherical interpolation
  6400.     dot = a:Dot(b)
  6401.     if dot > 0.99999 or dot < -0.99999 then
  6402.         return t <= 0.5 and a or b
  6403.     else
  6404.         r = math.acos(dot)
  6405.         return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  6406.     end
  6407. end
  6408.  
  6409. function matrixInterpolate(a, b, t)
  6410.     local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  6411.     local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  6412.     local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  6413.     local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
  6414.     local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
  6415.     local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
  6416.     local t = v1:Dot(v2)
  6417.     if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
  6418.         return CFrame.new()
  6419.     end
  6420.     return CFrame.new(
  6421.     v0.x, v0.y, v0.z,
  6422.     v1.x, v1.y, v1.z,
  6423.     v2.x, v2.y, v2.z,
  6424.     v3.x, v3.y, v3.z)
  6425. end
  6426. ----------------------------------------------------
  6427. function genWeld(a,b)
  6428.     local w = Instance.new("Weld",a)
  6429.     w.Part0 = a
  6430.     w.Part1 = b
  6431.     return w
  6432. end
  6433. function weld(a, b)
  6434.     local weld = Instance.new("Weld")
  6435.     weld.Name = "W"
  6436.     weld.Part0 = a
  6437.     weld.Part1 = b
  6438.     weld.C0 = a.CFrame:inverse() * b.CFrame
  6439.     weld.Parent = a
  6440.     return weld;
  6441. end
  6442. ----------------------------------------------------
  6443. function Lerp(c1,c2,al)
  6444. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  6445. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  6446. for i,v in pairs(com1) do
  6447. com1[i] = v+(com2[i]-v)*al
  6448. end
  6449. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  6450. end
  6451. ----------------------------------------------------
  6452. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  6453. local wld = Instance.new("Weld", wp1)
  6454. wld.Part0 = wp0
  6455. wld.Part1 = wp1
  6456. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  6457. end
  6458. ----------------------------------------------------
  6459. for i,v in pairs(char:children()) do
  6460.     if v:IsA("Hat") then
  6461.         v:Destroy()
  6462.     end
  6463. end
  6464. for i,v in pairs(hed:children()) do
  6465.     if v:IsA("Sound") then
  6466.         v:Destroy()
  6467.     end
  6468. end
  6469. ----------------------------------------------------
  6470. function HasntTouched(plrname)
  6471. local ret = true
  6472. for _, v in pairs(Touche) do
  6473. if v == plrname then
  6474. ret = false
  6475. end
  6476. end
  6477. return ret
  6478. end
  6479. ----------------------------------------------------
  6480. larm.Size = larm.Size * 2
  6481. rarm.Size = rarm.Size * 2
  6482. lleg.Size = lleg.Size * 2
  6483. rleg.Size = rleg.Size * 2
  6484. torso.Size = torso.Size * 2
  6485. hed.Size = hed.Size * 2
  6486. root.Size = root.Size * 2
  6487. ----------------------------------------------------
  6488. newWeld(torso, larm, -1.5, 0.5, 0)
  6489. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  6490. newWeld(torso, rarm, 1.5, 0.5, 0)
  6491. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  6492. newWeld(torso, hed, 0, 1.5, 0)
  6493. newWeld(torso, lleg, -0.5, -1, 0)
  6494. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  6495. newWeld(torso, rleg, 0.5, -1, 0)
  6496. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  6497. newWeld(root, torso, 0, -1, 0)
  6498. torso.Weld.C1 = CFrame.new(0, -1, 0)
  6499. ----------------------------------------------------
  6500. game:service'InsertService':LoadAsset(63993845):children()[1].Parent=char
  6501. char.LavendarPlasmaHood.Handle.Mesh.Scale = char.LavendarPlasmaHood.Handle.Mesh.Scale * 1.8
  6502. char.LavendarPlasmaHood.Handle.Mesh.VertexColor = Vector3.new(0.1,0.1,0.1)
  6503. hed.face.Texture = "rbxassetid://46282671"
  6504. z=Instance.new('Decal',hed)
  6505. z.Face = 'Front'
  6506. z.Texture='rbxassetid://99174105'
  6507. hed.BrickColor = BrickColor.new("Really black")
  6508. lite = Instance.new("PointLight", torso)
  6509. lite.Brightness = 14
  6510. lite.Range = 10
  6511. lite.Color = Color3.new(1, 0, 0)
  6512. --[[local hed2 = hed:Clone()
  6513. hed2.CanCollide = false
  6514. hed2.Parent = char
  6515. hed2:ClearAllChildren()
  6516. hed2.Transparency = 1
  6517. hed2.Name = "DARP"
  6518. local w = Instance.new("Weld",hed2)
  6519. w.Part0 = hed
  6520. w.Part1 = hed2
  6521. w.C0 = CFrame.new(0,0,-0.175)
  6522. z=Instance.new("SurfaceGui",hed2)
  6523. z.Enabled = true
  6524. z.Face = "Front"
  6525. z.Adornee = hed2
  6526. z.CanvasSize = Vector2.new(100,100)
  6527. local face = Instance.new("ImageLabel",z)
  6528. face.Size = UDim2.new(1,-30,1,0)
  6529. face.Position = UDim2.new(0,15,0,0)
  6530. face.BackgroundTransparency = 1
  6531. face.Image='rbxassetid://46282671']]--
  6532. ----------------------------------------------------
  6533. z = Instance.new("Sound", char)
  6534. z.SoundId = "rbxassetid://170822236"--242463565
  6535. z.Looped = true
  6536. z.Pitch = .58
  6537. z.Volume = 1
  6538. wait(.01)
  6539. z:Play()
  6540. ----------------------------------------------------
  6541. local m = Instance.new("Model")
  6542. m.Name = "Absolution"
  6543. p1 = Instance.new("Part", m)
  6544. p1.BrickColor = BrickColor.new("Really red")
  6545. p1.FormFactor = Enum.FormFactor.Custom
  6546. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  6547. 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)
  6548. p1.CanCollide = false
  6549. p1.Locked = true
  6550. p1.Elasticity = 0
  6551. p1.BottomSurface = Enum.SurfaceType.Smooth
  6552. p1.TopSurface = Enum.SurfaceType.Smooth
  6553. b1 = Instance.new("SpecialMesh", p1)
  6554. b1.MeshType = Enum.MeshType.Wedge
  6555. b1.Name = "Mesh"
  6556. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  6557. p2 = Instance.new("Part", m)
  6558. p2.BrickColor = BrickColor.new("Really black")
  6559. p2.FormFactor = Enum.FormFactor.Custom
  6560. p2.Size = Vector3.new(1, 2.9000001, 1)
  6561. 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)
  6562. p2.CanCollide = false
  6563. p2.Locked = true
  6564. p2.Elasticity = 0
  6565. p2.BottomSurface = Enum.SurfaceType.Smooth
  6566. p2.TopSurface = Enum.SurfaceType.Smooth
  6567. b2 = Instance.new("BlockMesh", p2)
  6568. b2.Name = "Mesh"
  6569. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  6570. p3 = Instance.new("Part", m)
  6571. p3.BrickColor = BrickColor.new("Really red")
  6572. p3.FormFactor = Enum.FormFactor.Custom
  6573. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  6574. 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)
  6575. p3.CanCollide = false
  6576. p3.Locked = true
  6577. p3.Elasticity = 0
  6578. p3.BottomSurface = Enum.SurfaceType.Smooth
  6579. p3.TopSurface = Enum.SurfaceType.Smooth
  6580. b3 = Instance.new("SpecialMesh", p3)
  6581. b3.MeshType = Enum.MeshType.Wedge
  6582. b3.Name = "Mesh"
  6583. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  6584. p4 = Instance.new("Part", m)
  6585. p4.BrickColor = BrickColor.new("Really red")
  6586. p4.FormFactor = Enum.FormFactor.Custom
  6587. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  6588. 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)
  6589. p4.CanCollide = false
  6590. p4.Locked = true
  6591. p4.Elasticity = 0
  6592. p4.BottomSurface = Enum.SurfaceType.Smooth
  6593. p4.TopSurface = Enum.SurfaceType.Smooth
  6594. b4 = Instance.new("SpecialMesh", p4)
  6595. b4.MeshType = Enum.MeshType.Wedge
  6596. b4.Name = "Mesh"
  6597. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  6598. p5 = Instance.new("Part", m)
  6599. p5.BrickColor = BrickColor.new("Really red")
  6600. p5.FormFactor = Enum.FormFactor.Custom
  6601. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  6602. 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)
  6603. p5.CanCollide = false
  6604. p5.Locked = true
  6605. p5.Elasticity = 0
  6606. p5.BottomSurface = Enum.SurfaceType.Smooth
  6607. p5.TopSurface = Enum.SurfaceType.Smooth
  6608. b5 = Instance.new("SpecialMesh", p5)
  6609. b5.MeshType = Enum.MeshType.Wedge
  6610. b5.Name = "Mesh"
  6611. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  6612. p6 = Instance.new("Part", m)
  6613. p6.Name = "Handle"
  6614. p6.BrickColor = BrickColor.new("Really black")
  6615. p6.FormFactor = Enum.FormFactor.Custom
  6616. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  6617. 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)
  6618. p6.CanCollide = false
  6619. p6.Locked = true
  6620. p6.Elasticity = 0
  6621. p6.BottomSurface = Enum.SurfaceType.Smooth
  6622. p6.TopSurface = Enum.SurfaceType.Smooth
  6623. b6 = Instance.new("BlockMesh", p6)
  6624. b6.Name = "Mesh"
  6625. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  6626. p7 = Instance.new("Part", m)
  6627. p7.BrickColor = BrickColor.new("Really red")
  6628. p7.FormFactor = Enum.FormFactor.Custom
  6629. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  6630. 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)
  6631. p7.CanCollide = false
  6632. p7.Locked = true
  6633. p7.Elasticity = 0
  6634. p7.BottomSurface = Enum.SurfaceType.Smooth
  6635. p7.TopSurface = Enum.SurfaceType.Smooth
  6636. b7 = Instance.new("SpecialMesh", p7)
  6637. b7.MeshType = Enum.MeshType.Wedge
  6638. b7.Name = "Mesh"
  6639. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  6640. p8 = Instance.new("Part", m)
  6641. p8.BrickColor = BrickColor.new("Really red")
  6642. p8.FormFactor = Enum.FormFactor.Custom
  6643. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  6644. 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)
  6645. p8.CanCollide = false
  6646. p8.Locked = true
  6647. p8.Elasticity = 0
  6648. p8.BottomSurface = Enum.SurfaceType.Smooth
  6649. p8.TopSurface = Enum.SurfaceType.Smooth
  6650. b8 = Instance.new("SpecialMesh", p8)
  6651. b8.MeshType = Enum.MeshType.Wedge
  6652. b8.Name = "Mesh"
  6653. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  6654. p9 = Instance.new("Part", m)
  6655. p9.BrickColor = BrickColor.new("Really black")
  6656. p9.FormFactor = Enum.FormFactor.Custom
  6657. p9.Size = Vector3.new(1, 1.07999957, 1)
  6658. 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)
  6659. p9.CanCollide = false
  6660. p9.Locked = true
  6661. p9.Elasticity = 0
  6662. p9.BottomSurface = Enum.SurfaceType.Smooth
  6663. p9.TopSurface = Enum.SurfaceType.Smooth
  6664. b9 = Instance.new("BlockMesh", p9)
  6665. b9.Name = "Mesh"
  6666. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  6667. p10 = Instance.new("Part", m)
  6668. p10.BrickColor = BrickColor.new("Really black")
  6669. p10.FormFactor = Enum.FormFactor.Custom
  6670. p10.Size = Vector3.new(1, 1.41999948, 1)
  6671. 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)
  6672. p10.CanCollide = false
  6673. p10.Locked = true
  6674. p10.Elasticity = 0
  6675. p10.BottomSurface = Enum.SurfaceType.Smooth
  6676. p10.TopSurface = Enum.SurfaceType.Smooth
  6677. b10 = Instance.new("BlockMesh", p10)
  6678. b10.Name = "Mesh"
  6679. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  6680. p11 = Instance.new("Part", m)
  6681. p11.BrickColor = BrickColor.new("Really black")
  6682. p11.FormFactor = Enum.FormFactor.Custom
  6683. p11.Size = Vector3.new(1, 1.50999951, 1)
  6684. 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)
  6685. p11.CanCollide = false
  6686. p11.Locked = true
  6687. p11.Elasticity = 0
  6688. p11.BottomSurface = Enum.SurfaceType.Smooth
  6689. p11.TopSurface = Enum.SurfaceType.Smooth
  6690. b11 = Instance.new("BlockMesh", p11)
  6691. b11.Name = "Mesh"
  6692. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  6693. p12 = Instance.new("Part", m)
  6694. p12.Name = "BladeCenter"
  6695. p12.BrickColor = BrickColor.new("Dark stone grey")
  6696. p12.Material = Enum.Material.Concrete
  6697. p12.FormFactor = Enum.FormFactor.Symmetric
  6698. p12.Size = Vector3.new(1, 2, 2)
  6699. 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)
  6700. p12.CanCollide = false
  6701. p12.Locked = true
  6702. p12.BottomSurface = Enum.SurfaceType.Smooth
  6703. p12.TopSurface = Enum.SurfaceType.Smooth
  6704. b12 = Instance.new("SpecialMesh", p12)
  6705. b12.MeshType = Enum.MeshType.Brick
  6706. b12.Name = "Mesh"
  6707. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  6708. p13 = Instance.new("Part", m)
  6709. p13.BrickColor = BrickColor.new("Really black")
  6710. p13.FormFactor = Enum.FormFactor.Custom
  6711. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  6712. 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)
  6713. p13.CanCollide = false
  6714. p13.Locked = true
  6715. p13.Elasticity = 0
  6716. p13.BottomSurface = Enum.SurfaceType.Smooth
  6717. p13.TopSurface = Enum.SurfaceType.Smooth
  6718. b13 = Instance.new("BlockMesh", p13)
  6719. b13.Name = "Mesh"
  6720. b13.Scale = Vector3.new(1, 1, 0.400000006)
  6721. p14 = Instance.new("Part", m)
  6722. p14.BrickColor = BrickColor.new("Really black")
  6723. p14.FormFactor = Enum.FormFactor.Custom
  6724. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  6725. 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)
  6726. p14.CanCollide = false
  6727. p14.Locked = true
  6728. p14.Elasticity = 0
  6729. p14.BottomSurface = Enum.SurfaceType.Smooth
  6730. p14.TopSurface = Enum.SurfaceType.Smooth
  6731. b14 = Instance.new("BlockMesh", p14)
  6732. b14.Name = "Mesh"
  6733. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  6734. p15 = Instance.new("Part", m)
  6735. p15.BrickColor = BrickColor.new("Really black")
  6736. p15.FormFactor = Enum.FormFactor.Custom
  6737. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  6738. 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)
  6739. p15.CanCollide = false
  6740. p15.Locked = true
  6741. p15.Elasticity = 0
  6742. p15.BottomSurface = Enum.SurfaceType.Smooth
  6743. p15.TopSurface = Enum.SurfaceType.Smooth
  6744. b15 = Instance.new("BlockMesh", p15)
  6745. b15.Name = "Mesh"
  6746. b15.Scale = Vector3.new(1, 1, 0.400000006)
  6747. p16 = Instance.new("Part", m)
  6748. p16.BrickColor = BrickColor.new("Really black")
  6749. p16.FormFactor = Enum.FormFactor.Custom
  6750. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  6751. 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)
  6752. p16.CanCollide = false
  6753. p16.Locked = true
  6754. p16.Elasticity = 0
  6755. p16.BottomSurface = Enum.SurfaceType.Smooth
  6756. p16.TopSurface = Enum.SurfaceType.Smooth
  6757. b16 = Instance.new("BlockMesh", p16)
  6758. b16.Name = "Mesh"
  6759. b16.Scale = Vector3.new(1, 1, 0.400000006)
  6760. p17 = Instance.new("Part", m)
  6761. p17.BrickColor = BrickColor.new("Really black")
  6762. p17.FormFactor = Enum.FormFactor.Custom
  6763. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  6764. 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)
  6765. p17.CanCollide = false
  6766. p17.Locked = true
  6767. p17.Elasticity = 0
  6768. p17.BottomSurface = Enum.SurfaceType.Smooth
  6769. p17.TopSurface = Enum.SurfaceType.Smooth
  6770. b17 = Instance.new("BlockMesh", p17)
  6771. b17.Name = "Mesh"
  6772. b17.Scale = Vector3.new(1, 1, 0.400000006)
  6773. p18 = Instance.new("WedgePart", m)
  6774. p18.BrickColor = BrickColor.new("Dark stone grey")
  6775. p18.Name = "BladePart1"
  6776. p18.Material = Enum.Material.Concrete
  6777. p18.Name = "Wedge"
  6778. p18.FormFactor = Enum.FormFactor.Symmetric
  6779. p18.Size = Vector3.new(1, 4, 2)
  6780. 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)
  6781. p18.CanCollide = false
  6782. p18.Locked = true
  6783. p18.BottomSurface = Enum.SurfaceType.Smooth
  6784. p18.TopSurface = Enum.SurfaceType.Smooth
  6785. b18 = Instance.new("SpecialMesh", p18)
  6786. b18.MeshType = Enum.MeshType.Wedge
  6787. b18.Name = "Mesh"
  6788. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  6789. p19 = Instance.new("WedgePart", m)
  6790. p19.BrickColor = BrickColor.new("Dark stone grey")
  6791. p19.Name = "BladePart2"
  6792. p19.Material = Enum.Material.Concrete
  6793. p19.Name = "Wedge"
  6794. p19.FormFactor = Enum.FormFactor.Symmetric
  6795. p19.Size = Vector3.new(1, 4, 2)
  6796. 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)
  6797. p19.CanCollide = false
  6798. p19.Locked = true
  6799. p19.BottomSurface = Enum.SurfaceType.Smooth
  6800. p19.TopSurface = Enum.SurfaceType.Smooth
  6801. b19 = Instance.new("SpecialMesh", p19)
  6802. b19.MeshType = Enum.MeshType.Wedge
  6803. b19.Name = "Mesh"
  6804. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  6805. p20 = Instance.new("Part", m)
  6806. p20.BrickColor = BrickColor.new("Really black")
  6807. p20.FormFactor = Enum.FormFactor.Custom
  6808. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  6809. 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)
  6810. p20.CanCollide = false
  6811. p20.Locked = true
  6812. p20.Elasticity = 0
  6813. p20.BottomSurface = Enum.SurfaceType.Smooth
  6814. p20.TopSurface = Enum.SurfaceType.Smooth
  6815. b20 = Instance.new("BlockMesh", p20)
  6816. b20.Name = "Mesh"
  6817. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  6818. p21 = Instance.new("Part", m)
  6819. p21.BrickColor = BrickColor.new("Really red")
  6820. p21.FormFactor = Enum.FormFactor.Custom
  6821. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  6822. 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)
  6823. p21.CanCollide = false
  6824. p21.Locked = true
  6825. p21.Elasticity = 0
  6826. p21.BottomSurface = Enum.SurfaceType.Smooth
  6827. p21.TopSurface = Enum.SurfaceType.Smooth
  6828. b21 = Instance.new("SpecialMesh", p21)
  6829. b21.MeshType = Enum.MeshType.Wedge
  6830. b21.Name = "Mesh"
  6831. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  6832. w1 = Instance.new("Weld", p1)
  6833. w1.Name = "Part_Weld"
  6834. w1.Part0 = p1
  6835. 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)
  6836. w1.Part1 = p2
  6837. 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)
  6838. w2 = Instance.new("Weld", p2)
  6839. w2.Name = "Part_Weld"
  6840. w2.Part0 = p2
  6841. 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)
  6842. w2.Part1 = p3
  6843. 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)
  6844. w3 = Instance.new("Weld", p3)
  6845. w3.Name = "Part_Weld"
  6846. w3.Part0 = p3
  6847. 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)
  6848. w3.Part1 = p4
  6849. 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)
  6850. w4 = Instance.new("Weld", p4)
  6851. w4.Name = "Part_Weld"
  6852. w4.Part0 = p4
  6853. 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)
  6854. w4.Part1 = p5
  6855. 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)
  6856. w5 = Instance.new("Weld", p5)
  6857. w5.Name = "Part_Weld"
  6858. w5.Part0 = p5
  6859. 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)
  6860. w5.Part1 = p6
  6861. 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)
  6862. w6 = Instance.new("Weld", p6)
  6863. w6.Name = "Part_Weld"
  6864. w6.Part0 = p6
  6865. 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)
  6866. w6.Part1 = p7
  6867. 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)
  6868. w7 = Instance.new("Weld", p7)
  6869. w7.Name = "Part_Weld"
  6870. w7.Part0 = p7
  6871. 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)
  6872. w7.Part1 = p8
  6873. 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)
  6874. w8 = Instance.new("Weld", p8)
  6875. w8.Name = "Part_Weld"
  6876. w8.Part0 = p8
  6877. 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)
  6878. w8.Part1 = p9
  6879. 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)
  6880. w9 = Instance.new("Weld", p9)
  6881. w9.Name = "Part_Weld"
  6882. w9.Part0 = p9
  6883. 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)
  6884. w9.Part1 = p10
  6885. 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)
  6886. w10 = Instance.new("Weld", p10)
  6887. w10.Name = "Part_Weld"
  6888. w10.Part0 = p10
  6889. 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)
  6890. w10.Part1 = p11
  6891. 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)
  6892. w11 = Instance.new("Weld", p11)
  6893. w11.Name = "Part_Weld"
  6894. w11.Part0 = p11
  6895. 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)
  6896. w11.Part1 = p12
  6897. 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)
  6898. w12 = Instance.new("Weld", p12)
  6899. w12.Name = "Part_Weld"
  6900. w12.Part0 = p12
  6901. 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)
  6902. w12.Part1 = p13
  6903. 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)
  6904. w13 = Instance.new("Weld", p13)
  6905. w13.Name = "Part_Weld"
  6906. w13.Part0 = p13
  6907. 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)
  6908. w13.Part1 = p14
  6909. 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)
  6910. w14 = Instance.new("Weld", p14)
  6911. w14.Name = "Part_Weld"
  6912. w14.Part0 = p14
  6913. 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)
  6914. w14.Part1 = p15
  6915. 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)
  6916. w15 = Instance.new("Weld", p15)
  6917. w15.Name = "Part_Weld"
  6918. w15.Part0 = p15
  6919. 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)
  6920. w15.Part1 = p16
  6921. 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)
  6922. w16 = Instance.new("Weld", p16)
  6923. w16.Name = "Part_Weld"
  6924. w16.Part0 = p16
  6925. 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)
  6926. w16.Part1 = p17
  6927. 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)
  6928. w17 = Instance.new("Weld", p17)
  6929. w17.Name = "Wedge_Weld"
  6930. w17.Part0 = p17
  6931. 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)
  6932. w17.Part1 = p18
  6933. 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)
  6934. w18 = Instance.new("Weld", p18)
  6935. w18.Name = "Wedge_Weld"
  6936. w18.Part0 = p18
  6937. 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)
  6938. w18.Part1 = p19
  6939. 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)
  6940. w19 = Instance.new("Weld", p19)
  6941. w19.Name = "Part_Weld"
  6942. w19.Part0 = p19
  6943. 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)
  6944. w19.Part1 = p20
  6945. 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)
  6946. w20 = Instance.new("Weld", p20)
  6947. w20.Name = "Part_Weld"
  6948. w20.Part0 = p20
  6949. 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)
  6950. w20.Part1 = p21
  6951. 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)
  6952. m.Parent = char
  6953. m:MakeJoints()
  6954. ----------------------------------------------------
  6955. local cor = Instance.new("Part", char.Absolution)
  6956. cor.Name = "Thingy"
  6957. cor.Locked = true
  6958. cor.BottomSurface = 0
  6959. cor.CanCollide = false
  6960. cor.Size = Vector3.new(1, 13, 1)
  6961. cor.Transparency = 1
  6962. cor.TopSurface = 0
  6963. corw = Instance.new("Weld", cor)
  6964. corw.Part0 = rarm
  6965. corw.Part1 = cor
  6966. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  6967. corw.C1 = CFrame.new(0, 0, 0)
  6968. weld1 = Instance.new("Weld", char.Absolution)
  6969. weld1.Part0 = cor
  6970. weld1.Part1 = p6
  6971. weld1.C0 = CFrame.new(0, 0, 0)
  6972. ----------------------------------------------------
  6973. hitb = Instance.new("Part", char.Absolution)
  6974. hitb.Name = "Thingy2"
  6975. hitb.Locked = true
  6976. hitb.BottomSurface = 0
  6977. hitb.CanCollide = false
  6978. hitb.Size = Vector3.new(0, 8, 6)
  6979. hitb.Transparency = 1
  6980. hitb.TopSurface = 0
  6981. weld2 = Instance.new("Weld", char.Absolution)
  6982. weld2.Part0 = hitb
  6983. weld2.Part1 = p12
  6984. weld2.C0 = CFrame.new(0, .6, 1)
  6985. ----------------------------------------------------
  6986. local m = Instance.new("Model")
  6987. m.Name = "Claw"
  6988. p1 = Instance.new("Part", m)
  6989. p1.BrickColor = BrickColor.new("Really black")
  6990. p1.FormFactor = Enum.FormFactor.Custom
  6991. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  6992. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  6993. p1.CanCollide = false
  6994. p1.Locked = true
  6995. p1.BottomSurface = Enum.SurfaceType.Smooth
  6996. p1.TopSurface = Enum.SurfaceType.Smooth
  6997. b1 = Instance.new("BlockMesh", p1)
  6998. b1.Name = "Mesh"
  6999. p2 = Instance.new("WedgePart", m)
  7000. p2.BrickColor = BrickColor.new("Really black")
  7001. p2.Name = "Wedge"
  7002. p2.FormFactor = Enum.FormFactor.Custom
  7003. p2.Size = Vector3.new(3, 1, 0.5)
  7004. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  7005. p2.CanCollide = false
  7006. p2.Locked = true
  7007. p2.BottomSurface = Enum.SurfaceType.Smooth
  7008. p2.TopSurface = Enum.SurfaceType.Smooth
  7009. p3 = Instance.new("Part", m)
  7010. p3.BrickColor = BrickColor.new("Really black")
  7011. p3.FormFactor = Enum.FormFactor.Custom
  7012. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  7013. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  7014. p3.CanCollide = false
  7015. p3.Locked = true
  7016. p3.BottomSurface = Enum.SurfaceType.Smooth
  7017. p3.TopSurface = Enum.SurfaceType.Smooth
  7018. b2 = Instance.new("BlockMesh", p3)
  7019. b2.Name = "Mesh"
  7020. p4 = Instance.new("WedgePart", m)
  7021. p4.BrickColor = BrickColor.new("Really black")
  7022. p4.Name = "Wedge"
  7023. p4.FormFactor = Enum.FormFactor.Custom
  7024. p4.Size = Vector3.new(3, 1, 0.5)
  7025. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  7026. p4.CanCollide = false
  7027. p4.Locked = true
  7028. p4.BottomSurface = Enum.SurfaceType.Smooth
  7029. p4.TopSurface = Enum.SurfaceType.Smooth
  7030. p5 = Instance.new("Part", m)
  7031. p5.BrickColor = BrickColor.new("Really black")
  7032. p5.FormFactor = Enum.FormFactor.Custom
  7033. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  7034. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  7035. p5.CanCollide = false
  7036. p5.Locked = true
  7037. p5.BottomSurface = Enum.SurfaceType.Smooth
  7038. p5.TopSurface = Enum.SurfaceType.Smooth
  7039. b3 = Instance.new("BlockMesh", p5)
  7040. b3.Name = "Mesh"
  7041. p6 = Instance.new("Part", m)
  7042. p6.BrickColor = BrickColor.new("Really black")
  7043. p6.FormFactor = Enum.FormFactor.Custom
  7044. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  7045. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  7046. p6.CanCollide = false
  7047. p6.Locked = true
  7048. p6.BottomSurface = Enum.SurfaceType.Smooth
  7049. p6.TopSurface = Enum.SurfaceType.Smooth
  7050. b4 = Instance.new("BlockMesh", p6)
  7051. b4.Name = "Mesh"
  7052. p7 = Instance.new("Part", m)
  7053. p7.BrickColor = BrickColor.new("Really black")
  7054. p7.FormFactor = Enum.FormFactor.Custom
  7055. p7.Size = Vector3.new(3, 1, 1.20000005)
  7056. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  7057. p7.CanCollide = false
  7058. p7.Locked = true
  7059. p7.BottomSurface = Enum.SurfaceType.Smooth
  7060. p7.TopSurface = Enum.SurfaceType.Smooth
  7061. b5 = Instance.new("BlockMesh", p7)
  7062. b5.Name = "Mesh"
  7063. p8 = Instance.new("Part", m)
  7064. p8.BrickColor = BrickColor.new("Really red")
  7065. p8.FormFactor = Enum.FormFactor.Symmetric
  7066. p8.Size = Vector3.new(1, 1, 1)
  7067. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  7068. p8.CanCollide = false
  7069. p8.Locked = true
  7070. b6 = Instance.new("SpecialMesh", p8)
  7071. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  7072. b6.TextureId = ""
  7073. b6.MeshType = Enum.MeshType.FileMesh
  7074. b6.Name = "Mesh"
  7075. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  7076. p9 = Instance.new("Part", m)
  7077. p9.BrickColor = BrickColor.new("Really black")
  7078. p9.FormFactor = Enum.FormFactor.Custom
  7079. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  7080. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  7081. p9.CanCollide = false
  7082. p9.Locked = true
  7083. p9.BottomSurface = Enum.SurfaceType.Smooth
  7084. p9.TopSurface = Enum.SurfaceType.Smooth
  7085. b7 = Instance.new("BlockMesh", p9)
  7086. b7.Name = "Mesh"
  7087. p10 = Instance.new("Part", m)
  7088. p10.BrickColor = BrickColor.new("Really red")
  7089. p10.FormFactor = Enum.FormFactor.Symmetric
  7090. p10.Size = Vector3.new(1, 1, 1)
  7091. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  7092. p10.CanCollide = false
  7093. p10.Locked = true
  7094. b8 = Instance.new("SpecialMesh", p10)
  7095. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  7096. b8.TextureId = ""
  7097. b8.MeshType = Enum.MeshType.FileMesh
  7098. b8.Name = "Mesh"
  7099. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  7100. p11 = Instance.new("Part", m)
  7101. p11.BrickColor = BrickColor.new("Really black")
  7102. p11.FormFactor = Enum.FormFactor.Custom
  7103. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  7104. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  7105. p11.CanCollide = false
  7106. p11.Locked = true
  7107. p11.BottomSurface = Enum.SurfaceType.Smooth
  7108. p11.TopSurface = Enum.SurfaceType.Smooth
  7109. b9 = Instance.new("BlockMesh", p11)
  7110. b9.Name = "Mesh"
  7111. p12 = Instance.new("Part", m)
  7112. p12.BrickColor = BrickColor.new("Really black")
  7113. p12.FormFactor = Enum.FormFactor.Custom
  7114. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  7115. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  7116. p12.CanCollide = false
  7117. p12.Locked = true
  7118. p12.BottomSurface = Enum.SurfaceType.Smooth
  7119. p12.TopSurface = Enum.SurfaceType.Smooth
  7120. b10 = Instance.new("BlockMesh", p12)
  7121. b10.Name = "Mesh"
  7122. p13 = Instance.new("Part", m)
  7123. p13.BrickColor = BrickColor.new("Really black")
  7124. p13.FormFactor = Enum.FormFactor.Custom
  7125. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  7126. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  7127. p13.CanCollide = false
  7128. p13.Locked = true
  7129. p13.BottomSurface = Enum.SurfaceType.Smooth
  7130. p13.TopSurface = Enum.SurfaceType.Smooth
  7131. b11 = Instance.new("BlockMesh", p13)
  7132. b11.Name = "Mesh"
  7133. p14 = Instance.new("Part", m)
  7134. p14.BrickColor = BrickColor.new("Really red")
  7135. p14.FormFactor = Enum.FormFactor.Symmetric
  7136. p14.Size = Vector3.new(1, 1, 1)
  7137. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  7138. p14.CanCollide = false
  7139. p14.Locked = true
  7140. b12 = Instance.new("SpecialMesh", p14)
  7141. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  7142. b12.TextureId = ""
  7143. b12.MeshType = Enum.MeshType.FileMesh
  7144. b12.Name = "Mesh"
  7145. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  7146. p15 = Instance.new("Part", m)
  7147. p15.BrickColor = BrickColor.new("Medium stone grey")
  7148. p15.Transparency = 1
  7149. p15.Name = "ArmPart"
  7150. p15.FormFactor = Enum.FormFactor.Custom
  7151. p15.Size = Vector3.new(2, 1, 1)
  7152. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  7153. p15.CanCollide = false
  7154. p15.Locked = true
  7155. p15.BottomSurface = Enum.SurfaceType.Smooth
  7156. p15.TopSurface = Enum.SurfaceType.Smooth
  7157. b13 = Instance.new("BlockMesh", p15)
  7158. b13.Name = "Mesh"
  7159. p16 = Instance.new("Part", m)
  7160. p16.BrickColor = BrickColor.new("Really black")
  7161. p16.FormFactor = Enum.FormFactor.Custom
  7162. p16.Size = Vector3.new(3, 1, 2.4000001)
  7163. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  7164. p16.CanCollide = false
  7165. p16.Locked = true
  7166. p16.BottomSurface = Enum.SurfaceType.Smooth
  7167. p16.TopSurface = Enum.SurfaceType.Smooth
  7168. b14 = Instance.new("BlockMesh", p16)
  7169. b14.Name = "Mesh"
  7170. p17 = Instance.new("Part", m)
  7171. p17.BrickColor = BrickColor.new("Really black")
  7172. p17.FormFactor = Enum.FormFactor.Custom
  7173. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  7174. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  7175. p17.CanCollide = false
  7176. p17.Locked = true
  7177. p17.BottomSurface = Enum.SurfaceType.Smooth
  7178. p17.TopSurface = Enum.SurfaceType.Smooth
  7179. b15 = Instance.new("BlockMesh", p17)
  7180. b15.Name = "Mesh"
  7181. p18 = Instance.new("Part", m)
  7182. p18.BrickColor = BrickColor.new("Really red")
  7183. p18.FormFactor = Enum.FormFactor.Symmetric
  7184. p18.Size = Vector3.new(1, 1, 1)
  7185. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  7186. p18.CanCollide = false
  7187. p18.Locked = true
  7188. b16 = Instance.new("SpecialMesh", p18)
  7189. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  7190. b16.TextureId = ""
  7191. b16.MeshType = Enum.MeshType.FileMesh
  7192. b16.Name = "Mesh"
  7193. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  7194. p19 = Instance.new("Part", m)
  7195. p19.BrickColor = BrickColor.new("Really red")
  7196. p19.FormFactor = Enum.FormFactor.Symmetric
  7197. p19.Size = Vector3.new(1, 1, 1)
  7198. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  7199. p19.CanCollide = false
  7200. p19.Locked = true
  7201. b17 = Instance.new("SpecialMesh", p19)
  7202. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  7203. b17.TextureId = ""
  7204. b17.MeshType = Enum.MeshType.FileMesh
  7205. b17.Name = "Mesh"
  7206. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  7207. p20 = Instance.new("Part", m)
  7208. p20.BrickColor = BrickColor.new("Really black")
  7209. p20.FormFactor = Enum.FormFactor.Custom
  7210. p20.Size = Vector3.new(3, 1, 2.4000001)
  7211. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  7212. p20.CanCollide = false
  7213. p20.Locked = true
  7214. p20.BottomSurface = Enum.SurfaceType.Smooth
  7215. p20.TopSurface = Enum.SurfaceType.Smooth
  7216. b18 = Instance.new("BlockMesh", p20)
  7217. b18.Name = "Mesh"
  7218. p21 = Instance.new("Part", m)
  7219. p21.BrickColor = BrickColor.new("Really black")
  7220. p21.FormFactor = Enum.FormFactor.Custom
  7221. p21.Size = Vector3.new(3, 1, 1.19999993)
  7222. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  7223. p21.CanCollide = false
  7224. p21.Locked = true
  7225. p21.BottomSurface = Enum.SurfaceType.Smooth
  7226. p21.TopSurface = Enum.SurfaceType.Smooth
  7227. b19 = Instance.new("BlockMesh", p21)
  7228. b19.Name = "Mesh"
  7229. p22 = Instance.new("WedgePart", m)
  7230. p22.BrickColor = BrickColor.new("Really black")
  7231. p22.Name = "Wedge"
  7232. p22.FormFactor = Enum.FormFactor.Custom
  7233. p22.Size = Vector3.new(3, 1, 0.5)
  7234. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  7235. p22.CanCollide = false
  7236. p22.Locked = true
  7237. p22.BottomSurface = Enum.SurfaceType.Smooth
  7238. p22.TopSurface = Enum.SurfaceType.Smooth
  7239. p23 = Instance.new("Part", m)
  7240. p23.BrickColor = BrickColor.new("Really black")
  7241. p23.FormFactor = Enum.FormFactor.Custom
  7242. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  7243. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  7244. p23.CanCollide = false
  7245. p23.Locked = true
  7246. p23.BottomSurface = Enum.SurfaceType.Smooth
  7247. p23.TopSurface = Enum.SurfaceType.Smooth
  7248. b20 = Instance.new("BlockMesh", p23)
  7249. b20.Name = "Mesh"
  7250. p24 = Instance.new("WedgePart", m)
  7251. p24.BrickColor = BrickColor.new("Really black")
  7252. p24.Name = "Wedge"
  7253. p24.FormFactor = Enum.FormFactor.Custom
  7254. p24.Size = Vector3.new(3, 1, 0.5)
  7255. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  7256. p24.CanCollide = false
  7257. p24.Locked = true
  7258. p24.BottomSurface = Enum.SurfaceType.Smooth
  7259. p24.TopSurface = Enum.SurfaceType.Smooth
  7260. p25 = Instance.new("Part", m)
  7261. p25.BrickColor = BrickColor.new("Really red")
  7262. p25.FormFactor = Enum.FormFactor.Symmetric
  7263. p25.Size = Vector3.new(1, 1, 1)
  7264. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  7265. p25.CanCollide = false
  7266. p25.Locked = true
  7267. p25.BottomSurface = Enum.SurfaceType.Smooth
  7268. p25.TopSurface = Enum.SurfaceType.Smooth
  7269. b21 = Instance.new("SpecialMesh", p25)
  7270. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7271. b21.TextureId = ""
  7272. b21.MeshType = Enum.MeshType.FileMesh
  7273. b21.Name = "Mesh"
  7274. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  7275. p26 = Instance.new("Part", m)
  7276. p26.BrickColor = BrickColor.new("Really black")
  7277. p26.FormFactor = Enum.FormFactor.Symmetric
  7278. p26.Size = Vector3.new(1, 1, 1)
  7279. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  7280. p26.CanCollide = false
  7281. p26.Locked = true
  7282. p26.BottomSurface = Enum.SurfaceType.Smooth
  7283. p26.TopSurface = Enum.SurfaceType.Smooth
  7284. b22 = Instance.new("SpecialMesh", p26)
  7285. b22.MeshType = Enum.MeshType.Brick
  7286. b22.Name = "Mesh"
  7287. w1 = Instance.new("Weld", p1)
  7288. w1.Name = "Wedge_Weld"
  7289. w1.Part0 = p1
  7290. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  7291. w1.Part1 = p2
  7292. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  7293. w2 = Instance.new("Weld", p2)
  7294. w2.Name = "Part_Weld"
  7295. w2.Part0 = p2
  7296. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  7297. w2.Part1 = p3
  7298. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  7299. w3 = Instance.new("Weld", p3)
  7300. w3.Name = "Wedge_Weld"
  7301. w3.Part0 = p3
  7302. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  7303. w3.Part1 = p4
  7304. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  7305. w4 = Instance.new("Weld", p4)
  7306. w4.Name = "Part_Weld"
  7307. w4.Part0 = p4
  7308. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  7309. w4.Part1 = p5
  7310. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  7311. w5 = Instance.new("Weld", p5)
  7312. w5.Name = "Part_Weld"
  7313. w5.Part0 = p5
  7314. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  7315. w5.Part1 = p6
  7316. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  7317. w6 = Instance.new("Weld", p6)
  7318. w6.Name = "Part_Weld"
  7319. w6.Part0 = p6
  7320. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  7321. w6.Part1 = p7
  7322. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  7323. w7 = Instance.new("Weld", p7)
  7324. w7.Name = "Part_Weld"
  7325. w7.Part0 = p7
  7326. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  7327. w7.Part1 = p8
  7328. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  7329. w8 = Instance.new("Weld", p8)
  7330. w8.Name = "Part_Weld"
  7331. w8.Part0 = p8
  7332. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  7333. w8.Part1 = p9
  7334. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  7335. w9 = Instance.new("Weld", p9)
  7336. w9.Name = "Part_Weld"
  7337. w9.Part0 = p9
  7338. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  7339. w9.Part1 = p10
  7340. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  7341. w10 = Instance.new("Weld", p10)
  7342. w10.Name = "Part_Weld"
  7343. w10.Part0 = p10
  7344. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  7345. w10.Part1 = p11
  7346. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  7347. w11 = Instance.new("Weld", p11)
  7348. w11.Name = "Part_Weld"
  7349. w11.Part0 = p11
  7350. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  7351. w11.Part1 = p12
  7352. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  7353. w12 = Instance.new("Weld", p12)
  7354. w12.Name = "Part_Weld"
  7355. w12.Part0 = p12
  7356. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  7357. w12.Part1 = p13
  7358. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  7359. w13 = Instance.new("Weld", p13)
  7360. w13.Name = "Part_Weld"
  7361. w13.Part0 = p13
  7362. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  7363. w13.Part1 = p14
  7364. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  7365. w14 = Instance.new("Weld", p14)
  7366. w14.Name = "ArmPart_Weld"
  7367. w14.Part0 = p14
  7368. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  7369. w14.Part1 = p15
  7370. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  7371. w15 = Instance.new("Weld", p15)
  7372. w15.Name = "Part_Weld"
  7373. w15.Part0 = p15
  7374. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  7375. w15.Part1 = p16
  7376. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  7377. w16 = Instance.new("Weld", p16)
  7378. w16.Name = "Part_Weld"
  7379. w16.Part0 = p16
  7380. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  7381. w16.Part1 = p17
  7382. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  7383. w17 = Instance.new("Weld", p17)
  7384. w17.Name = "Part_Weld"
  7385. w17.Part0 = p17
  7386. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  7387. w17.Part1 = p18
  7388. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  7389. w18 = Instance.new("Weld", p18)
  7390. w18.Name = "Part_Weld"
  7391. w18.Part0 = p18
  7392. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  7393. w18.Part1 = p19
  7394. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  7395. w19 = Instance.new("Weld", p19)
  7396. w19.Name = "Part_Weld"
  7397. w19.Part0 = p19
  7398. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  7399. w19.Part1 = p20
  7400. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  7401. w20 = Instance.new("Weld", p20)
  7402. w20.Name = "Part_Weld"
  7403. w20.Part0 = p20
  7404. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  7405. w20.Part1 = p21
  7406. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  7407. w21 = Instance.new("Weld", p21)
  7408. w21.Name = "Wedge_Weld"
  7409. w21.Part0 = p21
  7410. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  7411. w21.Part1 = p22
  7412. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  7413. w22 = Instance.new("Weld", p22)
  7414. w22.Name = "Part_Weld"
  7415. w22.Part0 = p22
  7416. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  7417. w22.Part1 = p23
  7418. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  7419. w23 = Instance.new("Weld", p23)
  7420. w23.Name = "Wedge_Weld"
  7421. w23.Part0 = p23
  7422. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  7423. w23.Part1 = p24
  7424. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  7425. w24 = Instance.new("Weld", p24)
  7426. w24.Name = "Part_Weld"
  7427. w24.Part0 = p24
  7428. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  7429. w24.Part1 = p25
  7430. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  7431. w25 = Instance.new("Weld", p25)
  7432. w25.Name = "Part_Weld"
  7433. w25.Part0 = p25
  7434. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  7435. w25.Part1 = p26
  7436. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  7437. m.Parent = char
  7438. m:MakeJoints()
  7439. ----------------------------------------------------
  7440. local cor2 = Instance.new("Part", char.Claw)
  7441. cor2.Name = "Thingy"
  7442. cor2.Locked = true
  7443. cor2.BottomSurface = 0
  7444. cor2.CanCollide = false
  7445. cor2.Size = Vector3.new(2, 1, 1)
  7446. cor2.Transparency = 1
  7447. cor2.TopSurface = 0
  7448. corw2 = Instance.new("Weld", cor2)
  7449. corw2.Part0 = larm
  7450. corw2.Part1 = cor2
  7451. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  7452. corw2.C1 = CFrame.new(0, 0, 0)
  7453. weld2 = Instance.new("Weld", char.Claw)
  7454. weld2.Part0 = cor2
  7455. weld2.Part1 = char.Claw.ArmPart
  7456. weld2.C0 = CFrame.new(0, 0, 0)
  7457. ----------------------------------------------------
  7458. function weld5(part0, part1, c0, c1)
  7459.     weeld=Instance.new("Weld", part0)
  7460.     weeld.Part0=part0
  7461.     weeld.Part1=part1
  7462.     weeld.C0=c0
  7463.     weeld.C1=c1
  7464.     return weeld
  7465. end
  7466. ----------------------------------------------------
  7467. function newRay(start,face,range,wat)
  7468.     local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  7469.     hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  7470.     return rey,hit,pos
  7471. end
  7472. ----------------------------------------------------
  7473. mod5 = Instance.new("Model",char)
  7474.  
  7475. function FindNearestTorso(Position,Distance,SinglePlayer)
  7476.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7477.         local List = {}
  7478.         for i,v in pairs(workspace:GetChildren())do
  7479.             if v:IsA("Model")then
  7480.                 if v:findFirstChild("Torso")then
  7481.                     if v ~= char then
  7482.                         if(v.Torso.Position -Position).magnitude <= Distance then
  7483.                             table.insert(List,v)
  7484.                         end
  7485.                     end
  7486.                 end
  7487.             end
  7488.         end
  7489.     return List
  7490. end
  7491.  
  7492. function Landing()
  7493.     part=Instance.new('Part',mod5)
  7494.     part.Anchored=true
  7495.     part.CanCollide=false
  7496.     part.FormFactor='Custom'
  7497.     part.Size=Vector3.new(.2,.2,.2)
  7498.     part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  7499.     part.Transparency=.7
  7500.     part.BrickColor=BrickColor.new('Really black')
  7501.     mesh=Instance.new('SpecialMesh',part)
  7502.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  7503.     mesh.Scale=Vector3.new(10,5,10)
  7504.  
  7505.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  7506.         if v:FindFirstChild('Humanoid') then
  7507.             v.Humanoid:TakeDamage(math.random(20,30))
  7508.             v.Humanoid.PlatformStand = true
  7509.             v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  7510.         end
  7511.     end
  7512.  
  7513.     coroutine.resume(coroutine.create(function()
  7514.         for i=0,3.8,0.05 do
  7515.             wait()
  7516.             part.CFrame=part.CFrame
  7517.             part.Transparency=i
  7518.             mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  7519.             end
  7520.         part.Parent = nil
  7521.     end))
  7522. end
  7523. ----------------------------------------------------
  7524. mod4 = Instance.new("Model",char)
  7525.  
  7526. ptez = {0.7, 0.8, 0.9, 1}
  7527.  
  7528. function FindNearestTorso(Position,Distance,SinglePlayer)
  7529.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7530.         local List = {}
  7531.         for i,v in pairs(workspace:GetChildren())do
  7532.             if v:IsA("Model")then
  7533.                 if v:findFirstChild("Torso")then
  7534.                     if v ~= char then
  7535.                         if(v.Torso.Position -Position).magnitude <= Distance then
  7536.                             table.insert(List,v)
  7537.                         end
  7538.                     end
  7539.                 end
  7540.             end
  7541.         end
  7542.     return List
  7543. end
  7544.  
  7545. function GroundPound()
  7546.     part=Instance.new('Part',mod4)
  7547.     part.Anchored=true
  7548.     part.CanCollide=false
  7549.     part.FormFactor='Custom'
  7550.     part.Size=Vector3.new(.2,.2,.2)
  7551.     part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  7552.     part.Transparency=.7
  7553.     part.BrickColor=BrickColor.new('Really black')
  7554.     mesh=Instance.new('SpecialMesh',part)
  7555.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  7556.     mesh.Scale=Vector3.new(3,3,3)
  7557.     part2=Instance.new('Part',mod4)
  7558.     part2.Anchored=true
  7559.     part2.CanCollide=false
  7560.     part2.FormFactor='Custom'
  7561.     part2.Size=Vector3.new(.2,.2,.2)
  7562.     part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  7563.     part2.Transparency=.7
  7564.     part2.BrickColor=BrickColor.new('Really red')
  7565.     mesh2=Instance.new('SpecialMesh',part2)
  7566.     mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  7567.     mesh2.Scale=Vector3.new(3,1.5,3)
  7568.     x = Instance.new("Sound",char)
  7569.     x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  7570.     x.Pitch = ptez[math.random(1,#ptez)]
  7571.     x.Volume = 1
  7572.     wait(.1)
  7573.     x:Play()
  7574.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  7575.         if v:FindFirstChild('Humanoid') then
  7576.             v.Humanoid:TakeDamage(math.random(8,15))
  7577.         end
  7578.     end
  7579.     coroutine.resume(coroutine.create(function()
  7580.         for i=0,0.62,0.13 do
  7581.             wait()
  7582.             part.CFrame=part.CFrame
  7583.             part.Transparency=i
  7584.             mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  7585.             part2.CFrame=part2.CFrame
  7586.             part2.Transparency=i
  7587.             mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  7588.             end
  7589.         part.Parent=nil
  7590.         part2.Parent=nil
  7591.         x:Destroy()
  7592.     end))
  7593. end
  7594. ----------------------------------------------------
  7595. mod=Instance.new('Model',char)
  7596.  
  7597. function charge()
  7598.     hed.Velocity=hed.CFrame.lookVector*200
  7599.     part=Instance.new('Part',mod)
  7600.     part.Anchored=true
  7601.     part.CanCollide=false
  7602.     part.FormFactor='Custom'
  7603.     part.Size=Vector3.new(.2,.2,.2)
  7604.     part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  7605.     part.Transparency=.7
  7606.     part.BrickColor=BrickColor.new('Black')
  7607.     mesh=Instance.new('SpecialMesh',part)
  7608.     mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  7609.     mesh.Scale=Vector3.new(10,5,10)
  7610.     part2=part:clone()
  7611.     part2.Parent=mod
  7612.     part2.BrickColor=BrickColor.new('Really red')
  7613.     mesh2=mesh:clone()
  7614.     mesh2.Parent=part2
  7615.     mesh2.Scale=Vector3.new(20,10,20)
  7616.     part3=part2:clone()
  7617.     part3.Parent = mod
  7618.     part3.BrickColor=BrickColor.new('Really black')
  7619.     mesh3=mesh2:clone()
  7620.     mesh2.Parent=part3
  7621.     mesh3.Scale=Vector3.new(30,15,30)
  7622.     coroutine.resume(coroutine.create(function()
  7623.         for i=0,1,0.1 do
  7624.             wait()
  7625.             part.CFrame=part.CFrame
  7626.             part.Transparency=i
  7627.             mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  7628.             part2.CFrame=part2.CFrame
  7629.             part2.Transparency=i
  7630.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  7631.             part3.CFrame=part3.CFrame
  7632.             part3.Transparency=i
  7633.             mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  7634.             end
  7635.         part.Parent=nil
  7636.         part2.Parent=nil
  7637.         part3.Parent = nil
  7638.     end))
  7639. end
  7640. ----------------------------------------------------
  7641. function FindNearestTorso(Position,Distance,SinglePlayer)
  7642.     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7643.         local List = {}
  7644.         for i,v in pairs(workspace:GetChildren())do
  7645.             if v:IsA("Model")then
  7646.                 if v:findFirstChild("Torso")then
  7647.                     if v ~= char then
  7648.                         if(v.Torso.Position -Position).magnitude <= Distance then
  7649.                             table.insert(List,v)
  7650.                         end
  7651.                     end
  7652.                 end
  7653.             end
  7654.         end
  7655.     return List
  7656. end
  7657.  
  7658. mod3 = Instance.new("Model",rleg)
  7659.  
  7660. function Stomp()
  7661.     part=Instance.new('Part',mod3)
  7662.     part.Anchored=true
  7663.     part.CanCollide=false
  7664.     part.FormFactor='Custom'
  7665.     part.Size=Vector3.new(.2,.2,.2)
  7666.     part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  7667.     part.Transparency=.7
  7668.     part.BrickColor=BrickColor.new('Bright green')
  7669.     mesh=Instance.new('SpecialMesh',part)
  7670.     mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  7671.     mesh.Scale=Vector3.new(25,25,25)
  7672.     part2=part:clone()
  7673.     part2.Parent=mod3
  7674.     part2.BrickColor=BrickColor.new('Bright green')
  7675.     mesh2=mesh:clone()
  7676.     mesh2.Parent=part2
  7677.     mesh2.Scale=Vector3.new(15,15,15)
  7678.     part3=part:clone()
  7679.     part3.Parent=mod3
  7680.     part3.TopSurface=0
  7681.     part3.BottomSurface=0
  7682.     part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  7683.     mesh3=Instance.new('SpecialMesh',part3)
  7684.     mesh3.MeshType = 3
  7685.     mesh3.Scale=Vector3.new(12,12,12)
  7686.     for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  7687.         if v:FindFirstChild('Humanoid') then
  7688.             v.Humanoid:TakeDamage(math.random(20,60))
  7689.             v.Humanoid.PlatformStand = true
  7690.             v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  7691.         end
  7692.     end
  7693.     coroutine.resume(coroutine.create(function()
  7694.         for i=0,3.8,0.05 do
  7695.             wait()
  7696.             part.CFrame=part.CFrame
  7697.             part.Transparency=i
  7698.             mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  7699.             part2.CFrame=part2.CFrame
  7700.             part2.Transparency=i
  7701.             mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  7702.             part3.CFrame=part3.CFrame
  7703.             part3.Transparency=i
  7704.             mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  7705.         end
  7706.     end))
  7707. end
  7708. ----------------------------------------------------
  7709.  
  7710. local acos = math.acos
  7711. local sqrt = math.sqrt
  7712. local Vec3 = Vector3.new
  7713. local fromAxisAngle = CFrame.fromAxisAngle
  7714.  
  7715. local function toAxisAngle(CFr)
  7716.         local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  7717.         local Angle = math.acos((R00+R11+R22-1)/2)
  7718.         local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  7719.         A = A == 0 and 0.00001 or A
  7720.         local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  7721.         B = B == 0 and 0.00001 or B
  7722.         local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  7723.         C = C == 0 and 0.00001 or C
  7724.         local x = (R21-R12)/sqrt(A)
  7725.         local y = (R02-R20)/sqrt(B)
  7726.         local z = (R10-R01)/sqrt(C)
  7727.         return Vec3(x,y,z),Angle
  7728. end
  7729.  
  7730. function ApplyTrig(Num,Func)
  7731.         local Min,Max = Func(0),Func(1)
  7732.         local i = Func(Num)
  7733.         return (i-Min)/(Max-Min)
  7734.         --[[if Func == "sin" then
  7735.                 return (math.sin((1-Num)*math.pi)+1)/2
  7736.         elseif Func == "cos" then
  7737.                 return (math.cos((1-Num)*math.pi)+1)/2
  7738.         end]]
  7739. end
  7740.  
  7741. function LerpCFrame(CFrame1,CFrame2,Num)
  7742.         local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  7743.         return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  7744. end
  7745.  
  7746. function Crater(Torso,Radius)
  7747.         Spawn(function()
  7748.         local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  7749.         local Ignore = {}
  7750.         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7751.                 if v.Character ~= nil then
  7752.                         Ignore[#Ignore+1] = v.Character
  7753.                 end
  7754.         end
  7755.         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  7756.         if Hit == nil then return end
  7757.         local Parts = {}
  7758.         for i = 1,360,10 do
  7759.                 local P = Instance.new("Part",Torso.Parent)
  7760.                 P.Anchored = true
  7761.                 P.FormFactor = "Custom"
  7762.                 P.BrickColor = Hit.BrickColor
  7763.                 P.Material = Hit.Material
  7764.                 P.TopSurface = "Smooth"
  7765.                 P.BottomSurface = "Smooth"
  7766.                 P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  7767.                 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)))
  7768.                 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}
  7769.                 if math.random(0,5) == 0 then -- rubble
  7770.                         local P = Instance.new("Part",Torso.Parent)
  7771.                         P.Anchored = true
  7772.                         P.FormFactor = "Custom"
  7773.                         P.BrickColor = Hit.BrickColor
  7774.                         P.Material = Hit.Material
  7775.                         P.TopSurface = "Smooth"
  7776.                         P.BottomSurface = "Smooth"
  7777.                         P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  7778.                         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)))
  7779.                         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}
  7780.                 end
  7781.         end
  7782.         for i = 0,1,0.05 do
  7783.                 for i2,v in pairs(Parts) do
  7784.                         v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  7785.                 end
  7786.                 wait(0.02)
  7787.         end
  7788.         for i,v in pairs(Parts) do
  7789.                 if v[1].Size.X > 2.1 then
  7790.                         v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  7791.                 end
  7792.                 v[1].Anchored = false
  7793.         end
  7794.         for i = 0,1,0.05 do
  7795.                 for i2,v in pairs(Parts) do
  7796.                         v[1].Transparency = i
  7797.                         if i == 1 then
  7798.                                 v[1]:Destroy()
  7799.                         elseif i >= 0.25 then
  7800.                                 v[1].CanCollide = false
  7801.                         end
  7802.                 end
  7803.                 wait(0.02)
  7804.         end
  7805.         Parts = nil
  7806.         end)
  7807. end
  7808.  
  7809. ----------------------------------------------------
  7810. mouse.KeyDown:connect(function(key)
  7811.     if key == "r" then
  7812.         larm.BrickColor = BrickColor.new("Really red")
  7813.         rarm.BrickColor = BrickColor.new("Really red")
  7814.         if Debounces.CanAttack == true then
  7815.         Debounces.CanAttack = false
  7816.         Debounces.on = true
  7817.         Debounces.NoIdl = true
  7818. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  7819.         hit = ht.Parent
  7820.         if ht and hit:IsA("Model") then
  7821.                 if hit:FindFirstChild("Humanoid") then
  7822.                     if hit.Name ~= p.Name then
  7823.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  7824.                                 Debounces.Slashed = true]]--
  7825.                                     hit:FindFirstChild("Humanoid"):TakeDamage(10)
  7826.                                 wait(1)
  7827.                                 --Debounces.Slashed = false
  7828.                         --end
  7829.                     end
  7830.                 end
  7831.         elseif ht and hit:IsA("Hat") then
  7832.             if hit.Parent.Name ~= p.Name then
  7833.                 if hit.Parent:FindFirstChild("Humanoid") then
  7834.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  7835.                                 Debounces.Slashed = true]]--
  7836.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  7837.                                 wait(1)
  7838.                     --Debounces.Slashed = false
  7839.                 end
  7840.             end
  7841.         end    
  7842.     end)
  7843. q = Instance.new("Sound",hed)
  7844. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  7845. q.Pitch = 0.85
  7846. q.Looped = false
  7847. q1 = Instance.new("Sound",hed)
  7848. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  7849. q1.Pitch = 0.85
  7850. q1.Looped = false
  7851. q:Play()
  7852. q1:Play()
  7853.     for i = 1,20 do
  7854.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  7855.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  7856.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  7857.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  7858.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  7859.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  7860.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  7861.         if Debounces.on == false then break end
  7862.     wait()
  7863. end
  7864. n = Instance.new("Sound",hed)
  7865. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  7866. n.Pitch = 0.94
  7867. n.Looped = false
  7868. n1 = Instance.new("Sound",hed)
  7869. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  7870. n1.Pitch = 0.94
  7871. n1.Looped = false
  7872. n:Play()
  7873. n1:Play()
  7874. b = Instance.new("Sound",hed)
  7875. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  7876. b.Pitch = 0.94
  7877. b.Looped = false
  7878. b1 = Instance.new("Sound",hed)
  7879. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  7880. b1.Pitch = 0.94
  7881. b1.Looped = false
  7882. b:Play()
  7883. b1:Play()
  7884.     for i = 1,26 do
  7885.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  7886.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  7887.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  7888.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  7889.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  7890.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  7891.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  7892.         if Debounces.on == false then break end
  7893.     wait()
  7894. end
  7895. wait(.5)
  7896. to:disconnect()
  7897. q:Destroy()
  7898. q1:Destroy()
  7899. n:Destroy()
  7900. n1:Destroy()
  7901. larm.BrickColor = BrickColor.new("Really black")
  7902. rarm.BrickColor = BrickColor.new("Really black")
  7903.     if Debounces.CanAttack == false then
  7904.         Debounces.CanAttack = true
  7905.         Debounces.on = false
  7906.         Debounces.NoIdl = false
  7907.             end
  7908.         end
  7909.     end
  7910. end)
  7911. ----------------------------------------------------
  7912. mouse.KeyDown:connect(function(key)
  7913.     if key == "q" then
  7914.         larm.BrickColor = BrickColor.new("Really red")
  7915.         rarm.BrickColor = BrickColor.new("Really red")
  7916.         if Debounces.CanAttack == true then
  7917.         Debounces.CanAttack = false
  7918.         Debounces.on = true
  7919.         Debounces.NoIdl = true
  7920. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  7921.         hit = ht.Parent
  7922.         if ht and hit:IsA("Model") then
  7923.                 if hit:FindFirstChild("Humanoid") then
  7924.                     if hit.Name ~= p.Name then
  7925.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  7926.                                 Debounces.Slashed = true]]--
  7927.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  7928.                                 wait(1)
  7929.                                 --Debounces.Slashed = false
  7930.                         --end
  7931.                     end
  7932.                 end
  7933.         elseif ht and hit:IsA("Hat") then
  7934.             if hit.Parent.Name ~= p.Name then
  7935.                 if hit.Parent:FindFirstChild("Humanoid") then
  7936.                        --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  7937.                                 Debounces.Slashed = true]]--
  7938.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  7939.                                 wait(1)
  7940.                     --Debounces.Slashed = false
  7941.                 end
  7942.             end
  7943.         end    
  7944.     end)
  7945.         for i = 1, 20 do
  7946.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  7947.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  7948.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  7949.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  7950.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  7951.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  7952.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  7953.         if Debounces.on == false then break end
  7954.         wait()
  7955.     end
  7956.     z = Instance.new("Sound",hed)
  7957.     z.SoundId = "rbxassetid://160069154"
  7958.     z.Looped = false
  7959.     z.Pitch = .9
  7960.     z1 = Instance.new("Sound",hed)
  7961.     z1.SoundId = "rbxassetid://160069154"
  7962.     z1.Looped = false
  7963.     z1.Pitch = .9
  7964.     wait(0.01)
  7965.     z:Play()
  7966.     z1:Play()
  7967.         for i = 1, 12 do
  7968.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  7969.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  7970.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  7971.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  7972.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  7973.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  7974.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  7975.         if Debounces.on == false then break end
  7976.         wait()
  7977.     end
  7978.         for i = 1, 12 do
  7979.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  7980.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  7981.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  7982.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  7983.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  7984.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  7985.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  7986.         if Debounces.on == false then break end
  7987.         wait()
  7988.     end
  7989.     z = Instance.new("Sound",hed)
  7990.     z.SoundId = "rbxassetid://168586621"
  7991.     z.Looped = false
  7992.     z.Pitch = 1
  7993.     z1 = Instance.new("Sound",hed)
  7994.     z1.SoundId = "rbxassetid://168586621"
  7995.     z1.Looped = false
  7996.     z1.Pitch = 1
  7997.     wait(0.01)
  7998.     z:Play()
  7999.     z1:Play()
  8000.         for i = 1, 12 do
  8001.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  8002.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  8003.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  8004.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  8005.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  8006.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  8007.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  8008.         if Debounces.on == false then break end
  8009.         wait()
  8010.     end
  8011. to:disconnect()
  8012. larm.BrickColor = BrickColor.new("Really black")
  8013. rarm.BrickColor = BrickColor.new("Really black")
  8014.     if Debounces.CanAttack == false then
  8015.         Debounces.CanAttack = true
  8016.         Debounces.on = false
  8017.         Debounces.NoIdl = false
  8018.             end
  8019.         end
  8020.     end
  8021. end)
  8022. ----------------------------------------------------
  8023. Sit = false
  8024. mouse.KeyDown:connect(function(key)
  8025.     if key == "v" then
  8026.         if Sit == false then
  8027.             Sit = true
  8028.             hum.WalkSpeed = 0.0001
  8029.         stanceToggle = "Sitting"
  8030.     elseif Sit == true then
  8031.         Sit = false
  8032.             hum.WalkSpeed = 30
  8033.         stanceToggle = "Normal"
  8034.         end
  8035.     end
  8036. end)
  8037. ----------------------------------------------------
  8038. mouse.KeyDown:connect(function(key)
  8039.     if key == "t" then
  8040.         if Debounces.CanAttack == true then
  8041.         Debounces.CanAttack = false
  8042.         Debounces.on = true
  8043.         Debounces.NoIdl = true
  8044.         for i = 1, 20 do
  8045.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  8046.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  8047.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  8048.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  8049.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  8050.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  8051.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  8052.             if Debounces.on == false then break end
  8053.             wait()
  8054.         end
  8055.         Spawn(function()
  8056.             local Parts = {}
  8057.             for Y = -5,5 do
  8058.                 local P = Instance.new("Part",char)
  8059.                 P.Anchored = true
  8060.                 P.FormFactor = "Custom"
  8061.                 P.CanCollide = false
  8062.                 P.Size = Vector3.new(1,2,1)
  8063.                 P.TopSurface = "SmoothNoOutlines"
  8064.                 P.BottomSurface = "SmoothNoOutlines"
  8065.                 P.BrickColor = BrickColor.new("Really black")
  8066.                 P.Name = tostring(Y)
  8067.                 local i = (Y+5)/(10)
  8068.                 i = 1-math.cos(math.pi*i-(math.pi/2))
  8069.                 P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  8070.                 --[[P.Touched:connect(function(ht)
  8071.                     local hit = ht.Parent
  8072.                     if hit:FindFirstChild("Humanoid") then
  8073.                         hit.Humanoid:TakeDamage(math.random(20,50))
  8074.                     end
  8075.                 end)]]--
  8076.         s = Instance.new("Sound",P)
  8077.         s.SoundId = "rbxassetid://228343271"
  8078.         s.Volume = .7
  8079.         s.Pitch = 0.9
  8080.         s:Play()
  8081. P.Touched:connect(function(ht)
  8082.         hit = ht.Parent
  8083.         if ht and hit:IsA("Model") then
  8084.                 if hit:FindFirstChild("Humanoid") then
  8085.                     if hit.Name ~= p.Name then
  8086.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  8087.                                 Debounces.Slashed = true]]--
  8088.                                     hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  8089.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8090.                                 wait(1)
  8091.                                 --Debounces.Slashed = false
  8092.                         --end
  8093.                 end
  8094.                 end
  8095.         elseif ht and hit:IsA("Hat") then
  8096.             if hit.Parent.Name ~= p.Name then
  8097.                 if hit.Parent:FindFirstChild("Humanoid") then
  8098.                         --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  8099.                                 Debounces.Slashed = true]]--
  8100.                                 hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  8101.                                 hit:FindFirstChild("Humanoid").PlatformStand = true
  8102.                                 wait(1)
  8103.                     --Debounces.Slashed = false
  8104.                 --end
  8105.             end
  8106.         end
  8107.     end
  8108. end)
  8109.                 Parts[#Parts+1] = P
  8110.             end
  8111.             local BREAKIT = false
  8112.             local CParts = {}
  8113.             local Rocks = {}
  8114.             local LastPos = nil
  8115.             for i = 1,70 do
  8116.                 for i2,v in pairs(Parts) do
  8117.                     v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  8118.                     local cf = v.CFrame
  8119.                     v.Size = v.Size+Vector3.new(0.4,0.35,0)
  8120.                     v.CFrame = cf
  8121.                     v.Transparency = v.Transparency+0.02
  8122.                     if v.Transparency >= 0.975 then BREAKIT = true end
  8123.                     if v.Name == "0" then
  8124.                         local Ignore = {}
  8125.                         for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  8126.                             if v.Character ~= nil then
  8127.                                 Ignore[#Ignore+1] = v.Character
  8128.                             end
  8129.                         end
  8130.                         local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  8131.                         local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  8132.                         if Hit ~= nil then
  8133.                             if #Rocks == 0 then
  8134.                                 for i = 1,5 do
  8135.                                     local P = Instance.new("Part",char)
  8136.                                     Rocks[#Rocks+1] = P
  8137.                                     P.Anchored = true
  8138.                                     P.FormFactor = "Custom"
  8139.                                     P.BrickColor = Hit.BrickColor
  8140.                                     P.Material = Hit.Material
  8141.                                     P.TopSurface = "Smooth"
  8142.                                     P.BottomSurface = "Smooth"
  8143.                                     P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  8144.                                 end
  8145.                             end
  8146.                             for i,P in pairs(Rocks) do
  8147.                                 P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  8148.                             end
  8149.                             local P = Instance.new("Part",char)
  8150.                             CParts[#CParts+1] = {P,tick()}
  8151.                             P.Anchored = true
  8152.                             P.FormFactor = "Custom"
  8153.                             P.BrickColor = Hit.BrickColor
  8154.                             P.Material = Hit.Material
  8155.                             P.TopSurface = "Smooth"
  8156.                             P.BottomSurface = "Smooth"
  8157.                             P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  8158.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  8159.                             Pos = Pos.p
  8160.                             P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  8161.                             local P = P:Clone()
  8162.                             CParts[#CParts+1] = {P,tick()}
  8163.                             P.Parent = char
  8164.                             Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  8165.                             Pos = Pos.p
  8166.                             P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  8167.                             if LastPos ~= nil then
  8168.                                 local P = P:Clone()
  8169.                                 CParts[#CParts+1] = {P,tick()}
  8170.                                 P.Parent = char
  8171.                                 P.BrickColor = BrickColor.new("Really black")
  8172.                                 Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  8173.                                 Pos = Pos.p
  8174.                                 local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  8175.                                 P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  8176.                                 --P.Velocity = Vector3.new(0,-1000,0)
  8177.                                 P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  8178.                             end
  8179.                             LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  8180.                         end
  8181.                     end
  8182.                 end
  8183.                 if BREAKIT then break end
  8184.                 wait(0.002)
  8185.             end
  8186.             for i,v in pairs(Rocks) do
  8187.                 CParts[#CParts+1] = {v,tick()}
  8188.             end
  8189.             for i,v in pairs(Parts) do
  8190.                 v:Destroy()
  8191.             end
  8192.             Parts = nil
  8193.             while true do
  8194.                 local t = tick()
  8195.                 local p = nil
  8196.                 for i,v in pairs(CParts) do
  8197.                     if t-v[2] > 4 then
  8198.                         v[1].Transparency = v[1].Transparency+0.05
  8199.                         if v[1].Transparency >= 1 then
  8200.                             v[1]:Destroy()
  8201.                             CParts[i] = nil
  8202.                         end
  8203.                     end
  8204.                     p = v
  8205.                 end
  8206.                 if p == nil then break end
  8207.                 wait(0.002)
  8208.             end
  8209.             for i,v in pairs(CParts) do
  8210.                 v:Destroy()
  8211.             end
  8212.             CParts = {}
  8213.         end)
  8214.         for i = 1, 20 do
  8215.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  8216.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  8217.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  8218.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  8219.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  8220.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  8221.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  8222.             if Debounces.on == false then break end
  8223.             wait()
  8224.         end
  8225.     if Debounces.CanAttack == false then
  8226.         Debounces.CanAttack = true
  8227.         Debounces.on = false
  8228.         Debounces.NoIdl = false
  8229.             end
  8230.         end
  8231.     end
  8232. end)
  8233. ----------------------------------------------------
  8234. mouse.KeyDown:connect(function(key)
  8235.     if key == "e" then
  8236.     larm.BrickColor = BrickColor.new("Really red")
  8237.     rarm.BrickColor = BrickColor.new("Really red")
  8238.         if Debounces.CanAttack == true then
  8239.         Debounces.CanAttack = false
  8240.         Debounces.on = true
  8241.         Debounces.NoIdl = true
  8242.         for i = 1, 18 do
  8243.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  8244.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  8245.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  8246.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  8247.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  8248.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  8249.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  8250.         if Debounces.on == false then break end
  8251.             wait()
  8252.         end
  8253.         local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  8254.         local rng = Instance.new("Part", char.Absolution.Handle)
  8255.         rng.Anchored = true
  8256.         rng.BrickColor = BrickColor.new("Really black")
  8257.         rng.CanCollide = true
  8258.         rng.FormFactor = 3
  8259.         rng.Name = "Ring"
  8260.         rng.Size = Vector3.new(1, 1, 1)
  8261.         rng.CanCollide = false
  8262.         rng.Transparency = 0.35
  8263.         rng.TopSurface = 0
  8264.         rng.BottomSurface = 0
  8265.         rng.CFrame = HandCF
  8266.         local rngm = Instance.new("SpecialMesh", rng)
  8267.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  8268.         rngm.Scale = Vector3.new(1, 1, 2)
  8269.             x = Instance.new("Sound", hed)
  8270.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  8271.             x.Looped = false
  8272.             x.Pitch = .7
  8273.             x.Volume = 1
  8274.             x1 = Instance.new("Sound", hed)
  8275.             x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  8276.             x1.Looped = false
  8277.             x1.Pitch = .7
  8278.             x1.Volume = 1
  8279.             x:Play()
  8280.             x1:Play()
  8281.             rngto = rng.Touched:connect(function(ht)
  8282.             hit = ht.Parent
  8283.             if ht and hit:IsA("Model") then
  8284.                     if hit:FindFirstChild("Humanoid") then
  8285.                         if hit.Name ~= p.Name then
  8286.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  8287.                                     Debounces.Slashed = true]]--
  8288.                                     hit:FindFirstChild("Humanoid"):TakeDamage(4)
  8289.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8290.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  8291.                                     --Debounces.Slashed = false
  8292.                             --end
  8293.                         end
  8294.                     end
  8295.             elseif ht and hit:IsA("Hat") then
  8296.                 if hit.Parent.Name ~= p.Name then
  8297.                     if hit.Parent:FindFirstChild("Humanoid") then
  8298.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  8299.                                     Debounces.Slashed = true]]--
  8300.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  8301.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8302.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  8303.                         --Debounces.Slashed = false
  8304.                     end
  8305.                 end
  8306.             end    
  8307.         end)
  8308.                 coroutine.wrap(function()
  8309.                 for i = 1, 60, 2 do
  8310.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  8311.                 rng.Size = rngm.Scale
  8312.                 rng.CFrame = HandCF
  8313.                 rng.Transparency = i/60
  8314.                 wait()
  8315.                 end
  8316.                 wait()
  8317.                 rng:Destroy()
  8318.                 end)()
  8319.         for i = 1, 18 do
  8320.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  8321.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  8322.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  8323.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  8324.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  8325.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  8326.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  8327.         if Debounces.on == false then break end
  8328.             wait()
  8329.         end
  8330.         larm.BrickColor = BrickColor.new("Really black")
  8331.         rarm.BrickColor = BrickColor.new("Really black")
  8332.         x:Destroy()
  8333.         x1:Destroy()
  8334.     if Debounces.CanAttack == false then
  8335.         Debounces.CanAttack = true
  8336.         Debounces.on = false
  8337.         Debounces.NoIdl = false
  8338.             end
  8339.         end
  8340.     end
  8341. end)
  8342. ----------------------------------------------------
  8343. mouse.KeyDown:connect(function(key)
  8344.     if key == "y" then
  8345.         if Debounces.CanAttack == true then
  8346.             Debounces.CanAttack = false
  8347.             Debounces.on = true
  8348.             Debounces.NoIdl = true
  8349.                 for i = 1, 15 do
  8350.                     rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  8351.                     larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  8352.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  8353.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  8354.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  8355.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  8356.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8357.                     if Debounces.on == false then break end
  8358.                     wait()
  8359.                 end
  8360.                 x = Instance.new("Sound",char)
  8361.                 x.SoundId = "rbxassetid://228343271"
  8362.                 x.Pitch = 1
  8363.                 x.Volume = .8
  8364.                 wait(.1)
  8365.                 x:Play()
  8366.                 Debounces.on = false
  8367.                 Debounces.Here = false
  8368.                 shot = shot + 1
  8369. local rng = Instance.new("Part", char)
  8370. rng.Anchored = true
  8371. rng.BrickColor = BrickColor.new("Really black")
  8372. rng.CanCollide = false
  8373. rng.FormFactor = 3
  8374. rng.Name = "Ring"
  8375. rng.Size = Vector3.new(1, 1, 1)
  8376. rng.Transparency = 0.35
  8377. rng.TopSurface = 0
  8378. rng.BottomSurface = 0
  8379. rng2 = rng:clone()
  8380. rng3 = rng2:clone()
  8381. rng4 = rng2:clone()
  8382. local rngm = Instance.new("SpecialMesh", rng)
  8383. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  8384. rngm.Scale = Vector3.new(10, 10, 1)
  8385. rngm2 = rngm:clone()
  8386. rngm2.Scale = Vector3.new(5, 5, 1)
  8387. rngm3=rngm2:clone()
  8388. rngm3.Parent = rng3
  8389. rngm3.Scale = Vector3.new(8, 8, 1)
  8390. rngm4 = rngm2:clone()
  8391. rngm4.Parent = rng4
  8392. rngm4.Scale = Vector3.new(6, 6, 1)
  8393. local bem = Instance.new("Part", char)
  8394. bem.Anchored = true
  8395. bem.BrickColor = BrickColor.new("Really black")
  8396. bem.CanCollide = false
  8397. bem.FormFactor = 3
  8398. bem.Name = "Beam" .. shot
  8399. bem.Size = Vector3.new(1, 1, 1)
  8400. bem.Transparency = 0.35
  8401. bem.TopSurface = 0
  8402. bem.BottomSurface = 0
  8403. local bemm = Instance.new("SpecialMesh", bem)
  8404. bemm.MeshType = 4
  8405. bemm.Scale = Vector3.new(1, 4, 4)
  8406. local out = Instance.new("Part", char)
  8407. out.Anchored = true
  8408. out.BrickColor = BrickColor.new("Really black")
  8409. out.CanCollide = false
  8410. out.FormFactor = 3
  8411. out.Name = "Out"
  8412. out.Size = Vector3.new(4, 4, 4)
  8413. out.Transparency = 0.35
  8414. out.TopSurface = 0
  8415. out.BottomSurface = 0
  8416. local outm = Instance.new("SpecialMesh", out)
  8417. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  8418. outm.Scale = Vector3.new(4, 4, 4)
  8419. local bnd = Instance.new("Part", char)
  8420. bnd.Anchored = true
  8421. bnd.BrickColor = BrickColor.new("Really black")
  8422. bnd.CanCollide = false
  8423. bnd.FormFactor = 3
  8424. bnd.Name = "Bend"
  8425. bnd.Size = Vector3.new(1, 1, 1)
  8426. bnd.Transparency = 1
  8427. bnd.TopSurface = 0
  8428. bnd.BottomSurface = 0
  8429. local bndm = Instance.new("SpecialMesh", bnd)
  8430. bndm.MeshType = 3
  8431. bndm.Scale = Vector3.new(8, 8, 8)
  8432. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  8433. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  8434. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  8435. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  8436. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  8437. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  8438. Debounces.Shewt = true
  8439. coroutine.wrap(function()
  8440. for i = 1, 20, 0.2 do
  8441. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  8442. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  8443. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  8444. rng.Transparency = i/20
  8445. rng3.Transparency = 1/16
  8446. rng4.Transparency = i/12
  8447. wait()
  8448. end
  8449. wait()
  8450. rng:Destroy()
  8451. end)()
  8452. if Debounces.Shewt == true then
  8453. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  8454. hit = ht.Parent
  8455. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  8456. if HasntTouched(hit.Name) == true and deb == false then
  8457. deb = true
  8458. coroutine.wrap(function()
  8459. hit:FindFirstChild("Humanoid").PlatformStand = true
  8460. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  8461. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  8462. end)()
  8463. table.insert(Touche, hit.Name)
  8464. deb = false
  8465. end
  8466. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  8467. if HasntTouched(hit.Parent.Name) == true and deb == false then
  8468. deb = true
  8469. coroutine.wrap(function()
  8470. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  8471. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  8472. wait(1)
  8473. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  8474. end)()
  8475. table.insert(Touche, hit.Parent.Name)
  8476. deb = false
  8477. for i, v in pairs(Touche) do
  8478. print(v)
  8479. end
  8480. end
  8481. end
  8482. end)
  8483. end
  8484. for i = 0, 260, 8 do
  8485. bem.Size = Vector3.new(i, 2, 2)
  8486. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  8487. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  8488. bnd.Size = Vector3.new(1,1,1)
  8489. bndm.Scale = Vector3.new(8,8,8)
  8490. if i % 10 == 0 then
  8491. local newRng = rng2:Clone()
  8492. newRng.Parent = char
  8493. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  8494. local newRngm = rngm2:clone()
  8495. newRngm.Parent=newRng
  8496. coroutine.wrap(function()
  8497. for i = 1, 10, 0.2 do
  8498. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  8499. newRng.Transparency = i/10
  8500. wait()
  8501. end
  8502. wait()
  8503. newRng:Destroy()
  8504. end)()
  8505. end
  8506. wait()
  8507. end
  8508. wait()
  8509. Debounces.Shewt = false
  8510. bem:Destroy()
  8511. out:Destroy()
  8512. bnd:Destroy()
  8513. Debounces.Ready = false
  8514. for i, v in pairs(Touche) do
  8515. table.remove(Touche, i)
  8516. end
  8517. wait()
  8518. table.insert(Touche, char.Name)
  8519. Debounces.NoIdl = false
  8520. if Debounces.CanAttack == false then
  8521. Debounces.CanAttack = true
  8522. end
  8523. end
  8524. end
  8525. end)
  8526. ----------------------------------------------------
  8527. sidz = {"231917888", "231917845", "231917806"}
  8528. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  8529. mouse.KeyDown:connect(function(key)
  8530.     if key == "f" then
  8531.     larm.BrickColor = BrickColor.new("Really red")
  8532.     rarm.BrickColor = BrickColor.new("Really red")
  8533.         if Debounces.CanAttack == true then
  8534.             Debounces.CanAttack = false
  8535.             Debounces.on = true
  8536.             Debounces.NoIdl = true
  8537.                 for i = 1, 10 do
  8538.                     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.4)
  8539.                     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.4)
  8540.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  8541.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  8542.                     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)
  8543.                     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)
  8544.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  8545.                     if Debounces.on == false then break end
  8546.                     wait()
  8547.                 end
  8548.                 z = Instance.new("Sound",char)
  8549.                 z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  8550.                 z.Pitch = ptz[math.random(1,#ptz)]
  8551.                 z.Volume = 1
  8552.                 z1 = Instance.new("Sound",char)
  8553.                 z1.SoundId = z.SoundId
  8554.                 z1.Pitch = z.Pitch
  8555.                 z1.Volume = 1
  8556.                 wait(1)
  8557.                 z:Play()
  8558.                 z1:Play()
  8559.                 Stomp()
  8560.                 for i = 1, 20 do
  8561.                     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.6)
  8562.                     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.6)
  8563.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  8564.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  8565.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  8566.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  8567.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  8568.                     if Debounces.on == false then break end
  8569.                     wait()
  8570.                 end
  8571.         if Debounces.CanAttack == false then
  8572.             Debounces.CanAttack = true
  8573.             Debounces.on = false
  8574.             Debounces.NoIdl = false
  8575.             larm.BrickColor = BrickColor.new("Really black")
  8576.             rarm.BrickColor = BrickColor.new("Really black")
  8577.             end
  8578.         end
  8579.     end
  8580. end)    
  8581. ----------------------------------------------------
  8582. mouse.KeyDown:connect(function(key)
  8583.     if key == "g" then
  8584.     larm.BrickColor = BrickColor.new("Really red")
  8585.     rarm.BrickColor = BrickColor.new("Really red")
  8586.         if Debounces.CanAttack == true then
  8587.         Debounces.CanAttack = false
  8588.         Debounces.on = true
  8589.         Debounces.NoIdl = true
  8590.         chrg = lleg.Touched:connect(function(ht)
  8591.         hit = ht.Parent
  8592.             if ht and hit:IsA("Model") then
  8593.                     if hit:FindFirstChild("Humanoid") then
  8594.                         if hit.Name ~= p.Name then
  8595.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  8596.                                     Debounces.Slashed = true]]--
  8597.                                     hit:FindFirstChild("Humanoid"):TakeDamage(2)
  8598.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8599.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  8600.                                     --Debounces.Slashed = false
  8601.                             --end
  8602.                         end
  8603.                     end
  8604.             elseif ht and hit:IsA("Hat") then
  8605.                 if hit.Parent.Name ~= p.Name then
  8606.                     if hit.Parent:FindFirstChild("Humanoid") then
  8607.                            --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  8608.                                     Debounces.Slashed = true]]--
  8609.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  8610.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8611.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  8612.                         --Debounces.Slashed = false
  8613.                     end
  8614.                 end
  8615.             end    
  8616.         end)
  8617.         for i = 1, 14 do
  8618.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  8619.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  8620.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  8621.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  8622.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  8623.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  8624.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  8625.             if Debounces.on == false then break end
  8626.             wait()
  8627.         end
  8628.         charge()
  8629.         z = Instance.new("Sound",char)
  8630.         z.SoundId = "rbxassetid://200632875"
  8631.         z.Volume = 1
  8632.         z.Pitch = .8
  8633.         z1 = Instance.new("Sound",char)
  8634.         z1.SoundId = "rbxassetid://200632875"
  8635.         z1.Volume = 1
  8636.         z1.Pitch = .9
  8637.         z:Play()
  8638.         z1:Play()
  8639.         wait(1)
  8640.         z:Destroy()
  8641.         z1:Destroy()
  8642.         chrg:disconnect()
  8643.         if Debounces.CanAttack == false then
  8644.             Debounces.CanAttack = true
  8645.             Debounces.on = false
  8646.             Debounces.NoIdl = false
  8647.             larm.BrickColor = BrickColor.new("Really black")
  8648.             rarm.BrickColor = BrickColor.new("Really black")
  8649.             end
  8650.         end
  8651.     end
  8652. end)
  8653. ----------------------------------------------------
  8654. pt = {0.7, 0.8, 0.9}
  8655. mouse.KeyDown:connect(function(key)
  8656.     if key == "h" then
  8657.         if Debounces.CanJoke == true then
  8658.             Debounces.CanJoke = false
  8659.             u = Instance.new("Sound")
  8660.             u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  8661.             u.Parent = char
  8662.             u.Looped = false
  8663.             u.Pitch = pt[math.random(1,#pt)]
  8664.             u.Volume = 1
  8665.             u2 = Instance.new("Sound")
  8666.             u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  8667.             u2.Parent = char
  8668.             u2.Looped = false
  8669.             u2.Pitch = u.Pitch
  8670.             u2.Volume = 1
  8671.             wait(.01)
  8672.             u:Play()
  8673.             u2:Play()
  8674.             wait(6)
  8675.             u:Destroy()
  8676.             u2:Destroy()
  8677.             if Debounces.CanJoke == false then
  8678.                 Debounces.CanJoke = true
  8679.             end
  8680.         end
  8681.     end
  8682. end)
  8683. ----------------------------------------------------
  8684. mouse.KeyDown:connect(function(key)
  8685.     if key == "j" then
  8686.             if Debounces.CanJoke == true then
  8687.                 Debounces.CanJoke = false
  8688.                 z = Instance.new("Sound",char)
  8689.                 z.SoundId = "rbxassetid://135017755"
  8690.                 z.Pitch = .76
  8691.                 z.Volume = 1
  8692.                 wait()
  8693.                 z:Play()
  8694.                 wait(6)
  8695.                 z:Destroy()
  8696.             if Debounces.CanJoke == false then
  8697.                 Debounces.CanJoke = true
  8698.             end
  8699.         end
  8700.     end
  8701. end)
  8702. ----------------------------------------------------
  8703. mouse.KeyDown:connect(function(key)
  8704.     if key == "k" then
  8705.             if Debounces.CanJoke == true then
  8706.                 Debounces.CanJoke = false
  8707.                 z = Instance.new("Sound",char)
  8708.                 z.SoundId = "rbxassetid://135017578"
  8709.                 z.Pitch = .76
  8710.                 z.Volume = 1
  8711.                 wait()
  8712.                 z:Play()
  8713.                 wait(4)
  8714.                 z:Destroy()
  8715.             if Debounces.CanJoke == false then
  8716.                 Debounces.CanJoke = true
  8717.             end
  8718.         end
  8719.     end
  8720. end)
  8721. ----------------------------------------------------
  8722. mouse.KeyDown:connect(function(key)
  8723.     if key == "x" then
  8724.         if Debounces.CanAttack == true then
  8725.             Debounces.CanAttack = false
  8726.             Debounces.NoIdl = true
  8727.             Debounces.on = true
  8728.             Debounces.ks = true
  8729.         for i = 1, 10 do
  8730.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  8731.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  8732.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  8733.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  8734.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  8735.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  8736.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8737.             if Debounces.on == false then break end
  8738.             wait()
  8739.         end
  8740.         z = Instance.new("Sound",hed)
  8741.         z.SoundId = "rbxassetid://169445092"
  8742.         z.Volume = 1
  8743.         wait(0.1)
  8744.         z:Play()
  8745.         kik = rleg.Touched:connect(function(ht)
  8746.         hit = ht.Parent
  8747.             if ht and hit:IsA("Model") then
  8748.                     if hit:FindFirstChild("Humanoid") then
  8749.                         if hit.Name ~= p.Name then
  8750.                             --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  8751.                                     Debounces.Slashed = true]]--
  8752.                                     if Debounces.ks==true then
  8753.                                     z = Instance.new("Sound",hed)
  8754.                                     z.SoundId = "rbxassetid://169380525"
  8755.                                     z.Volume = 1
  8756.                                     z:Play()
  8757.                                     Debounces.ks=false
  8758.                                     end
  8759.                                     hit:FindFirstChild("Humanoid"):TakeDamage(2)
  8760.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8761.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  8762.                             --Debounces.Slashed = false
  8763.                         --end
  8764.                     end
  8765.                 end
  8766.             elseif ht and hit:IsA("Hat") then
  8767.                 if hit.Parent.Name ~= p.Name then
  8768.                     if hit.Parent:FindFirstChild("Humanoid") then
  8769.                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  8770.                                     Debounces.Slashed = true]]--
  8771.                                     hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  8772.                                     hit:FindFirstChild("Humanoid").PlatformStand = true
  8773.                                     hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  8774.                             --Debounces.Slashed = false
  8775.                         --end
  8776.                     end
  8777.                 end
  8778.             end    
  8779.         end)
  8780.         for i = 1, 8 do
  8781.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  8782.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  8783.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  8784.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  8785.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  8786.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  8787.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8788.             if Debounces.on == false then break end
  8789.             wait()
  8790.         end
  8791.         kik:disconnect()
  8792.         if Debounces.CanAttack == false then
  8793.             Debounces.CanAttack = true
  8794.             Debounces.on = false
  8795.             Debounces.NoIdl = false
  8796.             end
  8797.         end
  8798.     end
  8799. end)
  8800. ----------------------------------------------------
  8801. mouse.KeyDown:connect(function(key)
  8802.     if key == "c" then
  8803.         if Debounces.CanAttack == true then
  8804.             Debounces.CanAttack = false
  8805.             Debounces.NoIdl = true
  8806.             Debounces.on = true
  8807.             SIDZ = {"231917744", "231917742"}
  8808.             PTZ = {0.7, 0.8, 0.9, 1}
  8809.                 for i = 1, 20 do
  8810.                     wait()
  8811.                         for i,v in pairs(char.Absolution:children()) do
  8812.                     if v:IsA("Part") or v:IsA("WedgePart") then
  8813.                         v.Transparency = v.Transparency + 0.05
  8814.                         end
  8815.                     end
  8816.                 end
  8817.                 function FindNearestTorso(Position,Distance,SinglePlayer)
  8818.                     if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  8819.                         local List = {}
  8820.                         for i,v in pairs(workspace:GetChildren())do
  8821.                             if v:IsA("Model")then
  8822.                                 if v:findFirstChild("Torso")then
  8823.                                     if v ~= char then
  8824.                                         if(v.Torso.Position -Position).magnitude <= Distance then
  8825.                                             table.insert(List,v)
  8826.                                         end
  8827.                                     end
  8828.                                 end
  8829.                             end
  8830.                         end
  8831.                     return List
  8832.                 end
  8833.                 GroundPound()
  8834.                 for i = 1, 5 do
  8835.                     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)
  8836.                     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)
  8837.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  8838.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  8839.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  8840.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  8841.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8842.                     if Debounces.on == false then break end
  8843.                     wait()
  8844.                 end
  8845.                 GroundPound()
  8846.                 for i = 1, 5 do
  8847.                     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)
  8848.                     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)
  8849.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  8850.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  8851.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  8852.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  8853.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8854.                     if Debounces.on == false then break end
  8855.                     wait()
  8856.                 end
  8857.                 GroundPound()
  8858.                 for i = 1, 5 do
  8859.                     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)
  8860.                     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)
  8861.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  8862.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  8863.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  8864.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  8865.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8866.                     if Debounces.on == false then break end
  8867.                     wait()
  8868.                 end
  8869.                 GroundPound()
  8870.                 for i = 1, 5 do
  8871.                     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)
  8872.                     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)
  8873.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  8874.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  8875.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  8876.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  8877.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8878.                     if Debounces.on == false then break end
  8879.                     wait()
  8880.                 end
  8881.                 GroundPound()
  8882.                 for i = 1, 5 do
  8883.                     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)
  8884.                     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)
  8885.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  8886.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  8887.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  8888.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  8889.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8890.                     if Debounces.on == false then break end
  8891.                     wait()
  8892.                 end
  8893.                 GroundPound()
  8894.                 for i = 1, 5 do
  8895.                     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)
  8896.                     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)
  8897.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  8898.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  8899.                     lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  8900.                     rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  8901.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  8902.                     if Debounces.on == false then break end
  8903.                     wait()
  8904.                 end
  8905.                 for i = 1, 18 do
  8906.                     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)
  8907.                     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)
  8908.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  8909.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  8910.                     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)
  8911.                     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)
  8912.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  8913.                     if Debounces.on == false then break end
  8914.                     wait()
  8915.                 end
  8916.                 for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  8917.                     if v:FindFirstChild('Humanoid') then
  8918.                         v.Humanoid:TakeDamage(math.random(20,60))
  8919.                         v.Humanoid.PlatformStand = true
  8920.                         v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  8921.                     end
  8922.                 end
  8923.                 x = Instance.new("Sound",char)
  8924.                 x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  8925.                 x.Pitch = PTZ[math.random(1,#PTZ)]
  8926.                 x.Volume = 1
  8927.                 wait(0.1)
  8928.                 x:Play()
  8929.                 Crater(hed,20)
  8930.                 for i = 1, 14 do
  8931.                     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)
  8932.                     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)
  8933.                     hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  8934.                     torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  8935.                     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)
  8936.                     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)
  8937.                     cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  8938.                     if Debounces.on == false then break end
  8939.                     wait()
  8940.                 end
  8941.             if Debounces.CanAttack == false then
  8942.                 Debounces.CanAttack = true
  8943.                 Debounces.on = false
  8944.                 Debounces.NoIdl = false
  8945.                 for i = 1, 20 do
  8946.                     wait()
  8947.                         for i,v in pairs(char.Absolution:children()) do
  8948.                     if v:IsA("Part") or v:IsA("WedgePart") then
  8949.                         v.Transparency = v.Transparency - 0.05
  8950.                         end
  8951.                     end
  8952.                 end
  8953.             end
  8954.         end
  8955.     end
  8956. end)
  8957. ----------------------------------------------------176349813
  8958. mouse.KeyDown:connect(function(key)
  8959.     if key == "b" then
  8960.         hum.WalkSpeed = 0.01
  8961.         if Debounces.CanAttack == true then
  8962.             Debounces.CanAttack = false
  8963.             Debounces.NoIdl = true
  8964.             Debounces.on = true
  8965.             for i = 1,20 do
  8966.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  8967.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  8968.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  8969.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  8970.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  8971.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  8972.             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)
  8973.             if Debounces.on == false then break end
  8974.             wait()
  8975.             end
  8976.         wait(1)
  8977.         v = Instance.new("Sound")
  8978.         v.SoundId = "rbxassetid://181384451"
  8979.         v.Parent = char
  8980.         v.Looped = false
  8981.         v.Pitch = 1.04
  8982.         v.Volume = 1
  8983.         wait(.01)
  8984.         v:Play()
  8985.        
  8986.         if Daytime == true then
  8987.             Daytime = false
  8988.             l.TimeOfDay = 24
  8989.         else
  8990.             Daytime = true
  8991.             l.TimeOfDay = 12
  8992.             l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  8993.         end
  8994.        
  8995.             local Shockwave = function()
  8996.                 local rng1 = Instance.new("Part", char)
  8997.                 rng1.Anchored = true
  8998.                 rng1.BrickColor = BrickColor.new("Really black")
  8999.                 rng1.CanCollide = false
  9000.                 rng1.FormFactor = 3
  9001.                 rng1.Name = "Ring"
  9002.                 rng1.Size = Vector3.new(1, 1, 1)
  9003.                 rng1.Transparency = 0.35
  9004.                 rng1.TopSurface = 0
  9005.                 rng1.BottomSurface = 0
  9006.                 local rngm1 = Instance.new("SpecialMesh", rng)
  9007.                 rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  9008.                 rngm1.Scale = Vector3.new(10, 10, 1)
  9009.                 rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  9010.                 local Wave = Instance.new("Part", game.Workspace--[[?]])
  9011.                 Wave.Name = "Shockwave"
  9012.                 Wave.BrickColor = BrickColor.new("Really black")
  9013.                 Wave.Size = Vector3.new(1, 1, 1)
  9014.                 Wave.Shape = "Ball"
  9015.                 Wave.CanCollide = false
  9016.                 Wave.Anchored = true
  9017.                 Wave.TopSurface = 0
  9018.                 Wave.BottomSurface = 0
  9019.                 Wave.Touched:connect(function(hit)
  9020.                     if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  9021.                         local Occlude = true
  9022.                         local NotOccludes = {
  9023.                             char.Name;
  9024.                             "Wings";
  9025.                             "Scythe";
  9026.                             "Thingy";
  9027.                             "Thingy2"; -- put all of the names in a table pls
  9028.                         }
  9029.                         for i,v in pairs(NotOccludes) do
  9030.                             if hit.Parent.Name == v then
  9031.                                 Occlude = false
  9032.                             end
  9033.                         end
  9034.                         --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
  9035.                         if Occlude then
  9036.                             hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  9037.                             hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  9038.                         end
  9039.                     end
  9040.                 end)
  9041.                
  9042.                 Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  9043.                
  9044.                 coroutine.wrap(function()
  9045.                     for i = 1, 20, 0.2 do
  9046.                         rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  9047.                         rng1.Transparency = i/20
  9048.                     wait()
  9049.                     end
  9050.                     wait()
  9051.                     rng1:Destroy()
  9052.                 end)()
  9053.                
  9054.                 Delay(0, function()
  9055.  
  9056.                     if Daytime == false then
  9057.                        for i = 1, 50, 1 do
  9058.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  9059.                             Wave.CFrame = char.Torso.CFrame
  9060.                             local t = i / 50
  9061.                             Wave.Transparency = t
  9062.                             wait()
  9063.                         end
  9064.                     else
  9065.                         for i = 1, 50, 1 do
  9066.                             Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  9067.                             Wave.CFrame = char.Torso.CFrame
  9068.                             local t = i / 50
  9069.                             Wave.Transparency = t
  9070.                             wait()
  9071.                         end
  9072.                     end
  9073.                     Wave:Destroy()
  9074.                 end)
  9075.                 Delay(0, function()
  9076.                     while wait() do
  9077.                         if Wave ~= nil then
  9078.                             Wave.CFrame = char.Torso.CFrame
  9079.                         else
  9080.                             break
  9081.                         end
  9082.                     end
  9083.                 end)
  9084.             end
  9085.         Shockwave()
  9086.         for i = 1, 15 do
  9087.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  9088.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  9089.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  9090.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  9091.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  9092.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9093.             if Debounces.on == false then break end
  9094.             wait()
  9095.         end
  9096.         for i = 1, 15 do
  9097.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  9098.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  9099.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  9100.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  9101.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9102.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  9103.             if Debounces.on == false then break end
  9104.             wait()
  9105.         end
  9106.         for i = 1, 15 do
  9107.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  9108.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  9109.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  9110.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  9111.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  9112.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9113.             if Debounces.on == false then break end
  9114.             wait()
  9115.         end
  9116.         for i = 1, 15 do
  9117.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  9118.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  9119.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  9120.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  9121.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9122.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  9123.             if Debounces.on == false then break end
  9124.             wait()
  9125.         end
  9126.         for i = 1, 15 do
  9127.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-130)), 0.2)
  9128.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(70)), 0.2)
  9129.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  9130.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20),     math.rad(0)), 0.2)
  9131.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  9132.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9133.             if Debounces.on == false then break end
  9134.             wait()
  9135.         end
  9136.         for i = 1, 15 do
  9137.             larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(-70)), 0.2)
  9138.             rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0),     math.rad(130)), 0.2)
  9139.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  9140.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20),     math.rad(0)), 0.2)
  9141.             lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9142.             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  9143.             if Debounces.on == false then break end
  9144.             wait()
  9145.         end
  9146.         wait(1.4)
  9147.         Debounces.NoIdl = false
  9148.         hum.WalkSpeed = 30
  9149.         Debounces.on = false
  9150.         wait()
  9151.         if Debounces.CanAttack == false then
  9152.             Debounces.CanAttack = true
  9153.             v:Destroy()
  9154.             end
  9155.         end
  9156.     end
  9157. end)
  9158. ----------------------------------------------------
  9159. mouse.KeyDown:connect(function(key)
  9160.     if key == "m" then
  9161. hum.WalkSpeed = 30
  9162.         if Debounces.CanAttack == true then
  9163.         Debounces.CanAttack = false
  9164.         Debounces.on = true
  9165.         Debounces.NoIdl = true
  9166.             --[[x = Instance.new("Sound",char)
  9167.             x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  9168.             x.Looped = false
  9169.             x.Pitch = 1.1
  9170.             x.Volume = 1
  9171.             x:Play()
  9172.             x2 = Instance.new("Sound",char)
  9173.             x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  9174.             x2.Looped = false
  9175.             x2.Pitch = .7
  9176.             x2.Volume = 1
  9177.             wait(.1)
  9178.             x:Play()
  9179.             x2:Play()
  9180.         for i = 1, 20 do
  9181.             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)
  9182.             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)
  9183.             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)
  9184.             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)
  9185.             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)
  9186.             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)
  9187.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  9188.             if Debounces.on == false then break end
  9189.                 wait()
  9190.             x:Destroy()
  9191.             x2:Destroy()
  9192.             end
  9193.             wait(1)]]--
  9194.         local rng = Instance.new("Part", char)
  9195.         rng.Anchored = true
  9196.         rng.BrickColor = BrickColor.new("Really black")
  9197.         rng.CanCollide = false
  9198.         rng.FormFactor = 3
  9199.         rng.Name = "Ring"
  9200.         rng.Size = Vector3.new(1, 1, 1)
  9201.         rng.Transparency = 0.35
  9202.         rng.TopSurface = 0
  9203.         rng.BottomSurface = 0
  9204.         rng.Position = torso.Position - Vector3.new(0,2,0)
  9205.         rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  9206.         local rngm = Instance.new("SpecialMesh", rng)
  9207.         rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  9208.         rngm.Scale = Vector3.new(1, 1, 2)
  9209.             x = Instance.new("Sound",char)
  9210.             x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  9211.             x.Looped = false
  9212.             x.Pitch = .7
  9213.             x.Volume = 1
  9214.             x:Play()
  9215.                 coroutine.wrap(function()
  9216.                 for i = 1, 60, 2 do
  9217.                 rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  9218.                 rng.Transparency = i/60
  9219.                 wait()
  9220.                 end
  9221.                 wait()
  9222.                 rng:Destroy()
  9223.                 end)()
  9224.             hum.WalkSpeed = 50
  9225.         BV = Instance.new("BodyVelocity", torso)
  9226.         BV.maxForce = Vector3.new(0,200000,0)
  9227.         BV.P = 100000
  9228.         BV.velocity = Vector3.new(0,800,0)
  9229.     for i = 1, 20 do
  9230.         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)
  9231.         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)
  9232.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
  9233.         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)
  9234.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  9235.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  9236.         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)
  9237.         if Debounces.on == false then break end
  9238.         wait()
  9239.     end
  9240. x:Destroy()
  9241. BV:Destroy()
  9242.     --[[for i = 1, 30 do
  9243.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0),     math.rad(0)),0.3)
  9244.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad    (0), math.rad(0)), 0.3)
  9245.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(-10)), 0.3)
  9246.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(10)), 0.3)
  9247.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  9248.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
  9249.         if Debounces.on == false then break end
  9250.         wait()
  9251.     end]]--
  9252. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  9253.     for i = 1, 30 do
  9254.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  9255.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9256.         larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  9257.         rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  9258.         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)
  9259.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  9260.         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)
  9261.         if Debounces.on == false then break end
  9262.         wait()
  9263.     end
  9264. end
  9265. Debounces.on = false
  9266. Debounces.NoIdl = false
  9267. local ry,ht,ps=nil,nil,nil
  9268. while ht==nil do
  9269.     ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  9270.     wait()
  9271. end
  9272. z = Instance.new("Sound",char)
  9273. z.SoundId = "rbxassetid://142070127"
  9274. z.Volume = 1
  9275. wait(.1)
  9276. z:Play()
  9277. Landing()
  9278. hum.WalkSpeed = 30
  9279. if Debounces.CanAttack == false then
  9280. Debounces.CanAttack = true
  9281. end
  9282. end
  9283. end
  9284. end)
  9285. ----------------------------------------------------
  9286. Grab = false
  9287. mouse.KeyDown:connect(function(key)
  9288.     if key == "z" then
  9289.     larm.BrickColor = BrickColor.new("Really")
  9290.     rarm.BrickColor = BrickColor.new("Really red")
  9291.         Debounces.on = true
  9292.         Debounces.NoIdl = true
  9293.         if Grab == false then
  9294.         gp = nil
  9295.         con1=larm.Touched:connect(function(hit) -- this is grab
  9296.             ht = hit.Parent
  9297.             hum1=ht:FindFirstChild('Humanoid')
  9298.             if hum1 ~= nil then
  9299.                 hum1.PlatformStand=true
  9300.                 gp = ht
  9301.                 Grab = true
  9302.                 asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  9303.                 asd.Parent = larm
  9304.                 asd.Name = "asd"
  9305.                 asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  9306.             elseif hum1 == nil then
  9307.                 con1:disconnect()
  9308.                 wait() return
  9309.             end
  9310.         end)
  9311.         for i = 1, 18 do
  9312.             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)
  9313.             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)
  9314.             hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  9315.             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  9316.             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)
  9317.             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)
  9318.             cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  9319.             if Debounces.on == false then break end
  9320.             wait()
  9321.         end
  9322.     con1:disconnect()
  9323.     Debounces.on = false
  9324.     Debounces.NoIdl = false
  9325.     elseif Grab == true then
  9326.         Grab = false
  9327.     for i = 1, 20 do
  9328.         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)
  9329.         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)
  9330.         hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  9331.         torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  9332.         lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  9333.         rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  9334.         cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  9335.         if Debounces.on == false then end
  9336.         wait()
  9337.     end
  9338.         if gp ~= nil then
  9339.         for i,v in pairs(larm:GetChildren()) do
  9340.             if v.Name == "asd" and v:IsA("Weld") then
  9341.                 v:Remove()
  9342.             end
  9343.         end
  9344.         bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  9345.         bv.maxForce = Vector3.new(400000, 400000, 400000)
  9346.         bv.P = 125000
  9347.         bv.velocity = char.Head.CFrame.lookVector * 200
  9348.         for i = 1, 12 do
  9349.             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)
  9350.             if Debounces.on == false then end
  9351.             wait()
  9352.         end
  9353.         ht=nil
  9354.         Spawn(function()
  9355.             wait(0.5)
  9356.             bv:Destroy()
  9357.         end)
  9358.         Debounces.on = false
  9359.         Debounces.NoIdl = false
  9360.         elseif ht == nil then wait()
  9361.         Grab = false
  9362.         Debounces.on = false
  9363.         Debounces.NoIdl = false
  9364.             end
  9365.         end
  9366.     end
  9367. end)
  9368. ----------------------------------------------------
  9369. mouse.KeyDown:connect(function(key)
  9370.     if string.byte(key) == 52 then
  9371.         char.Humanoid.WalkSpeed = 30
  9372.     end
  9373. end)
  9374. mouse.KeyUp:connect(function(key)
  9375.     if string.byte(key) == 52 then
  9376.         char.Humanoid.WalkSpeed = 30
  9377.     end
  9378. end)
  9379. ----------------------------------------------------
  9380. local animpose = "Idle"
  9381. local lastanimpose = "Idle"
  9382. local sine = 0
  9383. local change = 1
  9384. local val = 0
  9385. local ffing = false
  9386. ----------------------------------------------------
  9387. --[[x = Instance.new("Sound", char)
  9388. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  9389. x.Looped = true
  9390. x.Volume = 1
  9391. x.Pitch = 1
  9392. local footsteps = false]]--
  9393. -------------------------------
  9394. game:GetService("RunService").RenderStepped:connect(function()
  9395. --[[if char.Humanoid.Jump == true then
  9396. jump = true
  9397. else
  9398. jump = false
  9399. end]]
  9400. char.Humanoid.FreeFalling:connect(function(f)
  9401. if f then
  9402. ffing = true
  9403. else
  9404. ffing = false
  9405. end
  9406. end)
  9407. sine = sine + change
  9408. if jumpn == true then
  9409. animpose = "Jumping"
  9410. elseif ffing == true then
  9411. animpose = "Freefalling"
  9412. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  9413. animpose = "Idle"
  9414. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  9415. animpose = "Walking"
  9416. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  9417. animpose = "Running"
  9418. end
  9419. if animpose ~= lastanimpose then
  9420. sine = 0
  9421. if Debounces.NoIdl == false then
  9422. if animpose == "Idle" then
  9423. for i = 1, 2 do
  9424. 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)
  9425. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  9426. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  9427. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  9428. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  9429. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  9430. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  9431. end
  9432. elseif animpose == "Walking" then
  9433. for i = 1, 2 do
  9434. 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)
  9435. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  9436. 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)
  9437. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  9438. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  9439. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  9440. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  9441. end
  9442. elseif animpose == "Running" then
  9443. for i = 1, 2 do
  9444. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  9445. 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)
  9446. 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)
  9447. 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)
  9448. 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)
  9449. 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)
  9450. 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)
  9451. end
  9452. wait()
  9453. end
  9454. else
  9455. end
  9456. end
  9457. lastanimpose = animpose
  9458. if Debounces.NoIdl == false then
  9459. if animpose == "Idle" then
  9460. if stanceToggle == "Normal" then
  9461. change = 0.5
  9462. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  9463. 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)
  9464. 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)
  9465. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  9466. 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)
  9467. 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)
  9468. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  9469. elseif stanceToggle == "Sitting" then
  9470. 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)
  9471. 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)
  9472. 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)
  9473. 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)
  9474. 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)
  9475. 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)
  9476. 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)
  9477. end
  9478. elseif animpose == "Walking" then
  9479. if stanceToggle == "Normal" then
  9480. change = 1
  9481. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  9482. 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.2)
  9483. 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)
  9484. 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)
  9485. 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), .4)
  9486. 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), .4)
  9487. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  9488. end
  9489. elseif animpose == "Running" then
  9490. change = 1
  9491. 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)
  9492. 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)
  9493. 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)
  9494. 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)
  9495. 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)
  9496. 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)
  9497. 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)
  9498. end
  9499. end
  9500. --[[if animpose == "Walking" then
  9501.     if footsteps == false then
  9502.         x:Play()
  9503.         footsteps = true
  9504.     end
  9505.     x.Pitch = 1.1
  9506. elseif animpose == "Idle" then
  9507.     x:Stop()
  9508.     footsteps = false
  9509. elseif animpose == "Running" then
  9510.     x.Pitch = 1.2
  9511.     if footsteps == false then
  9512.         x:Play()
  9513.         footsteps = true
  9514.     end
  9515. end]]--
  9516. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement