Advertisement
QendrimGraphics

Titan

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