Advertisement
lolpatty123

Untitled

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