Advertisement
ArtiusFox

[Roblox Script] Axe Titan (My Edit)

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