Advertisement
IPakee

THE DEMON

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