Advertisement
kjlaza

idk titan

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