Advertisement
AgentVK

Untitled

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