Advertisement
skylershults

MOON MAN TITAN (LEAKED)

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