ericdesouza

Untitled

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