Expheus

Untitled

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