Advertisement
Guest User

Untitled

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