Advertisement
xDavid673x

Fe ZaMa

Aug 11th, 2022
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 80.25 KB | None | 0 0
  1. -----------//GATTAI ZAMASU\\-----------
  2. --[[Movelist
  3. E = Blades of Judgement
  4. R = Holy light
  5. T = Taunt
  6. Y = Lightning of Absolution
  7. U = Divine wrath/Holy wrath
  8. ---------]]
  9.  
  10. Player=game:GetService("Players").LocalPlayer
  11. Character=Player.Character
  12. Character.Humanoid.Name = "gattaizamasu"
  13. hum = Character.gattaizamasu
  14. LeftArm=Character["Left Arm"]
  15. LeftLeg=Character["Left Leg"]
  16. RightArm=Character["Right Arm"]
  17. RightLeg=Character["Right Leg"]
  18. Root=Character["HumanoidRootPart"]
  19. Head=Character["Head"]
  20. Torso=Character["Torso"]
  21. Neck=Torso["Neck"]
  22. attacking = false
  23. laughing = false
  24. id = 2623171639
  25. taim = nil
  26. change = 0
  27. ws = 90
  28. hpheight = 5
  29. dedlaff = false
  30. appi = false
  31. tauntdebounce = false
  32. allowlev = true
  33. position = nil
  34. MseGuide = true
  35. running = false
  36. levitate = false
  37. settime = 0
  38. sine = 0
  39. t = 0
  40. dgs = 75
  41. mouse = Player:GetMouse()
  42. RunSrv = game:GetService("RunService")
  43. RenderStepped = game:GetService("RunService").RenderStepped
  44. removeuseless = game:GetService("Debris")
  45. local soundtable = {2638719005,2638719700,2638743317,2638744272,2638751297,2638751506,2638769242,2638769810,2638770257,2638777924}
  46. local holywrathcolors = {"Really red","Bright orange"}
  47. rdnm = #soundtable
  48. hwc = #holywrathcolors
  49.  
  50. screenGui = Instance.new("ScreenGui")
  51. screenGui.Parent = script.Parent
  52.  
  53. local HEADLERP = Instance.new("ManualWeld")
  54. HEADLERP.Parent = Head
  55. HEADLERP.Part0 = Head
  56. HEADLERP.Part1 = Head
  57. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  58.  
  59. local TORSOLERP = Instance.new("ManualWeld")
  60. TORSOLERP.Parent = Root
  61. TORSOLERP.Part0 = Torso
  62. TORSOLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  63.  
  64. local ROOTLERP = Instance.new("ManualWeld")
  65. ROOTLERP.Parent = Root
  66. ROOTLERP.Part0 = Root
  67. ROOTLERP.Part1 = Torso
  68. ROOTLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  69.  
  70. local RIGHTARMLERP = Instance.new("ManualWeld")
  71. RIGHTARMLERP.Parent = RightArm
  72. RIGHTARMLERP.Part0 = RightArm
  73. RIGHTARMLERP.Part1 = Torso
  74. RIGHTARMLERP.C0 = CFrame.new(-1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  75.  
  76. local LEFTARMLERP = Instance.new("ManualWeld")
  77. LEFTARMLERP.Parent = LeftArm
  78. LEFTARMLERP.Part0 = LeftArm
  79. LEFTARMLERP.Part1 = Torso
  80. LEFTARMLERP.C0 = CFrame.new(1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  81.  
  82. local RIGHTLEGLERP = Instance.new("ManualWeld")
  83. RIGHTLEGLERP.Parent = RightLeg
  84. RIGHTLEGLERP.Part0 = RightLeg
  85. RIGHTLEGLERP.Part1 = Torso
  86. RIGHTLEGLERP.C0 = CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  87.  
  88. local LEFTLEGLERP = Instance.new("ManualWeld")
  89. LEFTLEGLERP.Parent = LeftLeg
  90. LEFTLEGLERP.Part0 = LeftLeg
  91. LEFTLEGLERP.Part1 = Torso
  92. LEFTLEGLERP.C0 = CFrame.new(0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  93.  
  94. local function weldBetween(a, b)
  95. local weld = Instance.new("ManualWeld", a)
  96. weld.Part0 = a
  97. weld.Part1 = b
  98. weld.C0 = a.CFrame:inverse() * b.CFrame
  99. return weld
  100. end
  101.  
  102. function MAKETRAIL(PARENT,POSITION1,POSITION2,LIFETIME,COLOR)
  103. A = Instance.new("Attachment", PARENT)
  104. A.Position = POSITION1
  105. A.Name = "A"
  106. B = Instance.new("Attachment", PARENT)
  107. B.Position = POSITION2
  108. B.Name = "B"
  109. tr1 = Instance.new("Trail", PARENT)
  110. tr1.Attachment0 = A
  111. tr1.Attachment1 = B
  112. tr1.Enabled = true
  113. tr1.Lifetime = LIFETIME
  114. tr1.TextureMode = "Static"
  115. tr1.LightInfluence = 0
  116. tr1.Color = COLOR
  117. tr1.Transparency = NumberSequence.new(0, 1)
  118. end
  119.  
  120. coroutine.wrap(function()
  121. while wait() do
  122. hum.WalkSpeed = ws
  123. Head.face.Texture = "rbxassetid://1322462890"
  124. LeftArm.BrickColor = BrickColor.new("Olivine")
  125. RightArm.BrickColor = BrickColor.new("Olivine")
  126. Head.BrickColor = BrickColor.new("Olivine")
  127. end
  128. end)()
  129. godmode = coroutine.wrap(function()
  130. for i,v in pairs(Character:GetChildren()) do
  131. if v:IsA("BasePart") and v ~= Root then
  132. v.Anchored = false
  133. end
  134. end
  135. while true do
  136. hum.MaxHealth = math.huge
  137. wait(0.0000001)
  138. hum.Health = math.huge
  139. wait()
  140. end
  141. end)
  142. godmode()
  143. ff = Instance.new("ForceField", Character)
  144. ff.Visible = false
  145.  
  146. coroutine.wrap(function()
  147. for i,v in pairs(Character:GetChildren()) do
  148. if v.Name == "Animate" then v:Remove()
  149. end
  150. end
  151. end)()
  152.  
  153. for _,n in pairs(Character:GetChildren()) do
  154. if n:IsA("Accessory") then n:Remove() end
  155. end
  156. for _,x in pairs(Character:GetChildren()) do
  157. if x:IsA("Decal") then x:Remove() end
  158. end
  159.  
  160. hair = Instance.new("Part",Character)
  161. hair.Size = Vector3.new(2,2,2)
  162. hair.CFrame = hair.CFrame:inverse() * Head.CFrame * CFrame.new(0,-.85,0)
  163. hair.Anchored = false
  164. hair.Name = "hair"
  165. hair.BrickColor = BrickColor.new("Lily white")
  166. hairmesh = Instance.new("SpecialMesh", hair)
  167. hairmesh.MeshType = "FileMesh"
  168. hairmesh.Scale = Vector3.new(5.839, 5.737, 5.947)
  169. hairmesh.MeshId = "rbxassetid://568050133"
  170. hairweld = weldBetween(hair,Head)
  171. hairweld.C0 = hair.CFrame:inverse() * Head.CFrame * CFrame.new(.055,-.9,-.4)
  172.  
  173. ears = Instance.new("Part",Character)
  174. ears.Size = Vector3.new(2,2,2)
  175. ears.CFrame = ears.CFrame:inverse() * Head.CFrame * CFrame.new(0,-.85,0)
  176. ears.Anchored = false
  177. ears.Name = "ears"
  178. ears.BrickColor = BrickColor.new("Olivine")
  179. earsmesh = Instance.new("SpecialMesh", ears)
  180. earsmesh.MeshType = "FileMesh"
  181. earsmesh.Scale = Vector3.new(1,1,1.1)
  182. earsmesh.MeshId = "rbxassetid://19383407"
  183. earsweld = weldBetween(ears,Head)
  184. earsweld.C0 = ears.CFrame:inverse() * Head.CFrame * CFrame.new(0,0,0)
  185.  
  186. potara = Instance.new("Part",Character)
  187. potara.Size = Vector3.new(2,2,2)
  188. potara.CFrame = potara.CFrame:inverse() * Head.CFrame * CFrame.new(0,-.85,0)
  189. potara.Anchored = false
  190. potara.Name = "ears"
  191. potara.BrickColor = BrickColor.new("Gold")
  192. potaramesh = Instance.new("SpecialMesh", potara)
  193. potaramesh.MeshType = "FileMesh"
  194. potaramesh.Scale = Vector3.new(1,1,1)
  195. potaramesh.MeshId = "rbxassetid://2623281326"
  196. potaraweld = weldBetween(potara,Head)
  197. potaraweld.C0 = potara.CFrame:inverse() * Head.CFrame * CFrame.new(0,.25,0)
  198.  
  199. halo = Instance.new("Part",Character)
  200. halo.Size = Vector3.new(2,2,2)
  201. halo.CFrame = Root.CFrame * CFrame.new(0,0,2)
  202. halo.Anchored = false
  203. halo.Name = "halo"
  204. halo.Transparency = 1
  205. halo.BrickColor = BrickColor.new("White")
  206. halo.Material = "Neon"
  207. halomesh = Instance.new("SpecialMesh", halo)
  208. halomesh.MeshType = "FileMesh"
  209. halomesh.Scale = Vector3.new(11,11,11)
  210. halomesh.MeshId = "rbxassetid://2621604441"
  211. haloweld = weldBetween(halo,Torso)
  212. haloweld.C0 = CFrame.new(0,-4.5,-2)
  213.  
  214. shirt = Instance.new("Shirt", Character)
  215. shirt.Name = "Shirt"
  216. pants = Instance.new("Pants", Character)
  217. pants.Name = "Pants"
  218. Character.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=715059748"
  219. Character.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=745414427"
  220.  
  221. function damagealll(Radius,Position)
  222. local Returning = {}
  223. for _,v in pairs(workspace:GetChildren()) do
  224. if v~=Character and v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Torso') or v:FindFirstChild('UpperTorso') then
  225. if v:FindFirstChild("Torso") then
  226. local Mag = (v.Torso.Position - Position).magnitude
  227. if Mag < Radius then
  228. table.insert(Returning,v)
  229. end
  230. elseif v:FindFirstChild("UpperTorso") then
  231. local Mag = (v.UpperTorso.Position - Position).magnitude
  232. if Mag < Radius then
  233. table.insert(Returning,v)
  234. end
  235. end
  236. end
  237. end
  238. return Returning
  239. end
  240.  
  241. ArtificialHB = Instance.new("BindableEvent", script)
  242. ArtificialHB.Name = "Heartbeat"
  243. script:WaitForChild("Heartbeat")
  244.  
  245. frame = 1 / 60
  246. tf = 0
  247. allowframeloss = false
  248. tossremainder = false
  249.  
  250.  
  251. lastframe = tick()
  252. script.Heartbeat:Fire()
  253.  
  254.  
  255. game:GetService("RunService").Heartbeat:connect(function(s, p)
  256. tf = tf + s
  257. if tf >= frame then
  258. if allowframeloss then
  259. script.Heartbeat:Fire()
  260. lastframe = tick()
  261. else
  262. for i = 1, math.floor(tf / frame) do
  263. script.Heartbeat:Fire()
  264. end
  265. lastframe = tick()
  266. end
  267. if tossremainder then
  268. tf = 0
  269. else
  270. tf = tf - frame * math.floor(tf / frame)
  271. end
  272. end
  273. end)
  274.  
  275. function swait(num)
  276. if num == 0 or num == nil then
  277. game:service("RunService").Stepped:wait(0)
  278. else
  279. for i = 0, num do
  280. game:service("RunService").Stepped:wait(0)
  281. end
  282. end
  283. end
  284.  
  285. doomtheme = Instance.new("Sound", Torso)
  286. doomtheme.Volume = 3
  287. doomtheme.Name = "doomtheme"
  288. doomtheme.Looped = true
  289. doomtheme.SoundId = "rbxassetid://"..id
  290. doomtheme:Play()
  291.  
  292. Aura = Instance.new("Sound",Torso)
  293. Aura.Volume = 3
  294. Aura.Name = "aura"
  295. Aura.Looped = true
  296. Aura.SoundId = "rbxassetid://2643712818"
  297. Aura:Play()
  298.  
  299. Powerup = Instance.new("Sound",Torso)
  300. Powerup.Volume = powvol
  301. Powerup.SoundId = "rbxassetid://2492215919"
  302. Powerup.Name = "powerup"
  303. Powerup:Play()
  304. Powerup.Looped = true
  305.  
  306. Torso.ChildRemoved:connect(function(removed)
  307. if removed.Name == "aura" then
  308. Powerup = Instance.new("Sound",Torso)
  309. Powerup.Volume = powvol
  310. Powerup.SoundId = "rbxassetid://2492215919"
  311. Powerup.Name = "powerup"
  312. Powerup:Play()
  313. Powerup.Looped = true
  314. end
  315. end)
  316.  
  317. Torso.ChildRemoved:connect(function(removed)
  318. if removed.Name == "doomtheme" then
  319. doomtheme = Instance.new("Sound",Torso)
  320. doomtheme.Volume = 3
  321. doomtheme.Name = "doomtheme"
  322. doomtheme.Looped = true
  323. doomtheme.SoundId = "rbxassetid://"..id
  324. doomtheme:Play()
  325. end
  326. end)
  327.  
  328. coroutine.wrap(function()
  329. while wait() do
  330. pcall(function()
  331. Powerup.Volume = powvol
  332. end)
  333. end
  334. end)()
  335.  
  336. function SOUND(PARENT,ID,VOL,LOOP,REMOVE)
  337. so = Instance.new("Sound")
  338. so.Parent = PARENT
  339. so.SoundId = "rbxassetid://"..ID
  340. so.Volume = VOL
  341. so.Looped = LOOP
  342. so:Play()
  343. removeuseless:AddItem(so,REMOVE)
  344. end
  345.  
  346. particlecolor = ColorSequence.new(Color3.new(0, 5, 255))
  347.  
  348. goldpart = Instance.new("Part",RightArm)
  349. goldpart.Size = Vector3.new(1.01,2.01,1.01)
  350. goldpart.BrickColor = BrickColor.new("Gold")
  351. goldpart.Material = "Neon"
  352. goldpart.CanCollide = false
  353. goldpart.Anchored = false
  354. goldpartweld = weldBetween(goldpart,RightArm)
  355.  
  356. goldpart2 = Instance.new("Part",RightLeg)
  357. goldpart2.Size = Vector3.new(1.01,2.01,1.01)
  358. goldpart2.BrickColor = BrickColor.new("Gold")
  359. goldpart2.Material = "Neon"
  360. goldpart2.CanCollide = false
  361. goldpart2.Anchored = false
  362. goldpartweld2 = weldBetween(goldpart2,RightLeg)
  363.  
  364. goldpart3 = Instance.new("Part",LeftLeg)
  365. goldpart3.Size = Vector3.new(1.01,2.01,1.01)
  366. goldpart3.BrickColor = BrickColor.new("Gold")
  367. goldpart3.Material = "Neon"
  368. goldpart3.CanCollide = false
  369. goldpart3.Anchored = false
  370. goldpartweld3 = weldBetween(goldpart3,LeftLeg)
  371.  
  372. goldpart4 = Instance.new("Part",LeftArm)
  373. goldpart4.Size = Vector3.new(1.01,2.01,1.01)
  374. goldpart4.BrickColor = BrickColor.new("Gold")
  375. goldpart4.Material = "Neon"
  376. goldpart4.CanCollide = false
  377. goldpart4.Anchored = false
  378. goldpartweld4 = weldBetween(goldpart4,LeftArm)
  379.  
  380. goldpart5 = Instance.new("Part",Torso)
  381. goldpart5.Size = Vector3.new(2.01,2.01,1.01)
  382. goldpart5.BrickColor = BrickColor.new("Gold")
  383. goldpart5.Material = "Neon"
  384. goldpart5.CanCollide = false
  385. goldpart5.Anchored = false
  386. goldpartweld5 = weldBetween(goldpart5,Torso)
  387.  
  388.  
  389. Root.CFrame = Root.CFrame * CFrame.new(0,15,0) --intro
  390. hum.HipHeight = 14.5
  391. spinny = 0
  392. for i = 1, 400 do
  393. spinny = spinny + 4
  394. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(0+spinny),0),.4)
  395. hum.HipHeight = hum.HipHeight - .025
  396. swait()
  397. end
  398. local zamasuintro = Instance.new("Sound",Head)
  399. zamasuintro.SoundId = "rbxassetid://2623121645"
  400. zamasuintro.Volume = 7
  401. zamasuintro:Play()
  402. removeuseless:AddItem(zamasuintro,10)
  403. for i = 1, 50 do
  404. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(math.rad(0),math.rad(12),math.rad(-40 - 6 * math.sin(sine/12))),.2)
  405. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  406. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  407. swait()
  408. end
  409. for i = 1, 50 do
  410. coroutine.wrap(function()
  411. local sk = Instance.new("Part",Torso)
  412. sk.CanCollide = false
  413. sk.Anchored = true
  414. sk.BrickColor = BrickColor.new("Gold")
  415. sk.Name = "sk"
  416. sk.CFrame = Torso.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  417. local skmesh = Instance.new("SpecialMesh",sk)
  418. skmesh.MeshId = "rbxassetid://662586858"
  419. skmesh.Name = "wave"
  420. skmesh.Scale = Vector3.new(.01,.001,.01)
  421. for i = 1, 20 do
  422. skmesh.Scale = skmesh.Scale + Vector3.new(.04,0,.04)
  423. sk.Transparency = sk.Transparency + .05
  424. swait()
  425. end
  426. sk:Remove()
  427. end)()
  428. coroutine.wrap(function()
  429. local wshockwave = Instance.new("Part", Torso)
  430. wshockwave.Size = Vector3.new(1,1,1)
  431. wshockwave.CanCollide = false
  432. wshockwave.Anchored = true
  433. wshockwave.Transparency = .45
  434. wshockwave.BrickColor = BrickColor.new("Gold")
  435. wshockwave.CFrame = CFrame.new(Torso.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  436. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  437. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  438. wshockwavemesh.Name = "wswm"
  439. wshockwavemesh.MeshId = "rbxassetid://20329976"
  440. removeuseless:AddItem(wshockwave,2)
  441. for i = 1, 20 do
  442. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(4,0,4)
  443. wshockwave.Transparency = wshockwave.Transparency + .05
  444. swait()
  445. end
  446. wshockwave:Remove()
  447. end)()
  448. coroutine.wrap(function()
  449. goldpart.Anchored = true
  450. goldpart.Size = goldpart.Size + Vector3.new(.5,.5,.5)
  451. goldpart.Transparency = goldpart.Transparency + .05
  452. goldpart2.Anchored = true
  453. goldpart2.Size = goldpart2.Size + Vector3.new(.5,.5,.5)
  454. goldpart2.Transparency = goldpart2.Transparency + .05
  455. goldpart3.Anchored = true
  456. goldpart3.Size = goldpart3.Size + Vector3.new(.5,.5,.5)
  457. goldpart3.Transparency = goldpart3.Transparency + .035
  458. goldpart4.Anchored = true
  459. goldpart4.Size = goldpart4.Size + Vector3.new(.5,.5,.5)
  460. goldpart4.Transparency = goldpart4.Transparency + .05
  461. goldpart5.Anchored = true
  462. goldpart5.Size = goldpart5.Size + Vector3.new(.5,.5,.5)
  463. goldpart5.Transparency = goldpart5.Transparency + .05
  464. end)()
  465. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(math.rad(0),math.rad(12),math.rad(-40 - 6 * math.sin(sine/12))),.2)
  466. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  467. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  468. swait()
  469. end
  470. coroutine.wrap(function()
  471. goldpart:Remove()
  472. goldpart2:Remove()
  473. goldpart3:Remove()
  474. goldpart4:Remove()
  475. goldpart5:Remove()
  476. end)()
  477. coroutine.wrap(function()
  478. o1 = Instance.new("ParticleEmitter",Head)
  479. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  480. o1.Size = NumberSequence.new(0.0099999997764826,0.0099999997764826)
  481. o1.LightEmission = 0.30000001192093
  482. o1.Texture = "rbxassetid://243740013"
  483. o1.ZOffset = 1
  484. o1.Lifetime = NumberRange.new(2,2)
  485. o1.Rate = 75
  486. o1.RotSpeed = NumberRange.new(-100,100)
  487. o1.Speed = NumberRange.new(0,0)
  488. o1.VelocitySpread = 15
  489.  
  490. o1 = Instance.new("ParticleEmitter",Torso)
  491. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  492. o1.Size = NumberSequence.new(0.0099999997764826,0.0099999997764826)
  493. o1.LightEmission = 0.30000001192093
  494. o1.Texture = "rbxassetid://243740013"
  495. o1.ZOffset = 1
  496. o1.Lifetime = NumberRange.new(2,2)
  497. o1.Rate = 75
  498. o1.RotSpeed = NumberRange.new(-100,100)
  499. o1.Speed = NumberRange.new(0,0)
  500. o1.VelocitySpread = 15
  501.  
  502. o1 = Instance.new("ParticleEmitter",RightArm)
  503. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  504. o1.Size = NumberSequence.new(0.0099999997764826,0.0099999997764826)
  505. o1.LightEmission = 0.30000001192093
  506. o1.Texture = "rbxassetid://243740013"
  507. o1.ZOffset = 1
  508. o1.Lifetime = NumberRange.new(2,2)
  509. o1.Rate = 75
  510. o1.RotSpeed = NumberRange.new(-100,100)
  511. o1.Speed = NumberRange.new(0,0)
  512. o1.VelocitySpread = 15
  513.  
  514. o1 = Instance.new("ParticleEmitter",LeftArm)
  515. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  516. o1.Size = NumberSequence.new(0.0099999997764826,0.0099999997764826)
  517. o1.LightEmission = 0.30000001192093
  518. o1.Texture = "rbxassetid://243740013"
  519. o1.ZOffset = 1
  520. o1.Lifetime = NumberRange.new(2,2)
  521. o1.Rate = 75
  522. o1.RotSpeed = NumberRange.new(-100,100)
  523. o1.Speed = NumberRange.new(0,0)
  524. o1.VelocitySpread = 15
  525.  
  526. o1 = Instance.new("ParticleEmitter",LeftLeg)
  527. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  528. o1.Size = NumberSequence.new(0.0099999997764826,0.0099999997764826)
  529. o1.LightEmission = 0.30000001192093
  530. o1.Texture = "rbxassetid://243740013"
  531. o1.ZOffset = 1
  532. o1.Lifetime = NumberRange.new(2,2)
  533. o1.Rate = 75
  534. o1.RotSpeed = NumberRange.new(-100,100)
  535. o1.Speed = NumberRange.new(0,0)
  536. o1.VelocitySpread = 15
  537.  
  538. o1 = Instance.new("ParticleEmitter",RightLeg)
  539. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  540. o1.Size = NumberSequence.new(0.0099999997764826,0.0099999997764826)
  541. o1.LightEmission = 0.30000001192093
  542. o1.Texture = "rbxassetid://243740013"
  543. o1.ZOffset = 1
  544. o1.Lifetime = NumberRange.new(2,2)
  545. o1.Rate = 75
  546. o1.RotSpeed = NumberRange.new(-100,100)
  547. o1.Speed = NumberRange.new(0,0)
  548. o1.VelocitySpread = 15
  549.  
  550. o1 = Instance.new("ParticleEmitter",Head)
  551. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  552. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  553. o1.LightEmission = 0.30000001192093
  554. o1.Texture = "rbxassetid://242102147"
  555. o1.ZOffset = -2
  556. o1.Lifetime = NumberRange.new(2,2)
  557. o1.Rate = 50
  558. o1.RotSpeed = NumberRange.new(-100,100)
  559. o1.Speed = NumberRange.new(0,0)
  560. o1.VelocitySpread = 15
  561. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  562.  
  563. o1 = Instance.new("ParticleEmitter",RightArm)
  564. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  565. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  566. o1.LightEmission = 0.30000001192093
  567. o1.Texture = "rbxassetid://242102147"
  568. o1.ZOffset = -2
  569. o1.Lifetime = NumberRange.new(2,2)
  570. o1.Rate = 50
  571. o1.RotSpeed = NumberRange.new(-100,100)
  572. o1.Speed = NumberRange.new(0,0)
  573. o1.VelocitySpread = 15
  574. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  575.  
  576. o1 = Instance.new("ParticleEmitter",LeftArm)
  577. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  578. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  579. o1.LightEmission = 0.30000001192093
  580. o1.Texture = "rbxassetid://242102147"
  581. o1.ZOffset = -2
  582. o1.Lifetime = NumberRange.new(2,2)
  583. o1.Rate = 50
  584. o1.RotSpeed = NumberRange.new(-100,100)
  585. o1.Speed = NumberRange.new(0,0)
  586. o1.VelocitySpread = 15
  587. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  588.  
  589. o1 = Instance.new("ParticleEmitter",Torso)
  590. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  591. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  592. o1.LightEmission = 0.30000001192093
  593. o1.Texture = "rbxassetid://242102147"
  594. o1.ZOffset = -2
  595. o1.Lifetime = NumberRange.new(2,2)
  596. o1.Rate = 50
  597. o1.RotSpeed = NumberRange.new(-100,100)
  598. o1.Speed = NumberRange.new(0,0)
  599. o1.VelocitySpread = 15
  600. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  601.  
  602. o1 = Instance.new("ParticleEmitter",RightLeg)
  603. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  604. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  605. o1.LightEmission = 0.30000001192093
  606. o1.Texture = "rbxassetid://242102147"
  607. o1.ZOffset = -2
  608. o1.Lifetime = NumberRange.new(2,2)
  609. o1.Rate = 50
  610. o1.RotSpeed = NumberRange.new(-100,100)
  611. o1.Speed = NumberRange.new(0,0)
  612. o1.VelocitySpread = 15
  613. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  614.  
  615. o1 = Instance.new("ParticleEmitter",LeftLeg)
  616. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  617. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  618. o1.LightEmission = 0.30000001192093
  619. o1.Texture = "rbxassetid://242102147"
  620. o1.ZOffset = -2
  621. o1.Lifetime = NumberRange.new(2,2)
  622. o1.Rate = 50
  623. o1.RotSpeed = NumberRange.new(-100,100)
  624. o1.Speed = NumberRange.new(0,0)
  625. o1.VelocitySpread = 15
  626. o1.Color = ColorSequence.new(Color3.new(1, 1, 1),Color3.new(0, 0.666667, 1),Color3.new(0, 1, 0),Color3.new(1, 0, 1),Color3.new(1, 1, 1))
  627.  
  628. o1 = Instance.new("ParticleEmitter",Head)
  629. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  630. o1.Size = NumberSequence.new(0.80000001192093,0.80000001192093)
  631. o1.LightEmission = 0.30000001192093
  632. o1.Texture = "rbxassetid://242102147"
  633. o1.ZOffset = -3
  634. o1.Lifetime = NumberRange.new(2,2)
  635. o1.Rate = 50
  636. o1.RotSpeed = NumberRange.new(-100,100)
  637. o1.Speed = NumberRange.new(0,0)
  638. o1.VelocitySpread = 15
  639.  
  640. o1 = Instance.new("ParticleEmitter",Torso)
  641. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  642. o1.Size = NumberSequence.new(0.80000001192093,0.80000001192093)
  643. o1.LightEmission = 0.30000001192093
  644. o1.Texture = "rbxassetid://242102147"
  645. o1.ZOffset = -3
  646. o1.Lifetime = NumberRange.new(2,2)
  647. o1.Rate = 50
  648. o1.RotSpeed = NumberRange.new(-100,100)
  649. o1.Speed = NumberRange.new(0,0)
  650. o1.VelocitySpread = 15
  651.  
  652. o1 = Instance.new("ParticleEmitter",RightArm)
  653. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  654. o1.Size = NumberSequence.new(0.80000001192093,0.80000001192093)
  655. o1.LightEmission = 0.30000001192093
  656. o1.Texture = "rbxassetid://242102147"
  657. o1.ZOffset = -3
  658. o1.Lifetime = NumberRange.new(2,2)
  659. o1.Rate = 50
  660. o1.RotSpeed = NumberRange.new(-100,100)
  661. o1.Speed = NumberRange.new(0,0)
  662. o1.VelocitySpread = 15
  663.  
  664. o1 = Instance.new("ParticleEmitter",LeftArm)
  665. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  666. o1.Size = NumberSequence.new(0.80000001192093,0.80000001192093)
  667. o1.LightEmission = 0.30000001192093
  668. o1.Texture = "rbxassetid://242102147"
  669. o1.ZOffset = -3
  670. o1.Lifetime = NumberRange.new(2,2)
  671. o1.Rate = 50
  672. o1.RotSpeed = NumberRange.new(-100,100)
  673. o1.Speed = NumberRange.new(0,0)
  674. o1.VelocitySpread = 15
  675.  
  676. o1 = Instance.new("ParticleEmitter",RightLeg)
  677. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  678. o1.Size = NumberSequence.new(0.80000001192093,0.80000001192093)
  679. o1.LightEmission = 0.30000001192093
  680. o1.Texture = "rbxassetid://242102147"
  681. o1.ZOffset = -3
  682. o1.Lifetime = NumberRange.new(2,2)
  683. o1.Rate = 50
  684. o1.RotSpeed = NumberRange.new(-100,100)
  685. o1.Speed = NumberRange.new(0,0)
  686. o1.VelocitySpread = 15
  687.  
  688. o1 = Instance.new("ParticleEmitter",LeftLeg)
  689. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  690. o1.Size = NumberSequence.new(0.80000001192093,0.80000001192093)
  691. o1.LightEmission = 0.30000001192093
  692. o1.Texture = "rbxassetid://242102147"
  693. o1.ZOffset = -3
  694. o1.Lifetime = NumberRange.new(2,2)
  695. o1.Rate = 50
  696. o1.RotSpeed = NumberRange.new(-100,100)
  697. o1.Speed = NumberRange.new(0,0)
  698. o1.VelocitySpread = 15
  699.  
  700. o1 = Instance.new("ParticleEmitter",Head)
  701. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  702. o1.Size = NumberSequence.new(0.60000002384186,0.60000002384186)
  703. o1.LightEmission = 0.30000001192093
  704. o1.Texture = "rbxassetid://242102147"
  705. o1.ZOffset = -1
  706. o1.Lifetime = NumberRange.new(2,2)
  707. o1.Rate = 50
  708. o1.RotSpeed = NumberRange.new(-100,100)
  709. o1.Speed = NumberRange.new(0,0)
  710. o1.VelocitySpread = 15
  711.  
  712. o1 = Instance.new("ParticleEmitter",Torso)
  713. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  714. o1.Size = NumberSequence.new(0.60000002384186,0.60000002384186)
  715. o1.LightEmission = 0.30000001192093
  716. o1.Texture = "rbxassetid://242102147"
  717. o1.ZOffset = -1
  718. o1.Lifetime = NumberRange.new(2,2)
  719. o1.Rate = 50
  720. o1.RotSpeed = NumberRange.new(-100,100)
  721. o1.Speed = NumberRange.new(0,0)
  722. o1.VelocitySpread = 15
  723.  
  724. o1 = Instance.new("ParticleEmitter",RightArm)
  725. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  726. o1.Size = NumberSequence.new(0.60000002384186,0.60000002384186)
  727. o1.LightEmission = 0.30000001192093
  728. o1.Texture = "rbxassetid://242102147"
  729. o1.ZOffset = -1
  730. o1.Lifetime = NumberRange.new(2,2)
  731. o1.Rate = 50
  732. o1.RotSpeed = NumberRange.new(-100,100)
  733. o1.Speed = NumberRange.new(0,0)
  734. o1.VelocitySpread = 15
  735.  
  736. o1 = Instance.new("ParticleEmitter",LeftArm)
  737. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  738. o1.Size = NumberSequence.new(0.60000002384186,0.60000002384186)
  739. o1.LightEmission = 0.30000001192093
  740. o1.Texture = "rbxassetid://242102147"
  741. o1.ZOffset = -1
  742. o1.Lifetime = NumberRange.new(2,2)
  743. o1.Rate = 50
  744. o1.RotSpeed = NumberRange.new(-100,100)
  745. o1.Speed = NumberRange.new(0,0)
  746. o1.VelocitySpread = 15
  747.  
  748. o1 = Instance.new("ParticleEmitter",RightLeg)
  749. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  750. o1.Size = NumberSequence.new(0.60000002384186,0.60000002384186)
  751. o1.LightEmission = 0.30000001192093
  752. o1.Texture = "rbxassetid://242102147"
  753. o1.ZOffset = -1
  754. o1.Lifetime = NumberRange.new(2,2)
  755. o1.Rate = 50
  756. o1.RotSpeed = NumberRange.new(-100,100)
  757. o1.Speed = NumberRange.new(0,0)
  758. o1.VelocitySpread = 15
  759.  
  760. o1 = Instance.new("ParticleEmitter",LeftLeg)
  761. o1.Transparency = NumberSequence.new(1,0.70491802692413,0.7322404384613,1)
  762. o1.Size = NumberSequence.new(0.60000002384186,0.60000002384186)
  763. o1.LightEmission = 0.30000001192093
  764. o1.Texture = "rbxassetid://242102147"
  765. o1.ZOffset = -1
  766. o1.Lifetime = NumberRange.new(2,2)
  767. o1.Rate = 50
  768. o1.RotSpeed = NumberRange.new(-100,100)
  769. o1.Speed = NumberRange.new(0,0)
  770. o1.VelocitySpread = 15
  771. end)()
  772. for i = 1, 50 do
  773. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(math.rad(0),math.rad(12),math.rad(-40 - 6 * math.sin(sine/12))),.2)
  774. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  775. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  776. swait()
  777. end
  778. for i = 1, 20 do
  779. coroutine.wrap(function()
  780. local sk = Instance.new("Part",Torso)
  781. sk.CanCollide = false
  782. sk.Anchored = true
  783. sk.BrickColor = BrickColor.new("White")
  784. sk.Name = "sk"
  785. sk.CFrame = halo.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  786. local skmesh = Instance.new("SpecialMesh",sk)
  787. skmesh.MeshId = "rbxassetid://662586858"
  788. skmesh.Name = "wave"
  789. skmesh.Scale = Vector3.new(.5,.001,.5)
  790. for i = 1, 10 do
  791. skmesh.Scale = skmesh.Scale - Vector3.new(.05,0,.05)
  792. sk.Transparency = sk.Transparency + .05
  793. swait()
  794. end
  795. sk:Remove()
  796. end)()
  797. coroutine.wrap(function()
  798. local wshockwave = Instance.new("Part", Torso)
  799. wshockwave.Size = Vector3.new(1,1,1)
  800. wshockwave.CanCollide = false
  801. wshockwave.Anchored = true
  802. wshockwave.Transparency = .45
  803. wshockwave.BrickColor = BrickColor.new("White")
  804. wshockwave.CFrame = CFrame.new(halo.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  805. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  806. wshockwavemesh.Scale = Vector3.new(50,.05,50)
  807. wshockwavemesh.Name = "wswm"
  808. wshockwavemesh.MeshId = "rbxassetid://20329976"
  809. removeuseless:AddItem(wshockwave,2)
  810. for i = 1, 20 do
  811. wshockwavemesh.Scale = wshockwavemesh.Scale - Vector3.new(5,0.05,5)
  812. wshockwave.Transparency = wshockwave.Transparency + .05
  813. swait()
  814. end
  815. wshockwave:Remove()
  816. end)()
  817. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(math.rad(0),math.rad(12),math.rad(-40 - 6 * math.sin(sine/12))),.2)
  818. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  819. halomesh.Scale = halomesh.Scale - Vector3.new(.5,.5,.5)
  820. halo.Transparency = halo.Transparency - .05
  821. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  822. swait()
  823. end
  824.  
  825.  
  826. mouse.KeyDown:connect(function(Press)
  827. Press=Press:lower()
  828. if Press=='e' then
  829. if debounce then return end
  830. debounce = true
  831. attacking = true
  832. SOUND(Torso,1229838347,8,false,3)
  833. g1 = Instance.new("BodyGyro", Root)
  834. g1.D = 175
  835. g1.P = 20000
  836. g1.MaxTorque = Vector3.new(9000000,9000000,9000000)
  837. ws = 8
  838. sooht = Instance.new("Sound")
  839. sooht.SoundId = "rbxassetid://1146688617"
  840. sooht.Volume = 8
  841. coroutine.wrap(function()
  842. for i = 1, 5 do
  843. haloweld.C0 = haloweld.C0 * CFrame.new(0,-1,0)
  844. halomesh.Scale = halomesh.Scale + Vector3.new(.25,.25,.25)
  845. swait()
  846. end
  847. end)()
  848. coroutine.wrap(function()
  849. for i = 1, 15 do
  850. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(5 * math.sin(sine/12)),math.rad(-40),math.rad(0)),.2)
  851. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  852. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  853. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  854. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(.5,2,0) * CFrame.Angles(math.rad(0),math.rad(20),math.rad(-140)),.3)
  855. swait()
  856. end
  857. for i = 1, 20 do
  858. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(5 * math.sin(sine/12)),math.rad(-0 * math.sin(sine/12)),math.rad(0)),.2)
  859. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  860. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  861. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  862. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1, 1.35, 0.4) * CFrame.Angles(math.rad(-90 - 2 * math.sin(sine/12)), math.rad(3), math.rad(4)), 0.4)
  863. swait()
  864. end
  865. end)()
  866. for i = 1, 30 do
  867. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-9.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  868. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.2)
  869. local bladeofjustice = Instance.new("Part",Torso)
  870. bladeofjustice.Anchored = true
  871. bladeofjustice.CanCollide = false
  872. bladeofjustice.Name = "blad"
  873. bladeofjustice.Transparency = 1
  874. bladeofjustice.Size = Vector3.new(1,1,1)
  875. bladeofjustice.BrickColor = BrickColor.new("Really red")
  876. bladeofjustice.Material = "Neon"
  877. bladeofjustice.CFrame = Root.CFrame * CFrame.new(math.random(-8,8),math.random(-5,5),math.random(-2,2))
  878. local bladeofjusticemesh = Instance.new("SpecialMesh",bladeofjustice)
  879. bladeofjusticemesh.MeshId = "rbxassetid://2624209310"
  880. bladeofjusticemesh.Scale = Vector3.new(1,1,1)
  881. coroutine.wrap(function()
  882. local hitted = false
  883. for i = 1, 20 do
  884. bladeofjustice.Transparency = bladeofjustice.Transparency - .05
  885. swait()
  886. end
  887. bladeofjustice.Anchored = false
  888. sooht.Parent = bladeofjustice
  889. sooht:Play()
  890. coroutine.wrap(function()
  891. for i = 1, 300 do
  892. if hitted then break end
  893. swait()
  894. end
  895. if not hitted then
  896. bladeofjustice:Remove()
  897. end
  898. end)()
  899. local bov = Instance.new("BodyVelocity",bladeofjustice)
  900. bov.maxForce = Vector3.new(99999,99999,99999)
  901. bladeofjustice.CFrame = CFrame.new(bladeofjustice.Position,mouse.Hit.p)
  902. bov.velocity = bladeofjustice.CFrame.lookVector*220
  903. bladeofjustice.Touched:connect(function(hit)
  904. if hit:IsA("Part") and hit.Parent ~= Character and hit.Name ~= "blad" and hit.Parent.Parent ~= Character then
  905. if hitted then return end
  906. hitted = true
  907. bov:Remove()
  908. bladeofjustice.Anchored = true
  909. wait(2)
  910. bladeofjustice.Transparency = 1
  911. Hit = damagealll(14,bladeofjustice.Position)
  912. for _,v in pairs(Hit) do
  913. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  914. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  915. slachtoffer:TakeDamage(math.random(29,43))
  916. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  917. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  918. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  919. vel.velocity = CFrame.new(bladeofjustice.Position,torso.Position).lookVector*125
  920. removeuseless:AddItem(vel,.1)
  921. end
  922. end
  923. for i = 1, 3 do
  924. coroutine.wrap(function()
  925. local sk = Instance.new("Part",Torso)
  926. sk.CanCollide = false
  927. sk.Anchored = true
  928. sk.BrickColor = BrickColor.new("White")
  929. sk.Name = "sk"
  930. sk.CFrame = bladeofjustice.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  931. local skmesh = Instance.new("SpecialMesh",sk)
  932. skmesh.MeshId = "rbxassetid://662586858"
  933. skmesh.Name = "wave"
  934. skmesh.Scale = Vector3.new(.01,.001,.01)
  935. for i = 1, 20 do
  936. skmesh.Scale = skmesh.Scale + Vector3.new(.03,0,.03)
  937. sk.Transparency = sk.Transparency + .05
  938. swait()
  939. end
  940. sk:Remove()
  941. end)()
  942. coroutine.wrap(function()
  943. local wshockwave = Instance.new("Part", Torso)
  944. wshockwave.Size = Vector3.new(1,1,1)
  945. wshockwave.CanCollide = false
  946. wshockwave.Anchored = true
  947. wshockwave.Transparency = .45
  948. wshockwave.BrickColor = BrickColor.new("White")
  949. wshockwave.CFrame = CFrame.new(bladeofjustice.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  950. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  951. wshockwavemesh.Scale = Vector3.new(.1,.005,.1)
  952. wshockwavemesh.Name = "wswm"
  953. wshockwavemesh.MeshId = "rbxassetid://20329976"
  954. removeuseless:AddItem(wshockwave,2)
  955. for i = 1, 20 do
  956. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(5.5,0,5.5)
  957. wshockwave.Transparency = wshockwave.Transparency + .05
  958. swait()
  959. end
  960. wshockwave:Remove()
  961. end)()
  962. coroutine.wrap(function()
  963. local exploshap = Instance.new("Part",Torso)
  964. exploshap.Size = Vector3.new(1,1,1)
  965. exploshap.Shape = "Ball"
  966. exploshap.Material = "Neon"
  967. exploshap.CFrame = bladeofjustice.CFrame
  968. exploshap.BrickColor = BrickColor.new("Really red")
  969. exploshap.CanCollide = false
  970. exploshap.Anchored = true
  971. for i = 1, 20 do
  972. exploshap.Size = exploshap.Size + Vector3.new(2,2,2)
  973. exploshap.Transparency = exploshap.Transparency + .05
  974. swait()
  975. end
  976. bladeofjustice:Remove()
  977. exploshap:Remove()
  978. end)()
  979. swait()
  980. end
  981. end
  982. end)
  983. end)()
  984. swait(.5)
  985. end
  986. for i = 1, 5 do
  987. haloweld.C0 = haloweld.C0 * CFrame.new(0,1,0)
  988. halomesh.Scale = halomesh.Scale - Vector3.new(.25,.25,.25)
  989. swait()
  990. end
  991. removeuseless:AddItem(g1,.001)
  992. ws = 90
  993. debounce = false
  994. attacking = false
  995. elseif Press=='t' then
  996. if dedlaff then return end
  997. if tauntdebounce == true then return end
  998. tauntdebounce = true
  999. rdnm = soundtable[math.random(1,#soundtable)]
  1000. tauntsound = Instance.new("Sound", Head)
  1001. tauntsound.Volume = 10
  1002. tauntsound.SoundId = "http://www.roblox.com/asset/?id="..rdnm
  1003. tauntsound.Looped = false
  1004. tauntsound:Play()
  1005. wait(3)
  1006. wait(tauntsound.TimeLength)
  1007. tauntsound:Remove()
  1008. wait(1)
  1009. tauntdebounce = false
  1010. elseif Press=='u' then
  1011. if debounce then return end
  1012. debounce = true
  1013. attacking = true
  1014. g1 = Instance.new("BodyGyro", Root)
  1015. g1.D = 175
  1016. g1.P = 20000
  1017. g1.MaxTorque = Vector3.new(0,9000000,0)
  1018. ws = 0
  1019. local FACEMYDIVINEWRATH = Instance.new("Sound",Torso)
  1020. FACEMYDIVINEWRATH.SoundId = "rbxassetid://2638717446"
  1021. FACEMYDIVINEWRATH.Volume = 10
  1022. FACEMYDIVINEWRATH:Play()
  1023. removeuseless:AddItem(FACEMYDIVINEWRATH,5)
  1024. for i = 1, 20 do
  1025. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1026. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1027. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1028. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1029. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.2)
  1030. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(10),math.rad(0)),.3)
  1031. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.2, 1.5, .5) * CFrame.Angles(math.rad(-85 - 3 * math.sin(sine/12)), math.rad(40 + 5 * math.sin(sine/12)), math.rad(0)), 0.25)
  1032. swait()
  1033. end
  1034. local holywrath = Instance.new("Part",RightArm)
  1035. SOUND(holywrath,2644268083,10,false,6)
  1036. holywrath.Size = Vector3.new(.1,.1,.1)
  1037. holywrath.CanCollide = false
  1038. holywrath.Anchored = true
  1039. holywrath.BrickColor = BrickColor.new("Bright orange")
  1040. holywrath.Material = "Neon"
  1041. holywrath.Shape = "Ball"
  1042. holywrath.CFrame = rightlocation.CFrame * CFrame.new(0,0,-2)
  1043. local holywrathaura = Instance.new("Sound",holywrath)
  1044. holywrathaura.SoundId = "rbxassetid://2643712818"
  1045. holywrathaura.Looped = true
  1046. holywrathaura.Volume = 0
  1047. holywrathaura:Play()
  1048. local holywrath2 = Instance.new("Part",RightArm)
  1049. holywrath2.Size = Vector3.new(.3,.3,.3)
  1050. holywrath2.CanCollide = false
  1051. holywrath2.Anchored = true
  1052. holywrath2.Transparency = .7
  1053. holywrath2.BrickColor = BrickColor.new("Really red")
  1054. holywrath2.Material = "Neon"
  1055. holywrath2.Shape = "Ball"
  1056. holywrath2.CFrame = rightlocation.CFrame * CFrame.new(0,0,-2)
  1057. for i = 1, 30 do
  1058. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1059. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1060. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1061. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1062. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.2)
  1063. coroutine.wrap(function()
  1064. hwc = holywrathcolors[math.random(1,#holywrathcolors)]
  1065. local energyballs = Instance.new("Part",Torso)
  1066. energyballs.BrickColor = BrickColor.new(hwc)
  1067. energyballs.Anchored = true
  1068. energyballs.CanCollide = false
  1069. energyballs.CFrame = holywrath.CFrame * CFrame.new(math.random(-4,4),math.random(-4,4),math.random(-4,4))
  1070. energyballs.Shape = "Ball"
  1071. energyballs.Material = "Neon"
  1072. energyballs.Size = Vector3.new(.4,.4,.4)
  1073. for i = 1, 10 do
  1074. energyballs.CFrame = energyballs.CFrame:lerp(CFrame.new(holywrath.Position),.3)
  1075. swait()
  1076. end
  1077. energyballs:Remove()
  1078. end)()
  1079. end
  1080. for i = 1, 20 do
  1081. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1082. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1083. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1084. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1085. holywrath2.CFrame = rightlocation.CFrame * CFrame.new(0,0,-2)
  1086. holywrath2.Size = holywrath2.Size + Vector3.new(.1,.1,.1)
  1087. holywrath.CFrame = rightlocation.CFrame * CFrame.new(0,0,-2)
  1088. holywrath.Size = holywrath.Size + Vector3.new(.1,.1,.1)
  1089. swait()
  1090. end
  1091. for i = 1, 10 do
  1092. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1093. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1094. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1095. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1096. holywrath2.CFrame = rightlocation.CFrame * CFrame.new(0,0,-2)
  1097. holywrath.CFrame = rightlocation.CFrame * CFrame.new(0,0,-2)
  1098. swait()
  1099. end
  1100. enbig = 0
  1101. enbig2 = 0
  1102. enbigger = .25
  1103. SOUND(holywrath,2644340882,10,false,6)
  1104. for i = 1, 60 do
  1105. enbigger = enbigger + .02
  1106. coroutine.wrap(function()
  1107. local sk = Instance.new("Part",Torso)
  1108. sk.CanCollide = false
  1109. sk.Anchored = true
  1110. sk.BrickColor = BrickColor.new("White")
  1111. sk.Name = "sk"
  1112. sk.CFrame = holywrath.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1113. local skmesh = Instance.new("SpecialMesh",sk)
  1114. skmesh.MeshId = "rbxassetid://662586858"
  1115. skmesh.Name = "wave"
  1116. skmesh.Scale = Vector3.new(.05,.005,.05)
  1117. for i = 1, 20 do
  1118. skmesh.Scale = skmesh.Scale + Vector3.new(enbigger,0,enbigger)
  1119. sk.Transparency = sk.Transparency + .05
  1120. swait()
  1121. end
  1122. sk:Remove()
  1123. end)()
  1124. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1125. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1126. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1127. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1128. holywrathaura.Volume = holywrathaura.Volume + .2
  1129. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.2)
  1130. enbig = enbig + 2
  1131. enbig2 = enbig2 + 1
  1132. holywrath.Size = holywrath.Size + Vector3.new(4,4,4)
  1133. holywrath2.Size = holywrath2.Size + Vector3.new(4,4,4)
  1134. holywrath2.CFrame = rightlocation.CFrame * CFrame.new(0,-5 - enbig,-5 - enbig2)
  1135. holywrath.CFrame = rightlocation.CFrame * CFrame.new(0,-5 - enbig,-5 - enbig2)
  1136. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(-40),math.rad(0)),.3)
  1137. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(1.22, 1.32, .4) * CFrame.Angles(math.rad(40 + 1 * math.sin(sine/5)), math.rad(3 + 1 * math.sin(sine/4)), math.rad(-160 - 2 * math.sin(sine/9))), 0.25)
  1138. swait()
  1139. end
  1140. for i = 1, 30 do
  1141. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(.98,-.15,.5) * CFrame.Angles(math.rad(-70 - 5 * math.sin(sine/12)),math.rad(40 - 5 * math.sin(sine/12)),math.rad(-20)),.25)
  1142. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(25),math.rad(-50),math.rad(0)),.3)
  1143. swait()
  1144. end
  1145. local hitboxwrath = Instance.new("Part",Torso)
  1146. hitboxwrath.Size = Vector3.new(1,1,1)
  1147. hitboxwrath.CanCollide = false
  1148. hitboxwrath.Transparency = 1
  1149. hitboxwrath.Anchored = false
  1150. hitboxwrath.Name = "hb"
  1151. hitboxwrath.CFrame = holywrath.CFrame
  1152. local bov = Instance.new("BodyVelocity",hitboxwrath)
  1153. bov.maxForce = Vector3.new(99999,99999,99999)
  1154. holywrath.CFrame = CFrame.new(holywrath.Position,mouse.Hit.p)
  1155. bov.velocity = holywrath.CFrame.lookVector*60
  1156. local hitted = false
  1157. local function explo()
  1158. hitted = true
  1159. hitboxwrath.Anchored = true
  1160. SOUND(hitboxwrath,2011915907,10,false,6)
  1161. shock = holywrath:Clone() shock.Parent = Torso
  1162. coroutine.wrap(function()
  1163. for i = 1, 20 do
  1164. shock.Size = shock.Size + Vector3.new(5,5,5)
  1165. shock.Transparency = shock.Transparency + .05
  1166. swait()
  1167. end
  1168. shock:Remove()
  1169. end)()
  1170. local taks = 0
  1171. local wavebigger = true
  1172. coroutine.wrap(function()
  1173. local deadlyring = Instance.new("Part", Torso)
  1174. deadlyring.Size = Vector3.new(5, 5, 5)
  1175. deadlyring.Transparency = .5
  1176. deadlyring.BrickColor = BrickColor.new("White")
  1177. deadlyring.Anchored = true
  1178. deadlyring.CanCollide = false
  1179. deadlyring.CFrame = hitboxwrath.CFrame * CFrame.Angles(math.rad(math.random(-180,180)), math.rad(math.random(-180,180)), math.rad(math.random(-180,180)))
  1180. local deadlyringh = Instance.new("SpecialMesh", deadlyring)
  1181. deadlyringh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1182. deadlyringh.Scale = Vector3.new(330, 330, .1)
  1183. local deadlyring2 = Instance.new("Part", Torso)
  1184. deadlyring2.Size = Vector3.new(5, 5, 5)
  1185. deadlyring2.Transparency = .5
  1186. deadlyring2.BrickColor = BrickColor.new("White")
  1187. deadlyring2.Anchored = true
  1188. deadlyring2.CanCollide = false
  1189. deadlyring2.CFrame = hitboxwrath.CFrame * CFrame.Angles(math.rad(math.random(-180,180)), math.rad(math.random(-180,180)), math.rad(math.random(-180,180)))
  1190. local deadlyringh2 = Instance.new("SpecialMesh", deadlyring2)
  1191. deadlyringh2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1192. deadlyringh2.Scale = Vector3.new(360, 360, .1)
  1193. while wavebigger do
  1194. Hit = damagealll(187,hitboxwrath.Position)
  1195. for _,v in pairs(Hit) do
  1196. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1197. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1198. slachtoffer:TakeDamage(math.random(3,7))
  1199. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1200. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1201. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1202. vel.velocity = CFrame.new(hitboxwrath.Position,torso.Position).lookVector*330
  1203. removeuseless:AddItem(vel,.1)
  1204. end
  1205. end
  1206. deadlyring.CFrame = deadlyring.CFrame * CFrame.Angles(math.rad(0+7),math.rad(0-7),math.rad(0+7))
  1207. deadlyring2.CFrame = deadlyring2.CFrame * CFrame.Angles(math.rad(0-7),math.rad(0+7),math.rad(0-7))
  1208. deadlyringh2.Scale = deadlyringh2.Scale + Vector3.new(2,2,0)
  1209. deadlyringh.Scale = deadlyringh.Scale + Vector3.new(2,2,0)
  1210. holywrath2.Size = holywrath2.Size + Vector3.new(.25,.25,.25)
  1211. holywrath.Size = holywrath.Size + Vector3.new(.25,.25,.25)
  1212. swait()
  1213. end
  1214. for i = 1, 50 do
  1215. holywrathaura.Volume = holywrathaura.Volume - .5
  1216. deadlyringh.Scale = deadlyringh.Scale + Vector3.new(5,5,0)
  1217. deadlyringh2.Scale = deadlyringh2.Scale + Vector3.new(5,5,0)
  1218. deadlyring.Transparency = deadlyring.Transparency + .025
  1219. deadlyring2.Transparency = deadlyring2.Transparency + .025
  1220. holywrath.Transparency = holywrath.Transparency + .025
  1221. holywrath2.Transparency = holywrath2.Transparency + .025
  1222. swait()
  1223. end
  1224. holywrathaura:Remove()
  1225. hitboxwrath:Remove()
  1226. holywrath:Remove()
  1227. holywrath2:Remove()
  1228. deadlyring:Remove()
  1229. deadlyring2:Remove()
  1230. end)()
  1231. for i = 1, 150 do
  1232. taks = taks + .1
  1233. coroutine.wrap(function()
  1234. local shockwave = Instance.new("Part", Torso)
  1235. shockwave.Size = Vector3.new(1,1,1)
  1236. shockwave.CanCollide = false
  1237. shockwave.Anchored = true
  1238. shockwave.Transparency = .5
  1239. shockwave.BrickColor = BrickColor.new("White")
  1240. shockwave.CFrame = CFrame.new(hitboxwrath.Position)
  1241. local shockwavemesh = Instance.new("SpecialMesh", shockwave)
  1242. shockwavemesh.Scale = Vector3.new(7,3,7)
  1243. shockwavemesh.MeshId = "rbxassetid://20329976"
  1244. local shockwave2 = Instance.new("Part", Torso)
  1245. shockwave2.Size = Vector3.new(1,1,1)
  1246. shockwave2.CanCollide = false
  1247. shockwave2.Anchored = true
  1248. shockwave2.Transparency = .5
  1249. shockwave2.BrickColor = BrickColor.new("White")
  1250. shockwave2.CFrame = CFrame.new(hitboxwrath.Position)
  1251. local shockwavemesh2 = Instance.new("SpecialMesh", shockwave2)
  1252. shockwavemesh2.Scale = Vector3.new(5,3,5)
  1253. shockwavemesh2.MeshId = "rbxassetid://20329976"
  1254. for i = 1, 40 do
  1255. shockwave.CFrame = shockwave.CFrame * CFrame.Angles(math.rad(0),math.rad(0+15),0)
  1256. shockwave2.CFrame = shockwave2.CFrame * CFrame.Angles(math.rad(0),math.rad(0-8),0)
  1257. shockwave.Transparency = shockwave.Transparency + 0.025
  1258. shockwave2.Transparency = shockwave2.Transparency + 0.025
  1259. shockwavemesh2.Scale = shockwavemesh2.Scale + Vector3.new(18 + taks,6 + taks/2,18 + taks)
  1260. shockwavemesh.Scale = shockwavemesh.Scale + Vector3.new(18+taks,3 + taks/2,18+taks)
  1261. swait()
  1262. end
  1263. shockwave:Remove()
  1264. shockwave2:Remove()
  1265. end)()
  1266. swait(2.4)
  1267. end
  1268. wavebigger = false
  1269. end
  1270. coroutine.wrap(function()
  1271. local hitted = false
  1272. hitboxwrath.Touched:connect(function(hit)
  1273. if hit:IsA("Part") and hit.Parent ~= Character and hit.Name ~= "blad" and hit.Parent.Parent ~= Character then
  1274. if hitted then return end
  1275. explo()
  1276. end
  1277. end)
  1278. while true do
  1279. if hitted then break end
  1280. holywrath2.CFrame = hitboxwrath.CFrame
  1281. holywrath.CFrame = hitboxwrath.CFrame
  1282. swait()
  1283. end
  1284. end)()
  1285. coroutine.wrap(function()
  1286. for i = 1, 1100 do
  1287. if hitted then break end
  1288. swait()
  1289. end
  1290. if not hitted then
  1291. explo()
  1292. end
  1293. end)()
  1294. for i = 1, 22 do
  1295. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1296. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1297. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1298. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1299. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.2)
  1300. RIGHTARMLERP.C1 = RIGHTARMLERP.C1:lerp(CFrame.new(.2,.2,.2) * CFrame.Angles(0,0,0),.2)
  1301. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1, 1.1, 0.4) * CFrame.Angles(math.rad(-75), math.rad(-15), math.rad(4)), 0.2)
  1302. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1303. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(-25),math.rad(50),math.rad(0)),.3)
  1304. swait()
  1305. end
  1306. RIGHTARMLERP.C1 = CFrame.new(0,0,0)
  1307. removeuseless:AddItem(g1,.001)
  1308. debounce = false
  1309. attacking = false
  1310. ws = 90
  1311. elseif Press=='y' then
  1312. if debounce then return end
  1313. debounce = true
  1314. attacking = true
  1315. local trev = true
  1316. change = .6
  1317. coroutine.wrap(function()
  1318. while true do
  1319. if trev == false then break end
  1320. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1321. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(5 * math.sin(sine/12)),math.rad(-0 * math.sin(sine/12)),math.rad(0)),.2)
  1322. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1323. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1324. swait()
  1325. end
  1326. end)()
  1327. ws = 0
  1328. local speech = Instance.new("Sound",Head)
  1329. speech.SoundId = "rbxassetid://2638520204"
  1330. speech.Volume = 10
  1331. speech:Play()
  1332. removeuseless:AddItem(speech,5)
  1333. coroutine.wrap(function()
  1334. for i = 1, 35 do
  1335. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(0.4, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(100)), 0.25)
  1336. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-0.4, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-100)), 0.25)
  1337. swait()
  1338. end
  1339. end)()
  1340. coroutine.wrap(function()
  1341. local blwav = Instance.new("Part",Torso)
  1342. blwav.Size = Vector3.new(1,1,1)
  1343. blwav.Shape = "Ball"
  1344. blwav.BrickColor = BrickColor.new("Dark blue")
  1345. blwav.CanCollide = false
  1346. blwav.CFrame = Root.CFrame
  1347. blwav.Anchored = true
  1348. blwav.Material = "Neon"
  1349. for i = 1, 50 do
  1350. blwav.Size = blwav.Size + Vector3.new(4,4,4)
  1351. blwav.Transparency = blwav.Transparency + .05
  1352. swait()
  1353. end
  1354. blwav:Remove()
  1355. end)()
  1356. eagle = Instance.new("Part", Torso)
  1357. eagle.Size = Vector3.new(1,1,1)
  1358. eagle.CanCollide = false
  1359. eagle.Anchored = false
  1360. eagle.Material = "Neon"
  1361. eagle.Transparency = .58
  1362. eagle.BrickColor = BrickColor.new("Dark blue")
  1363. eagle.CFrame = CFrame.new(halo.Position) * CFrame.new(0,115,0) * CFrame.Angles(math.rad(90),0,0)
  1364. local eaglemesh = Instance.new("SpecialMesh", eagle)
  1365. eaglemesh.MeshId = "rbxassetid://120647529"
  1366. eaglemesh.Scale = Vector3.new(0,0,0)
  1367. eagleweld = weldBetween(eagle,Root)
  1368. eagleweld.C0 = CFrame.new(0,0,105) * CFrame.Angles(math.rad(-90),0,0)
  1369. local eagle2 = Instance.new("Part", Torso)
  1370. eagle2.Size = Vector3.new(1,1,1)
  1371. eagle2.CanCollide = false
  1372. eagle2.Anchored = false
  1373. eagle2.Material = "Neon"
  1374. eagle2.Transparency = .49
  1375. eagle2.BrickColor = BrickColor.new("Pastel violet")
  1376. eagle2.CFrame = CFrame.new(halo.Position) * CFrame.new(0,115,0) * CFrame.Angles(math.rad(90),0,0)
  1377. local eaglemesh2 = Instance.new("SpecialMesh", eagle2)
  1378. eaglemesh2.MeshId = "rbxassetid://120647529"
  1379. eaglemesh2.Scale = Vector3.new(0,0,0)
  1380. eagleweld2 = weldBetween(eagle2,Root)
  1381. eagleweld2.C0 = CFrame.new(0,0,105) * CFrame.Angles(math.rad(-90),0,0)
  1382. local eagle3 = Instance.new("Part", Torso)
  1383. eagle3.Size = Vector3.new(1,1,1)
  1384. eagle3.CanCollide = false
  1385. eagle3.Anchored = false
  1386. eagle3.Material = "Neon"
  1387. eagle3.Transparency = .65
  1388. eagle3.BrickColor = BrickColor.new("Mulberry")
  1389. eagle3.CFrame = CFrame.new(halo.Position) * CFrame.new(0,115,0) * CFrame.Angles(math.rad(90),0,0)
  1390. local eaglemesh3 = Instance.new("SpecialMesh", eagle3)
  1391. eaglemesh3.MeshId = "rbxassetid://120647529"
  1392. eaglemesh3.Scale = Vector3.new(0,0,0)
  1393. eagleweld3 = weldBetween(eagle3,Root)
  1394. eagleweld3.C0 = CFrame.new(0,0,105) * CFrame.Angles(math.rad(-90),0,0)
  1395. circlelocation = Instance.new("Part",Torso)
  1396. circlelocation.Size = Vector3.new(1,1,1)
  1397. circlelocation.CFrame = Root.CFrame
  1398. circlelocation.Anchored = false
  1399. circlelocation.Transparency = 1
  1400. circlelocation.CanCollide = false
  1401. circlelocationweld = weldBetween(circlelocation,Root)
  1402. circlelocationweld.C0 = CFrame.new(0,-56,-15)
  1403. lighttable = {}
  1404. val = 0
  1405. for i = 1, 250 do
  1406. val = val + 5
  1407. lightpart = Instance.new("Part",Torso)
  1408. lightpart.Anchored = false
  1409. lightpart.CanCollide = false
  1410. lightpart.Size = Vector3.new(2,.5,2.35)
  1411. lightpart.Material = "Neon"
  1412. lightpart.Transparency = 1
  1413. lightpart.BrickColor = BrickColor.new("Gold")
  1414. lightpartweld = weldBetween(lightpart,circlelocation)
  1415. lightpartweld.C0 = CFrame.new(25,0,0) * CFrame.Angles(0,math.rad(val),0)
  1416. table.insert(lighttable,lightpart)
  1417. end
  1418. coroutine.wrap(function()
  1419. wait(1.76)
  1420. for i = 1, 120 do
  1421. for i,v in pairs(lighttable) do
  1422. v.Transparency = v.Transparency - .01
  1423. end
  1424. swait()
  1425. end
  1426. end)()
  1427. introvog = true
  1428. coroutine.wrap(function()
  1429. for i = 1, 63 do
  1430. eaglemesh3.Scale = eaglemesh3.Scale + Vector3.new(0,1,1)
  1431. swait()
  1432. end
  1433. for i = 1, 32 do
  1434. eaglemesh3.Scale = eaglemesh3.Scale + Vector3.new(2,0,0)
  1435. swait()
  1436. end
  1437. for i = 1, 50 do
  1438. hum.CameraOffset = Vector3.new(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1439. coroutine.wrap(function()
  1440. local wshockwave = Instance.new("Part", Torso)
  1441. wshockwave.Size = Vector3.new(1,1,1)
  1442. wshockwave.CanCollide = false
  1443. wshockwave.Anchored = true
  1444. wshockwave.Transparency = .45
  1445. wshockwave.BrickColor = BrickColor.new("White")
  1446. wshockwave.CFrame = CFrame.new(eagle.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1447. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1448. wshockwavemesh.Scale = Vector3.new(1,.005,1)
  1449. wshockwavemesh.Name = "wswm"
  1450. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1451. removeuseless:AddItem(wshockwave,2)
  1452. for i = 1, 20 do
  1453. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(29.5,0,29.5)
  1454. wshockwave.Transparency = wshockwave.Transparency + .05
  1455. swait()
  1456. end
  1457. wshockwave:Remove()
  1458. end)()
  1459. coroutine.wrap(function()
  1460. local sk = Instance.new("Part",Torso)
  1461. sk.CanCollide = false
  1462. sk.Anchored = true
  1463. sk.BrickColor = BrickColor.new("White")
  1464. sk.Name = "sk"
  1465. sk.CFrame = eagle.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1466. local skmesh = Instance.new("SpecialMesh",sk)
  1467. skmesh.MeshId = "rbxassetid://662586858"
  1468. skmesh.Name = "wave"
  1469. skmesh.Scale = Vector3.new(.05,.005,.05)
  1470. for i = 1, 20 do
  1471. skmesh.Scale = skmesh.Scale + Vector3.new(.25,0,.25)
  1472. sk.Transparency = sk.Transparency + .05
  1473. swait()
  1474. end
  1475. sk:Remove()
  1476. end)()
  1477. swait()
  1478. end
  1479. introvog = false
  1480. hum.CameraOffset = Vector3.new(0,0,0)
  1481. end)()
  1482. coroutine.wrap(function()
  1483. for i = 1, 54 do
  1484. eaglemesh2.Scale = eaglemesh2.Scale + Vector3.new(0,1,1)
  1485. swait()
  1486. end
  1487. local eaglesound = Instance.new("Sound",eagle)
  1488. eaglesound.SoundId = "rbxassetid://923172614"
  1489. eaglesound.Volume = 10
  1490. eaglesound:Play()
  1491. removeuseless:AddItem(eaglesound,5)
  1492. for i = 1, 27 do
  1493. eaglemesh2.Scale = eaglemesh2.Scale + Vector3.new(2,0,0)
  1494. swait()
  1495. end
  1496. end)()
  1497. coroutine.wrap(function()
  1498. for i = 1, 59 do
  1499. eaglemesh.Scale = eaglemesh.Scale + Vector3.new(0,1,1)
  1500. swait()
  1501. end
  1502. for i = 1, 30 do
  1503. eaglemesh.Scale = eaglemesh.Scale + Vector3.new(2,0,0)
  1504. swait()
  1505. end
  1506. end)()
  1507. while wait() do
  1508. if introvog == false then break end
  1509. end
  1510. bleedattacking = true
  1511. g1 = Instance.new("BodyGyro", Root)
  1512. g1.D = 175
  1513. g1.P = 20000
  1514. g1.MaxTorque = Vector3.new(0,9000000,0)
  1515. coroutine.wrap(function()
  1516. while bleedattacking do
  1517. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.155)
  1518. swait()
  1519. end
  1520. removeuseless:AddItem(g1,.001)
  1521. end)()
  1522. coroutine.wrap(function()
  1523. local lnt = Instance.new("Sound",eagle)
  1524. lnt.SoundId = "rbxassetid://224339201"
  1525. lnt.Volume = 10
  1526. lnt:Play()
  1527. removeuseless:AddItem(lnt,5)
  1528. wait(.3)
  1529. local lnt2 = Instance.new("Sound",eagle)
  1530. lnt2.SoundId = "rbxassetid://1539349118"
  1531. lnt2.Volume = 10
  1532. lnt2:Play()
  1533. removeuseless:AddItem(lnt2,5)
  1534. end)()
  1535. for i = 1, 10 do
  1536. local bladeofjustice = Instance.new("Part",Torso)
  1537. bladeofjustice.Anchored = true
  1538. bladeofjustice.CanCollide = false
  1539. bladeofjustice.Name = "blad"
  1540. bladeofjustice.Transparency = 1
  1541. bladeofjustice.Size = Vector3.new(2,2,2)
  1542. bladeofjustice.BrickColor = BrickColor.new("Pastel violet")
  1543. bladeofjustice.Material = "Neon"
  1544. bladeofjustice.CFrame = eagle.CFrame * CFrame.new(math.random(-139,139),math.random(-39,39),math.random(-15,15))
  1545. local bladeofjusticemesh = Instance.new("SpecialMesh",bladeofjustice)
  1546. bladeofjusticemesh.MeshId = "rbxassetid://2624209310"
  1547. bladeofjusticemesh.Scale = Vector3.new(10,10,10)
  1548. local particlecolor = ColorSequence.new(Color3.new(255, 255, 255))
  1549. local blwav = Instance.new("Part",Torso)
  1550. blwav.Size = Vector3.new(1,1,1)
  1551. blwav.Shape = "Ball"
  1552. blwav.BrickColor = BrickColor.new("Dark blue")
  1553. blwav.CanCollide = false
  1554. blwav.CFrame = bladeofjustice.CFrame
  1555. blwav.Anchored = true
  1556. blwav.Material = "Neon"
  1557. blwav.Size = blwav.Size + Vector3.new(4,4,4)
  1558. blwav.Transparency = blwav.Transparency + .05
  1559. coroutine.wrap(function()
  1560. for i = 1, 5 do
  1561. local sk = Instance.new("Part",Torso)
  1562. sk.CanCollide = false
  1563. sk.Anchored = true
  1564. sk.BrickColor = BrickColor.new("White")
  1565. sk.Name = "sk"
  1566. sk.CFrame = bladeofjustice.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1567. local skmesh = Instance.new("SpecialMesh",sk)
  1568. skmesh.MeshId = "rbxassetid://662586858"
  1569. skmesh.Name = "wave"
  1570. skmesh.Scale = Vector3.new(.05,.005,.05)
  1571. for i = 1, 20 do
  1572. skmesh.Scale = skmesh.Scale + Vector3.new(.05,0,.05)
  1573. sk.Transparency = sk.Transparency + .05
  1574. swait()
  1575. end
  1576. sk:Remove()
  1577. end
  1578. end)()
  1579. coroutine.wrap(function()
  1580. for i = 1, 20 do
  1581. blwav.Size = blwav.Size + Vector3.new(10,10,10)
  1582. blwav.Transparency = blwav.Transparency + .05
  1583. bladeofjustice.Transparency = bladeofjustice.Transparency - .05
  1584. swait()
  1585. end
  1586. blwav:Remove()
  1587. end)()
  1588. local hitted = false
  1589. coroutine.wrap(function()
  1590. for i = 1, 300 do
  1591. if hitted then break end
  1592. swait()
  1593. end
  1594. if not hitted then
  1595. bladeofjustice:Remove()
  1596. end
  1597. end)()
  1598. bladeofjustice.Anchored = false
  1599. local bov = Instance.new("BodyVelocity",bladeofjustice)
  1600. bov.maxForce = Vector3.new(9999999,9999999,9999999)
  1601. bladeofjustice.CFrame = CFrame.new(bladeofjustice.Position,mouse.Hit.p)
  1602. bov.velocity = bladeofjustice.CFrame.lookVector*350
  1603. bladeofjustice.Touched:connect(function(hit)
  1604. if hit:IsA("Part") and hit.Parent ~= Character and hit.Name ~= "blad" and hit.Parent.Parent ~= Character then
  1605. if hitted then return end
  1606. hitted = true
  1607. bov:Remove()
  1608. bladeofjustice.Anchored = true
  1609. wait(2)
  1610. removeuseless:AddItem(bladeofjustice,5)
  1611. coroutine.wrap(function()
  1612. for i = 1, 20 do
  1613. hum.CameraOffset = Vector3.new(math.random(-3,3),math.random(-3,3),math.random(-3,3))
  1614. swait()
  1615. end
  1616. hum.CameraOffset = Vector3.new(0,0,0)
  1617. end)()
  1618. Hit = damagealll(144,bladeofjustice.Position)
  1619. for _,v in pairs(Hit) do
  1620. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1621. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1622. slachtoffer:TakeDamage(math.random(47,78))
  1623. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1624. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1625. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1626. vel.velocity = CFrame.new(bladeofjustice.Position,torso.Position).lookVector*330
  1627. removeuseless:AddItem(vel,.1)
  1628. end
  1629. end
  1630. local soundbox = Instance.new("Part",Torso)
  1631. soundbox.CFrame = bladeofjustice.CFrame
  1632. soundbox.Size = Vector3.new(1,1,1)
  1633. soundbox.Anchored = true
  1634. soundbox.CanCollide = false
  1635. soundbox.Transparency = 1
  1636. removeuseless:AddItem(soundbox,5)
  1637. wabam = Instance.new("Sound",soundbox)
  1638. wabam.SoundId = "rbxassetid://2444802791"
  1639. wabam.Volume = 8
  1640. wabam:Play()
  1641. bladeofjustice.Transparency = 1
  1642. pobox = Instance.new("Part",Torso)
  1643. pobox.Anchored = true
  1644. pobox.CanCollide = false
  1645. pobox.Size = Vector3.new(1,1,1)
  1646. pobox.CFrame = bladeofjustice.CFrame
  1647. pobox.Transparency = 1
  1648. for i = 1, 4 do
  1649. coroutine.wrap(function()
  1650. local shockwave = Instance.new("Part", Torso)
  1651. shockwave.Size = Vector3.new(1,1,1)
  1652. shockwave.CanCollide = false
  1653. shockwave.Anchored = true
  1654. shockwave.Transparency = .5
  1655. shockwave.BrickColor = BrickColor.new("White")
  1656. shockwave.CFrame = CFrame.new(pobox.Position)
  1657. local shockwavemesh = Instance.new("SpecialMesh", shockwave)
  1658. shockwavemesh.Scale = Vector3.new(7,3,7)
  1659. shockwavemesh.MeshId = "rbxassetid://20329976"
  1660. local shockwave2 = Instance.new("Part", Torso)
  1661. shockwave2.Size = Vector3.new(1,1,1)
  1662. shockwave2.CanCollide = false
  1663. shockwave2.Anchored = true
  1664. shockwave2.Transparency = .5
  1665. shockwave2.BrickColor = BrickColor.new("White")
  1666. shockwave2.CFrame = CFrame.new(pobox.Position)
  1667. local shockwavemesh2 = Instance.new("SpecialMesh", shockwave2)
  1668. shockwavemesh2.Scale = Vector3.new(5,3,5)
  1669. shockwavemesh2.MeshId = "rbxassetid://20329976"
  1670. for i = 1, 40 do
  1671. shockwave.CFrame = shockwave.CFrame * CFrame.Angles(math.rad(0),math.rad(0+15),0)
  1672. shockwave2.CFrame = shockwave2.CFrame * CFrame.Angles(math.rad(0),math.rad(0-8),0)
  1673. shockwave.Transparency = shockwave.Transparency + 0.025
  1674. shockwave2.Transparency = shockwave2.Transparency + 0.025
  1675. shockwavemesh2.Scale = shockwavemesh2.Scale + Vector3.new(18,6,18)
  1676. shockwavemesh.Scale = shockwavemesh.Scale + Vector3.new(18,3,18)
  1677. swait()
  1678. end
  1679. pobox:Remove()
  1680. shockwave:Remove()
  1681. shockwave2:Remove()
  1682. bladeofjustice:Remove()
  1683. end)()
  1684. coroutine.wrap(function()
  1685. local sk = Instance.new("Part",Torso)
  1686. sk.CanCollide = false
  1687. sk.Anchored = true
  1688. sk.BrickColor = BrickColor.new("White")
  1689. sk.Name = "sk"
  1690. sk.CFrame = bladeofjustice.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1691. local skmesh = Instance.new("SpecialMesh",sk)
  1692. skmesh.MeshId = "rbxassetid://662586858"
  1693. skmesh.Name = "wave"
  1694. skmesh.Scale = Vector3.new(.06,.001,.06)
  1695. for i = 1, 20 do
  1696. skmesh.Scale = skmesh.Scale + Vector3.new(.13,0,.13)
  1697. sk.Transparency = sk.Transparency + .05
  1698. swait()
  1699. end
  1700. sk:Remove()
  1701. end)()
  1702. coroutine.wrap(function()
  1703. local wshockwave = Instance.new("Part", Torso)
  1704. wshockwave.Size = Vector3.new(1,1,1)
  1705. wshockwave.CanCollide = false
  1706. wshockwave.Anchored = true
  1707. wshockwave.Transparency = .45
  1708. wshockwave.BrickColor = BrickColor.new("White")
  1709. wshockwave.CFrame = CFrame.new(bladeofjustice.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1710. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1711. wshockwavemesh.Scale = Vector3.new(10,.05,10)
  1712. wshockwavemesh.Name = "wswm"
  1713. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1714. for i = 1, 20 do
  1715. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(30,0,30)
  1716. wshockwave.Transparency = wshockwave.Transparency + .05
  1717. swait()
  1718. end
  1719. wshockwave:Remove()
  1720. end)()
  1721. coroutine.wrap(function()
  1722. local blwav = Instance.new("Part",Torso)
  1723. blwav.Size = Vector3.new(1,1,1)
  1724. blwav.Shape = "Ball"
  1725. blwav.BrickColor = BrickColor.new("Dark blue")
  1726. blwav.CanCollide = false
  1727. blwav.CFrame = bladeofjustice.CFrame
  1728. blwav.Anchored = true
  1729. blwav.Material = "Neon"
  1730. for i = 1, 20 do
  1731. blwav.Size = blwav.Size + Vector3.new(18,18,18)
  1732. blwav.Transparency = blwav.Transparency + .05
  1733. swait()
  1734. end
  1735. blwav:Remove()
  1736. end)()
  1737. swait()
  1738. end
  1739. end
  1740. end)
  1741. swait(10)
  1742. end
  1743. bleedattacking = false
  1744. eagleweld:Remove()
  1745. eagleweld2:Remove()
  1746. eagleweld3:Remove()
  1747. eagle.Anchored = true
  1748. eagle2.Anchored = true
  1749. eagle3.Anchored = true
  1750. coroutine.wrap(function()
  1751. for i = 1, 30 do
  1752. for i,v in pairs(lighttable) do
  1753. v.Transparency = v.Transparency + .05
  1754. end
  1755. swait()
  1756. end
  1757. for i,v in pairs(lighttable) do
  1758. v:Remove()
  1759. end
  1760. circlelocation:Remove()
  1761. lighttable = {}
  1762. end)()
  1763. for i = 1, 80 do
  1764. eagle.CFrame = eagle.CFrame * CFrame.new(0,0,-6) * CFrame.Angles(0,math.rad(0),math.rad(7))
  1765. eagle.Transparency = eagle.Transparency + .0125
  1766. eagle2.CFrame = eagle2.CFrame * CFrame.new(0,0,-4) * CFrame.Angles(0,math.rad(0),math.rad(-7))
  1767. eagle2.Transparency = eagle2.Transparency + .0125
  1768. eagle3.CFrame = eagle3.CFrame * CFrame.new(0,0,-3) * CFrame.Angles(0,math.rad(0),math.rad(7))
  1769. eagle3.Transparency = eagle3.Transparency + .0125
  1770. swait()
  1771. end
  1772. eagle:Remove()
  1773. eagle2:Remove()
  1774. eagle3:Remove()
  1775. ws = 90
  1776. trev = false
  1777. debounce = false
  1778. attacking = false
  1779. elseif Press=='r' then
  1780. if debounce then return end
  1781. debounce = true
  1782. attacking = true
  1783. ws = 8
  1784. coroutine.wrap(function()
  1785. g1 = Instance.new("BodyGyro", Root)
  1786. g1.D = 175
  1787. g1.P = 20000
  1788. g1.MaxTorque = Vector3.new(0,9000000,0)
  1789. for i = 1, 50 do
  1790. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  1791. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(5 * math.sin(sine/12)),math.rad(-0 * math.sin(sine/12)),math.rad(0)),.2)
  1792. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  1793. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  1794. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  1795. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(.5,2,0) * CFrame.Angles(math.rad(0),math.rad(20),math.rad(-140)),.3)
  1796. swait()
  1797. end
  1798. removeuseless:AddItem(g1,.001)
  1799. debounce = false
  1800. attacking = false
  1801. ws = 90
  1802. end)()
  1803. local lightofdeath = Instance.new("Part",Torso)
  1804. angelic = Instance.new("Sound",lightofdeath)
  1805. angelic.Pitch = 1
  1806. angelic.Volume = 10
  1807. angelic.SoundId = "rbxassetid://1837929946"
  1808. angelic:Play()
  1809. lightofdeath.Size = Vector3.new(1000000,25,25)
  1810. lightofdeath.CanCollide = false
  1811. lightofdeath.Material = "Neon"
  1812. lightofdeath.CFrame = CFrame.new(mouse.Hit.p) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(90))
  1813. lightofdeath.Shape = "Cylinder"
  1814. lightofdeath.Transparency = 1
  1815. lightofdeath.Anchored = true
  1816. local lightofdeath2 = Instance.new("Part",Torso)
  1817. lightofdeath2.Size = Vector3.new(1000000,50,50)
  1818. lightofdeath2.CanCollide = false
  1819. lightofdeath2.Material = "Neon"
  1820. lightofdeath2.CFrame = CFrame.new(lightofdeath.Position) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(90))
  1821. lightofdeath2.Shape = "Cylinder"
  1822. lightofdeath2.Transparency = 1
  1823. lightofdeath2.CanCollide = false
  1824. lightofdeath2.Anchored = true
  1825. local pobox = Instance.new("Part",Torso)
  1826. pobox.Size = Vector3.new(1,1,1)
  1827. pobox.Transparency = 1
  1828. pobox.Anchored = true
  1829. pobox.CanCollide = false
  1830. pobox.CFrame = CFrame.new(mouse.Hit.p)
  1831. coroutine.wrap(function()
  1832. for i = 1, 20 do
  1833. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,lightofdeath.Position),.4)
  1834. lightofdeath.Transparency = lightofdeath.Transparency - .025
  1835. lightofdeath2.Transparency = lightofdeath2.Transparency - .0125
  1836. swait()
  1837. end
  1838. end)()
  1839. for i = 1, 100 do
  1840. lightofdeath.Size = lightofdeath.Size - Vector3.new(0,.25,.25)
  1841. lightofdeath2.Size = lightofdeath2.Size - Vector3.new(0,.5,.5)
  1842. swait()
  1843. end
  1844. local soundbrick = Instance.new("Part",Torso)
  1845. soundbrick.Anchored = true
  1846. soundbrick.Size = Vector3.new(1,1,1)
  1847. soundbrick.CanCollide = false
  1848. soundbrick.Transparency = 1
  1849. soundbrick.CFrame = pobox.CFrame
  1850. removeuseless:AddItem(soundbrick,10)
  1851. local bam = Instance.new("Sound",soundbrick)
  1852. bam.SoundId = "rbxassetid://1354014962"
  1853. bam.Volume = 10
  1854. bam:Play()
  1855. Hit = damagealll(44,pobox.Position)
  1856. for _,v in pairs(Hit) do
  1857. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1858. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1859. slachtoffer:TakeDamage(math.random(42,68))
  1860. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1861. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1862. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1863. vel.velocity = CFrame.new(pobox.Position,torso.Position).lookVector*225
  1864. removeuseless:AddItem(vel,.1)
  1865. end
  1866. end
  1867. lightofdeath:Remove()
  1868. lightofdeath2:Remove()
  1869. for i = 1, 3 do
  1870. coroutine.wrap(function()
  1871. local shockwave = Instance.new("Part", Torso)
  1872. shockwave.Size = Vector3.new(1,1,1)
  1873. shockwave.CanCollide = false
  1874. shockwave.Anchored = true
  1875. shockwave.Transparency = .5
  1876. shockwave.BrickColor = BrickColor.new("White")
  1877. shockwave.CFrame = CFrame.new(pobox.Position)
  1878. local shockwavemesh = Instance.new("SpecialMesh", shockwave)
  1879. shockwavemesh.Scale = Vector3.new(7,3,7)
  1880. shockwavemesh.MeshId = "rbxassetid://20329976"
  1881. local shockwave2 = Instance.new("Part", Torso)
  1882. shockwave2.Size = Vector3.new(1,1,1)
  1883. shockwave2.CanCollide = false
  1884. shockwave2.Anchored = true
  1885. shockwave2.Transparency = .5
  1886. shockwave2.BrickColor = BrickColor.new("White")
  1887. shockwave2.CFrame = CFrame.new(pobox.Position)
  1888. local shockwavemesh2 = Instance.new("SpecialMesh", shockwave2)
  1889. shockwavemesh2.Scale = Vector3.new(5,3,5)
  1890. shockwavemesh2.MeshId = "rbxassetid://20329976"
  1891. for i = 1, 40 do
  1892. shockwave.CFrame = shockwave.CFrame * CFrame.Angles(math.rad(0),math.rad(0+15),0)
  1893. shockwave2.CFrame = shockwave2.CFrame * CFrame.Angles(math.rad(0),math.rad(0-8),0)
  1894. shockwave.Transparency = shockwave.Transparency + 0.025
  1895. shockwave2.Transparency = shockwave2.Transparency + 0.025
  1896. shockwavemesh2.Scale = shockwavemesh2.Scale + Vector3.new(9,1.5,9)
  1897. shockwavemesh.Scale = shockwavemesh.Scale + Vector3.new(9,1.5,9)
  1898. swait()
  1899. end
  1900. shockwave:Remove()
  1901. shockwave2:Remove()
  1902. end)()
  1903. coroutine.wrap(function()
  1904. local sk = Instance.new("Part",Torso)
  1905. sk.CanCollide = false
  1906. sk.Anchored = true
  1907. sk.BrickColor = BrickColor.new("White")
  1908. sk.Name = "sk"
  1909. sk.CFrame = pobox.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1910. local skmesh = Instance.new("SpecialMesh",sk)
  1911. skmesh.MeshId = "rbxassetid://662586858"
  1912. skmesh.Name = "wave"
  1913. skmesh.Scale = Vector3.new(.01,.001,.01)
  1914. for i = 1, 20 do
  1915. skmesh.Scale = skmesh.Scale + Vector3.new(.07,0,.07)
  1916. sk.Transparency = sk.Transparency + .05
  1917. swait()
  1918. end
  1919. sk:Remove()
  1920. end)()
  1921. coroutine.wrap(function()
  1922. local wshockwave = Instance.new("Part", Torso)
  1923. wshockwave.Size = Vector3.new(1,1,1)
  1924. wshockwave.CanCollide = false
  1925. wshockwave.Anchored = true
  1926. wshockwave.Transparency = .45
  1927. wshockwave.BrickColor = BrickColor.new("White")
  1928. wshockwave.CFrame = CFrame.new(pobox.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1929. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1930. wshockwavemesh.Scale = Vector3.new(.1,.005,.1)
  1931. wshockwavemesh.Name = "wswm"
  1932. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1933. removeuseless:AddItem(wshockwave,2)
  1934. for i = 1, 20 do
  1935. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(9.5,0,9.5)
  1936. wshockwave.Transparency = wshockwave.Transparency + .05
  1937. swait()
  1938. end
  1939. wshockwave:Remove()
  1940. end)()
  1941. local boom = Instance.new("Part",Torso)
  1942. boom.Size = Vector3.new(6,6,6)
  1943. boom.Transparency = .1
  1944. boom.Shape = "Ball"
  1945. boom.BrickColor = BrickColor.new("White")
  1946. boom.CanCollide = false
  1947. boom.Anchored = true
  1948. boom.CFrame = CFrame.new(pobox.Position)
  1949. boom.Material = "Neon"
  1950. coroutine.wrap(function()
  1951. for i = 1, 20 do
  1952. boom.Size = boom.Size + Vector3.new(7,7,7)
  1953. boom.Transparency = boom.Transparency + .05
  1954. swait()
  1955. end
  1956. boom:Remove()
  1957. end)()
  1958. swait()
  1959. end
  1960. end
  1961. end)
  1962.  
  1963. checks1 = coroutine.wrap(function() -------Checks
  1964. while true do
  1965. if Root.Velocity.Magnitude < 5 and running == false then
  1966. position = "Idle"
  1967. elseif Root.Velocity.Magnitude > 5 and running == false then
  1968. position = "Walking"
  1969. else
  1970. end
  1971. wait()
  1972. end
  1973. end)
  1974. checks1()
  1975.  
  1976. function ray(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  1977. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  1978. end
  1979.  
  1980. function ray2(StartPos, EndPos, Distance, Ignore)
  1981. local DIRECTION = CFrame.new(StartPos,EndPos).lookVector
  1982. return ray(StartPos, DIRECTION, Distance, Ignore)
  1983. end
  1984.  
  1985. OrgnC0 = Neck.C0
  1986. local movelimbs = coroutine.wrap(function()
  1987. while RunSrv.RenderStepped:wait() do
  1988. TrsoLV = Torso.CFrame.lookVector
  1989. Dist = nil
  1990. Diff = nil
  1991. if not MseGuide then
  1992. print("Failed to recognize")
  1993. else
  1994. local _, Point = Workspace:FindPartOnRay(Ray.new(Head.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  1995. Dist = (Head.CFrame.p-Point).magnitude
  1996. Diff = Head.CFrame.Y-Point.Y
  1997. local _, Point2 = Workspace:FindPartOnRay(Ray.new(LeftArm.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  1998. Dist2 = (LeftArm.CFrame.p-Point).magnitude
  1999. Diff2 = LeftArm.CFrame.Y-Point.Y
  2000. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2001. Neck.C0 = Neck.C0:lerp(OrgnC0*CFrame.Angles((math.tan(Diff/Dist)*1), 0, (((Head.CFrame.p-Point).Unit):Cross(Torso.CFrame.lookVector)).Y*1), .1)
  2002. end
  2003. end
  2004. end)
  2005. movelimbs()
  2006. immortal = {}
  2007. for i,v in pairs(Character:GetDescendants()) do
  2008. if v:IsA("BasePart") and v.Name ~= "lmagic" and v.Name ~= "rmagic" then
  2009. if v ~= Root and v ~= Torso and v ~= Head and v ~= RightArm and v ~= LeftArm and v ~= RightLeg and v.Name ~= "lmagic" and v.Name ~= "rmagic" and v ~= LeftLeg then
  2010. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  2011. end
  2012. table.insert(immortal,{v,v.Parent,v.Material,v.Color,v.Transparency})
  2013. elseif v:IsA("JointInstance") then
  2014. table.insert(immortal,{v,v.Parent,nil,nil,nil})
  2015. end
  2016. end
  2017. for e = 1, #immortal do
  2018. if immortal[e] ~= nil then
  2019. local STUFF = immortal[e]
  2020. local PART = STUFF[1]
  2021. local PARENT = STUFF[2]
  2022. local MATERIAL = STUFF[3]
  2023. local COLOR = STUFF[4]
  2024. local TRANSPARENCY = STUFF[5]
  2025. if levitate then
  2026. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= eyo1 and PART.Name ~= eyo2 and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  2027. PART.Material = MATERIAL
  2028. PART.Color = COLOR
  2029. PART.Transparency = TRANSPARENCY
  2030. end
  2031. PART.AncestryChanged:connect(function()
  2032. PART.Parent = PARENT
  2033. end)
  2034. else
  2035. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  2036. PART.Material = MATERIAL
  2037. PART.Color = COLOR
  2038. PART.Transparency = TRANSPARENCY
  2039. end
  2040. PART.AncestryChanged:connect(function()
  2041. PART.Parent = PARENT
  2042. end)
  2043. end
  2044. end
  2045. end
  2046. function immortality()
  2047. for e = 1, #immortal do
  2048. if immortal[e] ~= nil then
  2049. local STUFF = immortal[e]
  2050. local PART = STUFF[1]
  2051. local PARENT = STUFF[2]
  2052. local MATERIAL = STUFF[3]
  2053. local COLOR = STUFF[4]
  2054. local TRANSPARENCY = STUFF[5]
  2055. if PART.ClassName == "Part" and PART == Root then
  2056. PART.Material = MATERIAL
  2057. PART.Color = COLOR
  2058. PART.Transparency = TRANSPARENCY
  2059. end
  2060. if PART.Parent ~= PARENT then
  2061. hum:Remove()
  2062. PART.Parent = PARENT
  2063. hum = Instance.new("Humanoid",Character)
  2064. if levitate then
  2065. eyo1:Remove()
  2066. eyo2:Remove()
  2067. end
  2068. hum.Name = "noneofurbusiness"
  2069. end
  2070. end
  2071. end
  2072. end
  2073. coroutine.wrap(function()
  2074. while true do
  2075. if hum.Health < .1 then
  2076. immortality()
  2077. end
  2078. wait()
  2079. end
  2080. end)()
  2081.  
  2082. leftlocation = Instance.new("Part",LeftArm)
  2083. leftlocation.Size = Vector3.new(1,1,1)
  2084. leftlocation.Transparency = 1
  2085. leftlocationweld = weldBetween(leftlocation,LeftArm)
  2086. leftlocationweld.C0 = CFrame.new(0,1.2,0)
  2087. rightlocation = Instance.new("Part",RightArm)
  2088. rightlocation.Size = Vector3.new(1,1,1)
  2089. rightlocation.Transparency = 1
  2090. rightlocationweld = weldBetween(rightlocation,RightArm)
  2091. rightlocationweld.C0 = CFrame.new(0,1.2,0)
  2092.  
  2093. coroutine.wrap(function()
  2094. while true do
  2095. hpheight = 4 + 1 * math.sin(sine/12)
  2096. hum.HipHeight = hpheight
  2097. swait()
  2098. end
  2099. end)()
  2100.  
  2101. local anims = coroutine.wrap(function()
  2102. while true do
  2103. settime = 0.05
  2104. sine = sine + change
  2105. if position == "Walking" and attacking == false and running == false then
  2106. change = .5
  2107. walking = true
  2108. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  2109. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.25)
  2110. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.25)
  2111. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(.98,-.15,.5) * CFrame.Angles(math.rad(-70 - 5 * math.sin(sine/12)),math.rad(40 - 5 * math.sin(sine/12)),math.rad(-20)),.25)
  2112. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.6, 0.5 - .1 * -math.sin(sine/12), 0) * CFrame.Angles(math.rad(35 - 2 * math.sin(sine/12)), math.rad(0), math.rad(-25 - 5 * math.sin(sine/12))), 0.25)
  2113. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-41 - 1 * math.sin(sine/9)), math.rad(0 + 0 * math.cos(sine/8)), math.rad(0) + Root.RotVelocity.Y / 9, math.cos(10 * math.cos(sine/10))), 0.25)
  2114. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.54, 2 + .02 * math.sin(sine/12), 0.2 + .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(25 + 5 * math.sin(sine/12)), math.rad(-20), math.rad(0)), 0.25)
  2115. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.54, 2 + .02 * math.sin(sine/12), 0.2 + .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(25 + 5 * math.sin(sine/12)), math.rad(20), math.rad(0)), 0.25)
  2116. elseif position == "Idle" and attacking == false and running == false then
  2117. change = .5
  2118. haloweld.C0 = haloweld.C0:lerp(CFrame.new(0,-4.5 + .5 * math.sin(sine/12),-2) * CFrame.Angles(math.rad(8 * math.sin(sine/12)),math.rad(11 * math.sin(sine/16)),0),.4)
  2119. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(5 * math.sin(sine/12)),math.rad(2 * math.sin(sine/16)),math.rad(0)),.2)
  2120. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(math.rad(0),math.rad(12),math.rad(-40 - 6 * math.sin(sine/12))),.2)
  2121. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.3,1.05 + .15 * math.sin(sine/12),.2) * CFrame.Angles(0,math.rad(-12),math.rad(40 + 6 * math.sin(sine/12))),.2)
  2122. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-.3 + .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9 - 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(-9 - 5 * math.sin(sine/12))),.2)
  2123. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(.3 - .1 * math.sin(sine/12), 1.95, .15 - .1 * math.sin(sine/12)) * CFrame.Angles(math.rad(9- 5 * math.sin(sine/12)),math.rad(2 + 1 * math.sin(sine/12)),math.rad(9 + 5 * math.sin(sine/12))),.2)
  2124. end
  2125. swait()
  2126. end
  2127. end)
  2128. anims()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement