I_M_Epic

A giant

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