Advertisement
reizayah

Untitled

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