Advertisement
heyoooooooooo

Untitled

Jan 23rd, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 66.44 KB | None | 0 0
  1. -- Created by Nebula_Zorua --
  2. -- The Angel --
  3. -- A higher being.. Here to smite you evil-doers! --
  4. -- Discord: Nebula the Zorua#6969
  5. -- Youtube: https://www.youtube.com/channel/UCo9oU9dCw8jnuVLuy4_SATA
  6. wait(1/60)
  7.  
  8. --// Initializing \\--
  9. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  10. local Plrs = S.Players
  11. local Plr = Plrs.LocalPlayer
  12. local Char = Plr.Character
  13. local Hum = Char:FindFirstChildOfClass'Humanoid'
  14. local RArm = Char["Right Arm"]
  15. local LArm = Char["Left Arm"]
  16. local RLeg = Char["Right Leg"]
  17. local LLeg = Char["Left Leg"]
  18. local Root = Char:FindFirstChild'HumanoidRootPart'
  19. local Trans = RArm.Transparency = 1
  20. local Transs = LArm.Transparency = 1
  21. local Transss = RLeg.Transparency = 1
  22. local Transsss = LLeg.Transparency = 1
  23. local Transssss = Head.Transparency = 1
  24. local Ack = Instance.new("SpecialMesh")
  25. Ack.MeshId = 'rbxasseit://4125549274'
  26. Ack.TextureId = 'rbxasseit://4625484724'
  27. Ack.Scale = Vector3.new(3,3,3)
  28. Ack.Parent = Torso
  29. Ack.Name = Felipee
  30. local Torso = Char.Torso
  31. local Head = Char.Head
  32. local NeutralAnims = true
  33. local Attack = false
  34. local BloodPuddles = {}
  35. local Effects = {}
  36. local Debounces = {Debounces={}}
  37. local Mouse = Plr:GetMouse()
  38. local Hit = {}
  39. local Sine = 0
  40. local Change = 1
  41. local PulseTime = 0
  42. local DustTime = 0
  43.  
  44. local Rooted = false
  45. --// Debounce System \\--
  46.  
  47. function Debounces:New(name,cooldown)
  48. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  49. setmetatable(aaaaa,{__index = Debounces})
  50. Debounces.Debounces[name] = aaaaa
  51. return aaaaa
  52. end
  53.  
  54. function Debounces:Use(overrideUsable)
  55. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  56. if(self.Usable or overrideUsable)then
  57. self.Usable = false
  58. self.CoolingDown = true
  59. local LastUse = time()
  60. self.LastUse = LastUse
  61. delay(self.Cooldown or 2,function()
  62. if(self.LastUse == LastUse)then
  63. self.CoolingDown = false
  64. self.Usable = true
  65. end
  66. end)
  67. end
  68. end
  69.  
  70. function Debounces:Get(name)
  71. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  72. for i,v in next, Debounces.Debounces do
  73. if(i == name)then
  74. return v;
  75. end
  76. end
  77. end
  78.  
  79. function Debounces:GetProgressPercentage()
  80. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  81. if(self.CoolingDown and not self.Usable)then
  82. return math.max(
  83. math.floor(
  84. (
  85. (time()-self.LastUse)/self.Cooldown or 2
  86. )*100
  87. )
  88. )
  89. else
  90. return 100
  91. end
  92. end
  93.  
  94. --// Shortcut Variables \\--
  95. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  96. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  97. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  98. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG = function(min,max,div) return math.random(min,max)/(div or 1) end,MRS=math.randomseed,H=math.huge,RRNG = function(min,max,div) return math.rad(math.random(min,max)/(div or 1)) end}
  99. local R3 = {N=Region3.new}
  100. local De = S.Debris
  101. local WS = workspace
  102. local Lght = S.Lighting
  103. local RepS = S.ReplicatedStorage
  104. local IN = Instance.new
  105. --// Instance Creation Functions \\--
  106.  
  107. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  108. local Sound = IN("Sound")
  109. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  110. Sound.Pitch = pitch or 1
  111. Sound.Volume = volume or 1
  112. Sound.Looped = looped or false
  113. if(autoPlay)then
  114. coroutine.wrap(function()
  115. repeat wait() until Sound.IsLoaded
  116. Sound.Playing = autoPlay or false
  117. end)()
  118. end
  119. if(not looped and effect)then
  120. Sound.Stopped:connect(function()
  121. Sound.Volume = 0
  122. Sound:destroy()
  123. end)
  124. elseif(effect)then
  125. warn("Sound can't be looped and a sound effect!")
  126. end
  127. Sound.Parent =parent or Torso
  128. return Sound
  129. end
  130. function Part(parent,color,material,size,cframe,anchored,cancollide)
  131. local part = IN("Part")
  132. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  133. part.Material = material or Enum.Material.SmoothPlastic
  134. part.TopSurface,part.BottomSurface=10,10
  135. part.Size = size or V3.N(1,1,1)
  136. part.CFrame = cframe or CF.N(0,0,0)
  137. part.Anchored = anchored or true
  138. part.CanCollide = cancollide or false
  139. part.Parent = parent or Char
  140. return part
  141. end
  142. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  143. local class = "SpecialMesh"
  144. if(meshtype == Enum.MeshType.Brick)then class = 'BlockMesh' end
  145.  
  146. local part = IN(class)
  147. if(class == "SpecialMesh")then
  148. part.MeshId = meshid or ""
  149. part.TextureId = textid or ""
  150. part.MeshType = meshtype or Enum.MeshType.Sphere
  151. end
  152. part.Scale = scale or V3.N(1,1,1)
  153. part.Offset = offset or V3.N(0,0,0)
  154.  
  155. part.Parent = parent
  156. return part
  157. end
  158.  
  159. NewInstance = function(instance,parent,properties)
  160. local inst = Instance.new(instance,parent)
  161. if(properties)then
  162. for i,v in next, properties do
  163. pcall(function() inst[i] = v end)
  164. end
  165. end
  166. return inst;
  167. end
  168.  
  169.  
  170.  
  171. --// Extended ROBLOX tables \\--
  172. local Instance = setmetatable({ClearChildrenOfClass = function(where,class,recursive) local children = (recursive and where:GetDescendants() or where:GetChildren()) for _,v in next, children do if(v:IsA(class))then v:destroy();end;end;end},{__index = Instance})
  173. --// Customization \\--
  174.  
  175. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  176. local Remove_Hats = true
  177. local Remove_Clothing = true
  178. local PlayerSize = 1
  179. local DamageColor = BrickColor.new'New Yeller'
  180. local MusicID = 835120625
  181.  
  182. --// Weapon and GUI creation, and Character Customization \\--
  183.  
  184. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  185. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  186. Instance.ClearChildrenOfClass(Char,"Decal",true)
  187. local Effects = IN("Folder",Char)
  188. Effects.Name = "Effects"
  189.  
  190. local Halo = IN("Model",Char)
  191. Halo.Name = "Halo"
  192.  
  193. local Wings = IN("Model",Char)
  194. Wings.Name = "Wings"
  195.  
  196. Hum.DisplayDistanceType = 'None'
  197.  
  198. local naeeym2 = IN("BillboardGui",Char)
  199. naeeym2.AlwaysOnTop = true
  200. naeeym2.Size = UDim2.new(5,35,2,15)
  201. naeeym2.StudsOffset = V3.N(0,2.5,0)
  202. naeeym2.Adornee = Char.Head
  203. naeeym2.Name = "Name"
  204. naeeym2.PlayerToHideFrom = Plr
  205. local tecks2 = IN("TextLabel",naeeym2)
  206. tecks2.BackgroundTransparency = 1
  207. tecks2.TextScaled = true
  208. tecks2.BorderSizePixel = 0
  209. tecks2.Text = "The Angel"
  210. tecks2.Font = Enum.Font.Bodoni
  211. tecks2.TextSize = 30
  212. tecks2.TextStrokeTransparency = 0
  213. tecks2.TextColor3 = C3.N(0,0,0)
  214. tecks2.TextStrokeColor3 = C3.N(1,1,0)
  215. tecks2.Size = UDim2.new(1,0,0.5,0)
  216. tecks2.Parent = naeeym2
  217.  
  218. pcall(function()
  219. Char.LeftWing:destroy()
  220. Char.ReaperShadowHead:destroy()
  221. end)
  222.  
  223. for _,v in next, Char:children() do
  224. if(v:IsA'BasePart' and v.Transparency < 1 and v ~= Head)then
  225. NewInstance("SelectionBox",v,{Adornee=v,LineThickness=.01,Color3=C3.N(1,1,0)})
  226. if(v ~= Head)then IN("BlockMesh",v) end
  227. end
  228. end
  229.  
  230. local HaloHandle = NewInstance("Part",Halo,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  231. local WingHandle = NewInstance("Part",Wings,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  232.  
  233. for i = 1, 360,5 do
  234. local part = NewInstance("Part",Halo,{BrickColor=BrickColor.new"New Yeller",Material=Enum.Material.Neon,Size=V3.N(0.69,0.1,0.3),Anchored=false,CanCollide=false,Locked=true,Transparency=.6})
  235. local weld = NewInstance("Weld",part,{Part0=HaloHandle,Part1=part,C0=CF.A(0,M.R(i),0)*CF.N(0,0,-.6)})
  236. end
  237.  
  238. if(PlayerSize ~= 1)then
  239. for _,v in next, Char:GetDescendats() do
  240. if(v:IsA'BasePart')then
  241. v.Size = v.Size * PlayerSize
  242. end
  243. end
  244. end
  245.  
  246. local Music = Sound(Char,MusicID,1,3,true,false,true)
  247. Music.Name = 'Music'
  248.  
  249. -- Wing Creation
  250. local FeatherWelds = {{},{}}
  251. local inc = 1
  252. for aa = 1, 4 do
  253. local lastFeather;
  254. FeatherWelds[1][aa] = {}
  255. for i = 1, 4+inc do
  256. local feather = NewInstance("Part",Wings,{CustomPhysicalProperties=PhysicalProperties.new(0,0,0,0,0),TopSurface=10,BottomSurface=10,Size=V3.N(2,.5,.75),CanCollide=false,Color=C3.N(1,1,1)})
  257. NewInstance("SpecialMesh",feather,{MeshType=Enum.MeshType.Sphere})
  258. if(lastFeather)then
  259. table.insert(FeatherWelds[1][aa],NewInstance("Weld",feather,{Part0=lastFeather,Part1=feather,C0=CF.N(.5,.25,0)*CF.A(0,0,M.R(-5))}))
  260. else
  261. table.insert(FeatherWelds[1][aa],NewInstance("Weld",feather,{Part0=feather,Part1=WingHandle,C0=CF.N(-2,aa/4,0)*CF.A(0,0,M.R(-5))}))
  262. end
  263. lastFeather = feather
  264. end
  265. inc = inc + 1
  266. end
  267.  
  268. local inc = 1
  269. for aa = 1, 4 do
  270. local lastFeather;
  271. FeatherWelds[2][aa] = {}
  272. for i = 1, 4+inc do
  273. local feather = NewInstance("Part",Wings,{CustomPhysicalProperties=PhysicalProperties.new(0,0,0,0,0),TopSurface=10,BottomSurface=10,Size=V3.N(2,.5,.75),CanCollide=false,Color=C3.N(1,1,1)})
  274. NewInstance("SpecialMesh",feather,{MeshType=Enum.MeshType.Sphere})
  275. if(lastFeather)then
  276. table.insert(FeatherWelds[2][aa],NewInstance("Weld",feather,{Part0=lastFeather,Part1=feather,C0=CF.N(-.5,.25,0)*CF.A(0,0,M.R(5))}))
  277. else
  278. table.insert(FeatherWelds[2][aa],NewInstance("Weld",feather,{Part0=feather,Part1=WingHandle,C0=CF.N(2,aa/4,0)*CF.A(0,0,M.R(5))}))
  279. end
  280. lastFeather = feather
  281. end
  282. inc = inc + 1
  283. end
  284.  
  285. --// Stop animations \\--
  286. for _,v in next, Hum:GetPlayingAnimationTracks() do
  287. v:Stop();
  288. end
  289.  
  290. pcall(game.Destroy,Char:FindFirstChild'Animate')
  291. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  292.  
  293. --// Joints \\--
  294.  
  295. local LS = NewInstance('Motor',Char,{Part0=Torso,Part1=LArm,C0 = CF.N(-1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  296. local RS = NewInstance('Motor',Char,{Part0=Torso,Part1=RArm,C0 = CF.N(1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  297. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  298. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  299. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  300. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  301. local HW = NewInstance('Motor',Char,{Part0=Head,Part1=HaloHandle,C0=CF.N(0,2,0)})
  302. local WW = NewInstance('Motor',Char,{Part0=Torso,Part1=WingHandle,C0=CF.N(0,1.5,1.5)})
  303.  
  304. local LSC0 = LS.C0
  305. local RSC0 = RS.C0
  306. local NKC0 = NK.C0
  307. local LHC0 = LH.C0
  308. local RHC0 = RH.C0
  309. local RJC0 = RJ.C0
  310.  
  311. --// Artificial HB \\--
  312.  
  313. local ArtificialHB = IN("BindableEvent", script)
  314. ArtificialHB.Name = "Heartbeat"
  315.  
  316. script:WaitForChild("Heartbeat")
  317.  
  318. local tf = 0
  319. local allowframeloss = false
  320. local tossremainder = false
  321. local lastframe = tick()
  322. local frame = 1/Frame_Speed
  323. ArtificialHB:Fire()
  324.  
  325. game:GetService("RunService").Heartbeat:connect(function(s, p)
  326. tf = tf + s
  327. if tf >= frame then
  328. if allowframeloss then
  329. script.Heartbeat:Fire()
  330. lastframe = tick()
  331. else
  332. for i = 1, math.floor(tf / frame) do
  333. ArtificialHB:Fire()
  334. end
  335. lastframe = tick()
  336. end
  337. if tossremainder then
  338. tf = 0
  339. else
  340. tf = tf - frame * math.floor(tf / frame)
  341. end
  342. end
  343. end)
  344.  
  345. function swait(num)
  346. if num == 0 or num == nil then
  347. ArtificialHB.Event:wait()
  348. else
  349. for i = 0, num do
  350. ArtificialHB.Event:wait()
  351. end
  352. end
  353. end
  354.  
  355.  
  356. --// Effect Function(s) \\--
  357.  
  358.  
  359. function Chat(text)
  360. --if(game.PlaceId ~= 843468296)then
  361. coroutine.wrap(function()
  362. if(Char:FindFirstChild'ChatGUI')then Char.ChatGUI:destroy() end
  363. local BBG = NewInstance("BillboardGui",Char,{Name='ChatGUI',Size=UDim2.new(0,100,0,40),StudsOffset=V3.N(0,3,0),Adornee=Head})
  364. local Txt = NewInstance("TextLabel",BBG,{Text = "",BackgroundTransparency=1,TextColor3=C3.N(1,1,0),BorderSizePixel=0,Font=Enum.Font.Garamond,TextSize=30,TextStrokeTransparency=1,Size=UDim2.new(1,0,.5,0)})
  365. local SND = Sound(Head,418252437,M.RNG(9,11)/10,3,false,false,true)
  366. for i = 1, #text do
  367. delay(i/25, function()
  368. SND.Pitch = M.RNG(9,11)/10
  369. SND.Volume = 3
  370. SND.Parent = Effects
  371. SND:Play()
  372. Txt.Text = text:sub(1,i)
  373. end)
  374. end
  375. delay((#text/25)+2, function()
  376. Txt.Text = ""
  377. for i = 1, #text do
  378. Txt.Text = Txt.Text.. string.char(M.RNG(0,126))
  379. end
  380. end)
  381. delay((#text/25)+3, function()
  382. BBG:destroy()
  383. SND:destroy()
  384. end)
  385. end)()
  386. --else
  387. -- Chat2(text)
  388. --end
  389. end
  390.  
  391. function Chat2(text)
  392. coroutine.wrap(function()
  393. if(Char:FindFirstChild'ChatGUI')then Char.ChatGUI:destroy() end
  394. local BBG = NewInstance("BillboardGui",Char,{Name='ChatGUI',Size=UDim2.new(0,100,0,40),StudsOffset=V3.N(0,3,0),Adornee=Head})
  395. local offset = 0;
  396. local xsize = 0;
  397. for i = 1, #text do
  398. offset = offset - 16
  399. xsize = xsize + 32
  400. delay(i/25, function()
  401. local Txt = NewInstance("TextLabel",BBG,{Text = text:sub(i,i),Position=UDim2.new(0,offset,0,0),BackgroundTransparency=1,TextColor3=C3.N(1,1,0),BorderSizePixel=0,Font=Enum.Font.Garamond,TextSize=40,TextStrokeTransparency=1,Size=UDim2.new(1,0,.5,0)})
  402. offset = offset + 32
  403. while Txt and Txt.Parent do
  404. Txt.Rotation = M.RNG(-15,15)
  405. swait()
  406. end
  407. end)
  408. end
  409. BBG.Size = UDim2.new(0,xsize,0,40)
  410. delay((#text/25)+3, function()
  411. for _,v in next, BBG:children() do
  412. pcall(function() v.Text = string.char(M.RNG(0,126)) end)
  413. end
  414. end)
  415. delay((#text/25)+4, function()
  416. BBG:destroy()
  417. end)
  418. end)()
  419. end
  420.  
  421.  
  422. function Transparency(trans)
  423. for _,v in next, Char:children() do
  424. if(v:IsA'BasePart' and v ~= Root and v ~= HaloHandle and v ~= WingHandle)then
  425. v.Transparency = trans
  426. local sbox = v:findFirstChild'SelectionBox'
  427. if(sbox)then sbox.Transparency=trans end
  428. elseif(v:IsA'Accessory' and v:FindFirstChild'Handle')then
  429. v.Handle.Transparency=trans
  430. end
  431. end
  432. for _,v in next, Wings:children() do
  433. if(v:IsA'BasePart' and v ~= WingHandle)then
  434. v.Transparency = trans
  435. local sbox = v:findFirstChild'SelectionBox'
  436. if(sbox)then sbox.Transparency=trans end
  437. end
  438. end
  439. for _,v in next, Halo:children() do
  440. if(v:IsA'BasePart' and v ~= HaloHandle)then
  441. v.Transparency = trans
  442. local sbox = v:findFirstChild'SelectionBox'
  443. if(sbox)then sbox.Transparency=trans end
  444. end
  445. end
  446. end
  447.  
  448. local FXTable = {}
  449.  
  450. function Bezier(startpos, pos2, pos3, endpos, t)
  451. local A = startpos:lerp(pos2, t)
  452. local B = pos2:lerp(pos3, t)
  453. local C = pos3:lerp(endpos, t)
  454. local lerp1 = A:lerp(B, t)
  455. local lerp2 = B:lerp(C, t)
  456. local cubic = lerp1:lerp(lerp2, t)
  457. return cubic
  458. end
  459.  
  460. function Tween(obj,props,time,easing,direction,repeats,backwards)
  461. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  462. local tween = S.TweenService:Create(obj, info, props)
  463.  
  464. tween:Play()
  465. end
  466.  
  467. coroutine.resume(coroutine.create(function()
  468. while true do
  469. for i = 1, #FXTable do
  470. local data = FXTable[i]
  471. if(data)then
  472. local Frame = data.Frame
  473. local FX = data.Effect or 'ResizeAndFade'
  474. local Parent = data.Parent or Effects
  475. local Color = data.Color or C3.N(0,0,0)
  476. local Size = data.Size or V3.N(1,1,1)
  477. local MoveDir = data.MoveDirection or nil
  478. local MeshData = data.Mesh or nil
  479. local SndData = data.Sound or nil
  480. local Frames = data.Frames or 45
  481. local CFra = data.CFrame or Torso.CFrame
  482. local Settings = data.FXSettings or {}
  483. local Prt,Msh,Snd = data.Part,data.Mesh,data.Sound
  484. local grow = data.Grow
  485.  
  486. local MoveSpeed = nil;
  487. if(MoveDir)then
  488. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  489. end
  490. if(FX ~= 'Arc')then
  491. Frame = Frame + 1
  492. if(FX == "Fade")then
  493. Prt.Transparency = (Frame/Frames)
  494. elseif(FX == "Resize")then
  495. if(not Settings.EndSize)then
  496. Settings.EndSize = V3.N(0,0,0)
  497. end
  498. if(Settings.EndIsIncrement)then
  499. if(Msh)then
  500. Msh.Scale = Msh.Scale + Settings.EndSize
  501. else
  502. Prt.Size = Prt.Size + Settings.EndSize
  503. end
  504. else
  505. if(Msh)then
  506. Msh.Scale = Msh.Scale - grow/Frames
  507. else
  508. Prt.Size = Prt.Size - grow/Frames
  509. end
  510. end
  511. elseif(FX == "ResizeAndFade")then
  512. if(not Settings.EndSize)then
  513. Settings.EndSize = V3.N(0,0,0)
  514. end
  515. if(Settings.EndIsIncrement)then
  516. if(Msh)then
  517. Msh.Scale = Msh.Scale + Settings.EndSize
  518. else
  519. Prt.Size = Prt.Size + Settings.EndSize
  520. end
  521. else
  522. if(Msh)then
  523. Msh.Scale = Msh.Scale - grow/Frames
  524. else
  525. Prt.Size = Prt.Size - grow/Frames
  526. end
  527. end
  528. Prt.Transparency = (Frame/Frames)
  529. end
  530. if(Settings.RandomizeCFrame)then
  531. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  532. end
  533. if(MoveDir and MoveSpeed)then
  534. local Orientation = Prt.Orientation
  535. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  536. Prt.Orientation = Orientation
  537. end
  538. if(Prt.Transparency >= 1 or Frame >= Frames)then
  539. Prt:destroy()
  540. table.remove(FXTable,i)
  541. else
  542. data.Frame = Frame
  543. end
  544. else
  545. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  546. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  547. if(start and endP)then
  548. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  549. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  550. Frame = Frame + Settings.Speed or 0.01
  551. if(Settings.Home)then
  552. endP = Settings.Home.CFrame
  553. end
  554. Prt.CFrame = Bezier(start, quarter, threequarter, endP, i)
  555. if(Prt.Transparency >= 1 or Frame >= Frames)then
  556. if(Settings.RemoveOnGoal)then
  557. Prt:destroy()
  558. end
  559. end
  560. else
  561.  
  562. end
  563. end
  564. end
  565. end
  566. swait()
  567. end
  568. end))
  569.  
  570. function Effect(data)
  571. local FX = data.Effect or 'ResizeAndFade'
  572. local Parent = data.Parent or Effects
  573. local Color = data.Color or C3.N(0,0,0)
  574. local Size = data.Size or V3.N(1,1,1)
  575. local MoveDir = data.MoveDirection or nil
  576. local MeshData = data.Mesh or nil
  577. local SndData = data.Sound or nil
  578. local Frames = data.Frames or 45
  579. local Manual = data.Manual or nil
  580. local Material = data.Material or nil
  581. local CFra = data.CFrame or Torso.CFrame
  582. local Settings = data.FXSettings or {}
  583. local Shape = data.Shape or Enum.PartType.Block
  584. local Snd,Prt,Msh;
  585. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  586. Prt = Manual
  587. else
  588. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  589. Prt.Shape = Shape
  590. end
  591. if(typeof(MeshData) == 'table')then
  592. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  593. elseif(typeof(MeshData) == 'Instance')then
  594. Msh = MeshData:Clone()
  595. Msh.Parent = Prt
  596. elseif(Shape == Enum.PartType.Block)then
  597. Msh = Mesh(Prt,Enum.MeshType.Brick)
  598. end
  599. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  600. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  601. end
  602. if(Snd)then
  603. repeat wait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  604. data.Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  605. end
  606. data.Part = Prt
  607. data.Mesh = Msh
  608. data.Sound = Snd
  609. data.Frame = 0
  610. data.Size = (Msh and Msh.Scale or Size)
  611. Size = (Msh and Msh.Scale or Size)
  612. data.Grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
  613. table.insert(FXTable,data)
  614. return Prt,Msh,Snd
  615. end
  616.  
  617. function Zap(data)
  618. local sCF,eCF = data.StartCFrame,data.EndCFrame
  619. assert(sCF,"You need a start CFrame!")
  620. assert(eCF,"You need an end CFrame!")
  621. local parts = data.PartCount or 15
  622. local zapRot = data.ZapRotation or {-5,5}
  623. local startThick = data.StartSize or 3;
  624. local endThick = data.EndSize or startThick/2;
  625. local color = data.Color or BrickColor.new'Electric blue'
  626. local delay = data.Delay or 35
  627. local delayInc = data.DelayInc or 0
  628. local lastLightning;
  629. local MagZ = (sCF.p - eCF.p).magnitude
  630. local thick = startThick
  631. local inc = (startThick/parts)-(endThick/parts)
  632.  
  633. for i = 1, parts do
  634. local pos = sCF.p
  635. if(lastLightning)then
  636. pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
  637. end
  638. delay = delay + delayInc
  639. local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
  640. local posie = CF.N(pos,eCF.p)*CF.N(0,0,MagZ/parts).p+V3.N(M.RNG(unpack(zapRot)),M.RNG(unpack(zapRot)),M.RNG(unpack(zapRot)))
  641. if(parts == i)then
  642. local MagZ = (pos-eCF.p).magnitude
  643. zapPart.Size = V3.N(endThick,endThick,MagZ)
  644. zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
  645. Effect{Effect='ResizeAndFade',Size=V3.N(thick,thick,thick),CFrame=eCF*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),Color=color,Frames=delay*2,FXSettings={EndSize=V3.N(thick*8,thick*8,thick*8)}}
  646. else
  647. zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
  648. end
  649.  
  650. lastLightning = zapPart
  651. Effect{Effect='Fade',Manual=zapPart,Frames=delay}
  652.  
  653. thick=thick-inc
  654.  
  655. end
  656. end
  657.  
  658.  
  659. function SoulSteal(whom)
  660. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  661. if(torso and torso:IsA'BasePart')then
  662. local Model = Instance.new("Model",Effects)
  663. Model.Name = whom.Name.."'s Soul"
  664. whom:BreakJoints()
  665. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  666. Soul.Name = 'Head'
  667. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  668. Effect{
  669. Effect="Arc",
  670. Manual = Soul,
  671. FXSettings={
  672. Start=torso.CFrame,
  673. Home = Torso,
  674. RemoveOnGoal = true,
  675. }
  676. }
  677. local lastPoint = Soul.CFrame.p
  678.  
  679. for i = 0, 1, 0.01 do
  680. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  681. local mag = (lastPoint - Soul.Position).magnitude
  682. Effect{
  683. Effect = "Fade",
  684. CFrame = point * CF.N(0, mag/2, 0),
  685. Size = V3.N(.5,mag+.5,.5),
  686. Color = Soul.BrickColor
  687. }
  688. lastPoint = Soul.CFrame.p
  689. swait()
  690. end
  691. for i = 1, 5 do
  692. Effect{
  693. Effect="Fade",
  694. Color = BrickColor.new'Really red',
  695. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  696. }
  697. end
  698. end
  699. end
  700.  
  701. --// Other Functions \\ --
  702.  
  703. function getRegion(point,range,ignore)
  704. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  705. end
  706.  
  707. function CastRay(startPos,endPos,range,ignoreList)
  708. local ray = Ray.new(startPos,(endPos-startPos).unit*range)
  709. local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
  710. return part,pos,norm,(pos and (startPos-pos).magnitude)
  711. end
  712.  
  713.  
  714. function WingFlutter(Alpha)
  715. Alpha = Alpha or .1
  716. for x = 1, 4 do
  717. if(FeatherWelds[1][x][1])then
  718. FeatherWelds[1][x][1].C0 = FeatherWelds[1][x][1].C0:lerp(CF.N(-2-.5*M.C(Sine/24),x/4,0-.2*-M.S(Sine/24)),Alpha)
  719. end
  720. for i = 2, #FeatherWelds[1][x] do
  721. FeatherWelds[1][x][i].C0 = FeatherWelds[1][x][i].C0:lerp(CF.N(.5,.25,0)*CF.A(0,0,M.R(-5+2*M.C(Sine/12))),Alpha)
  722. end
  723. end
  724. for x = 1, 4 do
  725. if(FeatherWelds[2][x][1])then
  726. FeatherWelds[2][x][1].C0 = FeatherWelds[2][x][1].C0:lerp(CF.N(2+.5*M.C(Sine/24),x/4,0-.4*M.S(Sine/24)),Alpha)
  727. end
  728. for i = 2, #FeatherWelds[2][x] do
  729. FeatherWelds[2][x][i].C0 = FeatherWelds[2][x][i].C0:lerp(CF.N(-.5,.25,0)*CF.A(0,0,M.R(5-2*M.C(Sine/12))),Alpha)
  730. end
  731. end
  732. end
  733.  
  734. function clerp(startCF,endCF,alpha)
  735. return startCF:lerp(endCF, alpha)
  736. end
  737.  
  738. function GetTorso(char)
  739. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  740. end
  741.  
  742. function ShowDamage(Pos, Text, Time, Color)
  743. local Rate = (1 / 30)
  744. local Pos = (Pos or Vector3.new(0, 0, 0))
  745. local Text = (Text or "")
  746. local Time = (Time or 2)
  747. local Color = (Color or Color3.new(1, 0, 1))
  748. local EffectPart = NewInstance("Part",Effects,{
  749. Material=Enum.Material.SmoothPlastic,
  750. Reflectance = 0,
  751. Transparency = 1,
  752. BrickColor = BrickColor.new(Color),
  753. Name = "Effect",
  754. Size = Vector3.new(0,0,0),
  755. Anchored = true
  756. })
  757. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  758. Size = UDim2.new(1.25, 0, 1.25, 0),
  759. Adornee = EffectPart,
  760. })
  761. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  762. BackgroundTransparency = 1,
  763. Size = UDim2.new(1, 0, 1, 0),
  764. Text = Text,
  765. Font = "Arial",
  766. TextColor3 = Color,
  767. TextStrokeColor3 = Color3.new(0,0,0),
  768. TextStrokeTransparency=0,
  769. TextScaled = true,
  770. })
  771. game.Debris:AddItem(EffectPart, (Time))
  772. EffectPart.Parent = game:GetService("Workspace")
  773. delay(0, function()
  774. local Frames = (Time / Rate)
  775. for Frame = 1, Frames do
  776. wait(Rate)
  777. local Percent = (Frame / Frames)
  778. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  779. TextLabel.TextTransparency = Percent
  780. TextLabel.TextStrokeTransparency = Percent
  781. end
  782. if EffectPart and EffectPart.Parent then
  783. EffectPart:Destroy()
  784. end
  785. end)
  786. end
  787.  
  788.  
  789. function DealDamage(who,minDam,maxDam,Knock,Type,critChance,critMult)
  790. if(who)then
  791. local hum = who:FindFirstChildOfClass'Humanoid'
  792. local Damage = M.RNG(minDam,maxDam)
  793. local canHit = true
  794. if(hum)then
  795. for _, p in pairs(Hit) do
  796. if p[1] == hum then
  797. if(time() - p[2] < 0.1) then
  798. canHit = false
  799. else
  800. Hit[_] = nil
  801. end
  802. end
  803. end
  804. if(canHit)then
  805. table.insert(Hit,{hum,time()})
  806. if(hum.Health >= math.huge)then
  807. who:BreakJoints()
  808. if(who:FindFirstChild'Head' and hum.Health > 0)then
  809. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), "INSTANT", 1.5, C3.N(1,0,0))
  810. end
  811. else
  812. local player = S.Players:GetPlayerFromCharacter(who)
  813. if(Type == "Fire")then
  814. --idk..
  815. else
  816. local c = Instance.new("ObjectValue",hum)
  817. c.Name = "creator"
  818. c.Value = Plr
  819. game:service'Debris':AddItem(c,0.35)
  820. if(M.RNG(1,100) <= (critChance or 0) and critMult > 1)then
  821. if(who:FindFirstChild'Head' and hum.Health > 0)then
  822. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), "[CRIT] "..Damage*(critMult or 2), 1.5, BrickColor.new'New Yeller'.Color)
  823. end
  824. hum.Health = hum.Health - Damage*(critMult or 2)
  825. else
  826. if(who:FindFirstChild'Head' and hum.Health > 0)then
  827. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), Damage, 1.5, DamageColor.Color)
  828. end
  829. hum.Health = hum.Health - Damage
  830. end
  831. if(Type == 'Knockback' and GetTorso(who))then
  832. local angle = GetTorso(who).Position - Root.Position + Vector3.new(0, 0, 0).unit
  833. local body = NewInstance('BodyVelocity',GetTorso(who),{
  834. P = 500,
  835. maxForce = V3.N(math.huge,0,math.huge),
  836. velocity = Root.CFrame.lookVector * Knock + Root.Velocity / 1.05
  837. })
  838. game:service'Debris':AddItem(body,.5)
  839. elseif(Type == "Electric")then
  840. if(M.RNG(1,100) >= critChance)then
  841. if(who:FindFirstChild'Head' and hum.Health > 0)then
  842. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), "[PARALYZED]", 1.5, BrickColor.new"New Yeller".Color)
  843. end
  844. local asd = hum.WalkSpeed/2
  845. hum.WalkSpeed = asd
  846. local paralyzed = true
  847. coroutine.wrap(function()
  848. while paralyzed do
  849. swait(25)
  850. if(M.RNG(1,25) == 1)then
  851. if(who:FindFirstChild'Head' and hum.Health > 0)then
  852. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), "[STATIC]", 1.5, BrickColor.new"New Yeller".Color)
  853. end
  854. hum.PlatformStand = true
  855. end
  856. end
  857. end)()
  858. delay(4, function()
  859. paralyzed = false
  860. hum.WalkSpeed = hum.WalkSpeed + asd
  861. end)
  862. end
  863.  
  864. elseif(Type == 'Knockdown' and GetTorso(who))then
  865. local rek = GetTorso(who)
  866. hum.PlatformStand = true
  867. delay(1,function()
  868. hum.PlatformStand = false
  869. end)
  870. local angle = (GetTorso(who).Position - (Root.Position + Vector3.new(0, 0, 0))).unit
  871. local bodvol = NewInstance("BodyVelocity",rek,{
  872. velocity = angle * Knock,
  873. P = 5000,
  874. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  875. })
  876. local rl = NewInstance("BodyAngularVelocity",rek,{
  877. P = 3000,
  878. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  879. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  880. })
  881. game:GetService("Debris"):AddItem(bodvol, .5)
  882. game:GetService("Debris"):AddItem(rl, .5)
  883. end
  884. end
  885. end
  886. end
  887. end
  888. end
  889. end
  890.  
  891. function AOEDamage(where,range,minDam,maxDam,Knock,Type,critChance,critMult)
  892. for _,v in next, getRegion(where,range,{Char}) do
  893. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  894. DealDamage(v.Parent,minDam,maxDam,Knock,Type,critChance,critMult)
  895. end
  896. end
  897. end
  898. function AOEHeal(where,range,amount)
  899. local healed = {}
  900. for _,v in next, getRegion(where,range,{Char}) do
  901. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  902. if(hum and not healed[hum])then
  903. hum.Health = hum.Health + amount
  904. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  905. ShowDamage((v.Parent.Head.CFrame * CF.N(0, 0, (v.Parent.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "+"..amount, 1.5, BrickColor.new'Lime green'.Color)
  906. end
  907. end
  908. end
  909. end
  910.  
  911.  
  912. --// Attack Functions \\--
  913.  
  914. function Smite()
  915. Zap{
  916. StartCFrame=CF.N(Mouse.Hit.p)*CF.N(0,500,0),
  917. EndCFrame=CF.N(Mouse.Hit.p),
  918. ZapRotation = {-5,5},
  919. StartSize = 5,
  920. EndSize = 1,
  921. Delay=5,
  922. DelayInc=1,
  923. }
  924. AOEDamage(Mouse.Hit.p,3,15,35,false,"Electric",75,1)
  925. end
  926.  
  927. function LightningStorm()
  928. Attack = true
  929. Rooted = true
  930. NeutralAnims = false
  931. Hum.AutoRotate = false
  932. repeat swait()
  933. Root.CFrame = Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  934. local Alpha = .3
  935. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0109784482, 0.00629424211+.25*M.C(Sine/12), 0.00456619123, 0, 0.00628576428, 0.999979854, 0, 0.99998033, -0.00628576661, -0.999999702, -7.27595761e-12, 0)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  936. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  937. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  938. LS.C0 = clerp(LS.C0,CFrame.new(-1.51089513, 0.618211091+.1*M.C(Sine/12), -0.00361234695, 0.982347131, 0.18641524, 0.0156120034, -0.186530694, 0.982429147, 0.00628500059, -0.0141660646, -0.0090861693, 0.999858379)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  939. RS.C0 = clerp(RS.C0,CFrame.new(1.17289495, 0.616719723+.1*M.C(Sine/12), 0.011598235, -0.52721566, -0.849588335, 0.0156120034, 0.849726856, -0.527186096, 0.00628500059, 0.0028907666, 0.0165794864, 0.999858379)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  940. NK.C0 = clerp(NK.C0,CFrame.new(0.00954779983, 1.49905622, 0.00156322215, -1.82539225e-07, 0.0574940294, -0.998345554, 0.00628540665, 0.998326242, 0.0574929155, 0.999979854, -0.00627500098, -0.000361557119),Alpha)
  941. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  942. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  943. WingFlutter()
  944. until not S.UserInputService:IsKeyDown(Enum.KeyCode.C)
  945. local where = Mouse.Hit.p
  946. for i = 0, 6, .1 do
  947. swait()
  948. local Alpha = .3
  949. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0109784482, 0.00629424211+.25*M.C(Sine/12), 0.00456619123, 0, 0.00628576428, 0.999979854, 0, 0.99998033, -0.00628576661, -0.999999702, -7.27595761e-12, 0)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  950. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  951. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  952. LS.C0 = clerp(LS.C0,CFrame.new(-1.51089513, 0.618211091+.1*M.C(Sine/12), -0.00361234695, 0.982347131, 0.18641524, 0.0156120034, -0.186530694, 0.982429147, 0.00628500059, -0.0141660646, -0.0090861693, 0.999858379)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  953. RS.C0 = clerp(RS.C0,CFrame.new(1.17289495, 0.616719723+.1*M.C(Sine/12), 0.011598235, -0.52721566, -0.849588335, 0.0156120034, 0.849726856, -0.527186096, 0.00628500059, 0.0028907666, 0.0165794864, 0.999858379)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  954. NK.C0 = clerp(NK.C0,CFrame.new(0.00954779983, 1.49905622, 0.00156322215, -1.82539225e-07, 0.0574940294, -0.998345554, 0.00628540665, 0.998326242, 0.0574929155, 0.999979854, -0.00627500098, -0.000361557119),Alpha)
  955. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  956. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  957. WingFlutter()
  958. end
  959. for i = 0, 1.4, .1 do
  960. swait()
  961. local Alpha = .3
  962. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0109784482, 0.00629424211+.25*M.C(Sine/12), 0.00456619123, 0, 0.00628576428, 0.999979854, 0, 0.99998033, -0.00628576661, -0.999999702, -7.27595761e-12, 0)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  963. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  964. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  965. LS.C0 = clerp(LS.C0,CFrame.new(-1.51089513, 0.618211091+.1*M.C(Sine/12), -0.00361234695, 0.982347131, 0.18641524, 0.0156120034, -0.186530694, 0.982429147, 0.00628500059, -0.0141660646, -0.0090861693, 0.999858379)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  966. RS.C0 = clerp(RS.C0,CFrame.new(1.39888549, 0.921575725+.1*M.C(Sine/12), 0.00929622632, -0.917422354, -0.397608638, 0.0156120034, 0.397739291, -0.917477012, 0.00628500059, 0.0118246814, 0.0119755063, 0.999858379)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  967. NK.C0 = clerp(NK.C0,CFrame.new(0.00954779983, 1.49905622, 0.00156322215, -1.82539225e-07, 0.0574940294, -0.998345554, 0.00628540665, 0.998326242, 0.0574929155, 0.999979854, -0.00627500098, -0.000361557119),Alpha)
  968. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  969. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  970. WingFlutter()
  971. end
  972. for i = 0, .8, .1 do
  973. swait()
  974. local Alpha = .3
  975. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0109784482, 0.00629424211+.25*M.C(Sine/12), 0.00456619123, 0, 0.00628576428, 0.999979854, 0, 0.99998033, -0.00628576661, -0.999999702, -7.27595761e-12, 0)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  976. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  977. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  978. LS.C0 = clerp(LS.C0,CFrame.new(-1.51089513, 0.618211091+.1*M.C(Sine/12), -0.00361234695, 0.982347131, 0.18641524, 0.0156120034, -0.186530694, 0.982429147, 0.00628500059, -0.0141660646, -0.0090861693, 0.999858379)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  979. RS.C0 = clerp(RS.C0,CFrame.new(1.39452517, 0.577189744, 0.0083861379, 0.913589835, -0.406337589, 0.0156120034, 0.406289399, 0.913722992, 0.00628500059, -0.0168188754, 0.000601077918, 0.999858379)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  980. NK.C0 = clerp(NK.C0,CFrame.new(0.00954779983, 1.49905622, 0.00156322215, -1.82539225e-07, 0.0574940294, -0.998345554, 0.00628540665, 0.998326242, 0.0574929155, 0.999979854, -0.00627500098, -0.000361557119),Alpha)
  981. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  982. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  983. WingFlutter()
  984. end
  985.  
  986. for i = 0, 6, .1 do
  987. pcall(function() Sound(Torso,481719045,1,1,false,true,true) end)
  988. local pos = CF.N(where)*CF.N(M.RNG(-1000,1000,100),0,M.RNG(-1000,1000,100))
  989. local part,rayPos,norm,dist = CastRay(pos*CF.N(0,500,0).p,pos.p,1500)
  990. Zap{
  991. StartCFrame=pos*CF.N(0,500,0),
  992. EndCFrame=CF.N(rayPos),
  993. ZapRotation = {-5,5},
  994. StartSize = 1,
  995. EndSize = .5,
  996. Delay=10,
  997. DelayInc=2,
  998. }
  999. AOEDamage(rayPos,5,45,65,0,'Electric',25,2)
  1000. swait()
  1001. local Alpha = .3
  1002. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0109784482, 0.00629424211+.25*M.C(Sine/12), 0.00456619123, 0, 0.00628576428, 0.999979854, 0, 0.99998033, -0.00628576661, -0.999999702, -7.27595761e-12, 0)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1003. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1004. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1005. LS.C0 = clerp(LS.C0,CFrame.new(-1.51089513, 0.618211091+.1*M.C(Sine/12), -0.00361234695, 0.982347131, 0.18641524, 0.0156120034, -0.186530694, 0.982429147, 0.00628500059, -0.0141660646, -0.0090861693, 0.999858379)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1006. RS.C0 = clerp(RS.C0,CFrame.new(1.39452517, 0.577189744, 0.0083861379, 0.913589835, -0.406337589, 0.0156120034, 0.406289399, 0.913722992, 0.00628500059, -0.0168188754, 0.000601077918, 0.999858379)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1007. NK.C0 = clerp(NK.C0,CFrame.new(0.00954779983, 1.49905622, 0.00156322215, -1.82539225e-07, 0.0574940294, -0.998345554, 0.00628540665, 0.998326242, 0.0574929155, 0.999979854, -0.00627500098, -0.000361557119),Alpha)
  1008. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1009. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1010. WingFlutter()
  1011. end
  1012. Hum.AutoRotate = true
  1013. Attack = false
  1014. NeutralAnims = true
  1015. Rooted = false
  1016. end
  1017.  
  1018.  
  1019. function HolyBomb()
  1020. Attack = true
  1021. Chat2("It's time to cleanse this world!")
  1022. swait(60)
  1023. Rooted = true
  1024. NeutralAnims = false
  1025. for i = 0, 6, 0.1 do
  1026. swait()
  1027. local Alpha = .05
  1028. Zap{
  1029. StartCFrame=CF.N(Root.CFrame.p)*CF.N(0,250,0),
  1030. EndCFrame=CF.N(Root.CFrame.p),
  1031. ZapRotation = {-15,15},
  1032. Color=C3.N(1,1,0),
  1033. StartSize = 1,
  1034. EndSize = 1,
  1035. Delay=5,
  1036. DelayInc=1,
  1037. }
  1038. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20455468e-13, 0.00629198179, 1.40559132e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1039. LH.C0 = clerp(LH.C0,CFrame.new(-0.507250547, -0.110386491, -0.672860861, 0.999877751, -0.00782374945, 0.013510122, -9.81397825e-05, 0.862201095, 0.506566346, -0.0156116877, -0.506505728, 0.862094939),Alpha)
  1040. RH.C0 = clerp(RH.C0,CFrame.new(0.487759113, -0.105839849, -0.680253506, 0.999877751, -0.00782374945, 0.013510122, -9.81397825e-05, 0.862201095, 0.506566346, -0.0156116877, -0.506505728, 0.862094939),Alpha)
  1041. LS.C0 = clerp(LS.C0,CFrame.new(-1.04961777, 0.162827805, -0.367515624, 0.65209949, -0.758071303, 0.00966797117, 0.478066534, 0.401272744, -0.781301916, 0.588403046, 0.514108539, 0.624078274),Alpha)
  1042. RS.C0 = clerp(RS.C0,CFrame.new(1.01012444, 0.107069746, -0.463154793, 0.633318067, 0.773830771, 0.00966686849, -0.478192717, 0.401122361, -0.781301916, -0.608473003, 0.490190029, 0.624078274),Alpha)
  1043. NK.C0 = clerp(NK.C0,CFrame.new(6.11957148e-06, 1.44927096, -0.405988753, 0.999999583, 7.24568963e-07, -6.8731606e-07, 6.33735908e-09, 0.684226215, 0.729269981, 1.00024045e-06, -0.729269683, 0.684225917),Alpha)
  1044. WingFlutter()
  1045. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),.3)
  1046. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),.3)
  1047. end
  1048. for i = 0, .8, 0.1 do
  1049. swait()
  1050. local Alpha = .3
  1051. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00439098151, 0.0666924566, 0.281248361, 0.999959052, 0.00860917568, -0.00265517179, -0.0086270012, 0.830053985, -0.557616353, -0.00259668194, 0.557616353, 0.830094337),Alpha)
  1052. LH.C0 = clerp(LH.C0,CFrame.new(-0.497570813, -0.936474979, -0.0477344394, 0.999878109, -0.00782567263, 0.0135120051, -9.73803981e-05, 0.862202823, 0.506563246, -0.0156142879, -0.506502926, 0.862096965),Alpha)
  1053. RH.C0 = clerp(RH.C0,CFrame.new(0.497439325, -0.931922615, -0.0551193655, 0.999878109, -0.00782567263, 0.0135120051, -9.73803981e-05, 0.862202823, 0.506563246, -0.0156142879, -0.506502926, 0.862096965),Alpha)
  1054. LS.C0 = clerp(LS.C0,CFrame.new(-1.30848432, 0.518583834, 0.0627421439, 0.758070946, 0.652100444, 0.0096699167, -0.401271075, 0.478066146, -0.781302929, -0.514110804, 0.588402867, 0.624077141),Alpha)
  1055. RS.C0 = clerp(RS.C0,CFrame.new(1.42235136, 0.462758094, -0.0433900952, 0.77383244, -0.633316636, 0.00966930948, 0.401121885, 0.478191316, -0.781302929, 0.49018833, 0.608476162, 0.624077141),Alpha)
  1056. NK.C0 = clerp(NK.C0,CFrame.new(0.00874680094, 1.45278561, 0.153901845, 0.999851108, 0.0168225225, 0.00386164617, -0.014445669, 0.938051641, -0.346193999, -0.00944628194, 0.346086651, 0.938155115),Alpha)
  1057. end
  1058. delay(1, function()
  1059. NeutralAnims = true
  1060. Rooted = false
  1061. end)
  1062. local start = NewInstance("Part",Effects,{Anchored=true,CanCollide=false,Transparency=1,CFrame=Root.CFrame})
  1063. Sound(Char,579687077,.5,2,false,true,true)
  1064. Sound(Char,239000203,.75,2,false,true,true)
  1065. for i = 1, 140 do
  1066. AOEDamage(start.CFrame.p,95,1000,1000,0,'Normal',100,5)
  1067. Effect{
  1068. Effect='ResizeAndFade',
  1069. Mesh={MeshType=Enum.MeshType.Sphere},
  1070. Color=C3.N(1,1,0),
  1071. Material=Enum.Material.Neon,
  1072. CFrame=CF.N(start.CFrame.p)*CF.N(M.RNG(-75,75),M.RNG(-75,75),M.RNG(-75,75)),
  1073. Frames=60,
  1074. FXSettings={
  1075. EndIsIncrement=true,
  1076. EndSize=V3.N(.6,.6,.6)
  1077. }
  1078. }
  1079. swait(1)
  1080. end
  1081. Attack = false
  1082. end
  1083.  
  1084. function Lazor()
  1085. Rooted = true
  1086. Attack = true
  1087. Hum.AutoRotate=false
  1088. NeutralAnims = false
  1089. Chat2("Begone, sinner.")
  1090. --Effect{Effect='Resize',Mesh={MeshType=Enum.MeshType.FileMesh},Size=V3.N(1,1,1),CFrame=,Frames=60,FXSettings={EndSize=V3.N(4,4,4)}}
  1091. local snd = Sound(Torso,705787045,1,1,true,false,false)
  1092. for i = 0, 6, .1 do
  1093. Effect{
  1094. Effect='Fade',
  1095. Color=BrickColor.new'New Yeller',
  1096. Size=V3.N((i/2),(i/2),(i/2)),
  1097. Material=Enum.Material.Neon,
  1098. Mesh={MeshType=Enum.MeshType.Sphere},
  1099. Frames=15,
  1100. CFrame=RArm.CFrame*CF.N(0,-1.5,0),
  1101. Sound=false
  1102. }
  1103. swait()
  1104. Root.CFrame =Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  1105. local Alpha = .1
  1106. Change = .5
  1107. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20625471e-13, 0+.25*M.C(Sine/12), -6.20266655e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1108. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1109. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1110. LS.C0 = clerp(LS.C0,CFrame.new(-1.09520316, 0.319447398+.1*M.C(Sine/12), 0.380316556, 0.862274766, -0.50140965, 0.071203351, 0.413908899, 0.77874434, 0.471420079, -0.291823745, -0.377021939, 0.879029453)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1111. RS.C0 = clerp(RS.C0,CFrame.new(1.46309233, 0.634022355+.1*M.C(Sine/12), 0.0835287869, -0.816918671, -0.539614618, 0.203615591, -0.392316222, 0.261119068, -0.881989181, 0.422766358, -0.800395131, -0.425012559),Alpha)
  1112. NK.C0 = clerp(NK.C0,CFrame.new(-7.09252117e-06, 1.4989512, -0.0144005567, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1113. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1114. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1115. WingFlutter()
  1116. end
  1117. snd:Play()
  1118. for i = 0, 24, .1 do
  1119. swait()
  1120. Effect{
  1121. Effect='Fade',
  1122. Color=BrickColor.new'New Yeller',
  1123. Size=V3.N(3,3,3),
  1124. Material=Enum.Material.Neon,
  1125. Mesh={MeshType=Enum.MeshType.Sphere},
  1126. Frames=15,
  1127. CFrame=RArm.CFrame*CF.N(0,-1.5,0),
  1128. }
  1129. if(Mouse.Target)then
  1130. Zap{
  1131. StartCFrame=RArm.CFrame*CF.N(0,-1.5,0),
  1132. EndCFrame=Mouse.Hit,
  1133. ZapRotation = {-5,5},
  1134. PartCount=10,
  1135. StartSize = .5,
  1136. EndSize = .5,
  1137. Color = C3.N(1,1,0),
  1138. DelayInc=0,
  1139. Delay =5,
  1140. }
  1141. end
  1142. AOEDamage(Mouse.Hit.p,3,10,15,false,"Electric",25,2)
  1143. Root.CFrame = Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  1144. local Alpha = .1
  1145. Change = .5
  1146. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20625471e-13, 0+.25*M.C(Sine/12), -6.20266655e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1147. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1148. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1149. LS.C0 = clerp(LS.C0,CFrame.new(-1.09520316, 0.319447398+.1*M.C(Sine/12), 0.380316556, 0.862274766, -0.50140965, 0.071203351, 0.413908899, 0.77874434, 0.471420079, -0.291823745, -0.377021939, 0.879029453)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1150. RS.C0 = clerp(RS.C0,CFrame.new(1.42641699, 0.76597631+.1*M.C(Sine/12), -0.207831383, 0.954205394, 0.219142094, 0.203637421, 0.275958538, -0.38200587, -0.881996989, -0.115491927, 0.897801638, -0.424986154),Alpha)
  1151. NK.C0 = clerp(NK.C0,CFrame.new(-7.09252117e-06, 1.4989512, -0.0144005567, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1152. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1153. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1154. WingFlutter()
  1155. end
  1156. coroutine.wrap(function()
  1157. for i = 1, 0,-.05 do
  1158. snd.Volume = i
  1159. swait()
  1160. end
  1161. snd:destroy()
  1162. end)()
  1163. Rooted = false
  1164. Attack = false
  1165. Hum.AutoRotate=true
  1166. NeutralAnims = true
  1167. end
  1168.  
  1169. function Teleport()
  1170. Rooted = true
  1171. Attack = true
  1172. Hum.AutoRotate=false
  1173. NeutralAnims = false
  1174. repeat swait()
  1175. Root.CFrame =Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  1176. local Alpha = .1
  1177. Change = .5
  1178. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20625471e-13, 0+.25*M.C(Sine/12), -6.20266655e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1179. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1180. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1181. LS.C0 = clerp(LS.C0,CFrame.new(-1.30013025, 0.503248096+.1*M.C(Sine/12), -0.596688211, 0.828000546, -0.560713708, -6.38549547e-10, 0.003524723, 0.00520492578, -0.999980271, 0.560702682, 0.827984214, 0.00628613681),Alpha)
  1182. RS.C0 = clerp(RS.C0,CFrame.new(1.27528536, 0.496638358+.1*M.C(Sine/12), -0.579756379, 0.810091436, 0.586290658, -1.40121659e-09, -0.00368550443, 0.00509234518, -0.999980271, -0.586279035, 0.810075462, 0.00628613681),Alpha)
  1183. NK.C0 = clerp(NK.C0,CFrame.new(-7.09252117e-06, 1.4989512, -0.0144005567, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1184. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1185. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1186. WingFlutter()
  1187. until not S.UserInputService:IsKeyDown(Enum.KeyCode.Q)
  1188. local p = Mouse.Hit.p
  1189.  
  1190. --
  1191. local circle = NewInstance("Part",Effects,{CFrame=Root.CFrame*CF.N(0,0,-2),Size=V3.N(.05,.05,.05),Transparency=1,Anchored=true,CanCollide=false})
  1192. local decalF = NewInstance("Decal",circle,{Name='Front',Texture="rbxassetid://524002938",Color3=C3.N(1,1,0),Face=Enum.NormalId.Front,Transparency = 1})
  1193. local decalB = NewInstance("Decal",circle,{Name='Back',Texture="rbxassetid://524002938",Color3=C3.N(1,1,0),Face=Enum.NormalId.Back,Transparency=1})
  1194. local asd = CF.N(p,Root.Position)
  1195. local circle2=circle:Clone()
  1196. circle2.Parent = Effects
  1197. circle2.CFrame = asd*CF.N(0,4,0)
  1198. Root.Anchored = true
  1199. for i = 0, 3, .1 do
  1200. swait()
  1201. local Alpha = .1
  1202. Change = .5
  1203. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20625471e-13, 0+.25*M.C(Sine/12), -6.20266655e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1204. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1205. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1206. LS.C0 = clerp(LS.C0,CFrame.new(-1.21875513, 0.506383479+.1*M.C(Sine/12), -0.0979118943, 0.810091376, 0.586290598, 2.45534384e-08, -0.00368548767, 0.0050923666, -0.999980271, -0.586278975, 0.810075402, 0.00628614426),Alpha)
  1207. RS.C0 = clerp(RS.C0,CFrame.new(1.20952582, 0.499788254+.1*M.C(Sine/12), -0.0786797404, 0.828000546, -0.560713649, -2.55837147e-08, 0.0035247067, 0.00520494673, -0.999980271, 0.560702622, 0.827984214, 0.00628614519),Alpha)
  1208. NK.C0 = clerp(NK.C0,CFrame.new(-7.09252117e-06, 1.4989512, -0.0144005567, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1209. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1210. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1211. WingFlutter()
  1212. circle.Size = circle.Size + V3.N(.2,.2,0)
  1213. circle2.Size = circle2.Size + V3.N(.2,.2,0)
  1214. circle.Front.Transparency=1-(i/3)
  1215. circle.Back.Transparency=1-(i/3)
  1216. circle2.Front.Transparency=1-(i/3)
  1217. circle2.Back.Transparency=1-(i/3)
  1218.  
  1219. circle.CFrame=circle.CFrame*CF.A(0,0,M.R(5))
  1220. circle2.CFrame=circle2.CFrame*CF.A(0,0,M.R(5))
  1221. end
  1222. Root.Anchored = true
  1223. for i = 1, 3,.1 do
  1224. Root.Anchored = true
  1225. swait()
  1226. local Alpha = .1
  1227. Change = .5
  1228. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20625471e-13, 0+.25*M.C(Sine/12), -6.20266655e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1229. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1230. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1231. LS.C0 = clerp(LS.C0,CFrame.new(-1.09520316, 0.319447398+.1*M.C(Sine/12), 0.380316556, 0.862274766, -0.50140965, 0.071203351, 0.413908899, 0.77874434, 0.471420079, -0.291823745, -0.377021939, 0.879029453)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1232. RS.C0 = clerp(RS.C0,CFrame.new(1.38953996, 0.579314649+.1*M.C(Sine/12), 0.00156672322, 0.963396549, -0.267624378, 0.0156119959, 0.267557263, 0.9635216, 0.0062854127, -0.0167246256, -0.0018782462, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1233. NK.C0 = clerp(NK.C0,CFrame.new(-7.09252117e-06, 1.4989512, -0.0144005567, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1234. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1235. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1236. WingFlutter()
  1237. end
  1238. for i = 0, 2, .1 do
  1239. swait()
  1240. local Alpha = .1
  1241. Change = .5
  1242. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00288401172, -0.186870754+.25*M.C(Sine/12), -0.184415281, 0.999970019, -0.00748212682, -0.00185852405, 0.00747100171, 0.880958676, 0.473134309, -0.00190276653, -0.473133981, 0.880988002)*CF.A(-M.R(10+5*M.S(Sine/12)),0,0),Alpha)
  1243. LH.C0 = clerp(LH.C0,CFrame.new(-0.455414772, -0.964986682, 0.0489092469, 0.999094486, 0.0300228745, 0.0301540364, -0.0396850631, 0.913133621, 0.405724436, -0.0153536471, -0.406553656, 0.913497925)*CF.A(0,M.R(2+7*M.C(Sine/12)),-M.R(2+7*M.C(Sine/12))),Alpha)
  1244. RH.C0 = clerp(RH.C0,CFrame.new(0.544458926, -0.964868069, 0.0333667099, 0.999092519, 0.0301021822, 0.0301397741, -0.0397526845, 0.913105845, 0.405780286, -0.015305927, -0.406610161, 0.913473606)*CF.A(0,-M.R(2+7*M.C(Sine/12)),M.R(2+7*M.C(Sine/12))),Alpha)
  1245. LS.C0 = clerp(LS.C0,CFrame.new(-1.36389351, 0.578486085+.1*M.C(Sine/12), 0.180077106, -0.966345549, 0.257006437, -0.0111429691, 0.189922124, 0.683552086, -0.704759717, -0.173510939, -0.683157504, -0.709358692)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1246. RS.C0 = clerp(RS.C0,CFrame.new(1.36815977, 0.578247666+.1*M.C(Sine/12), 0.13745755, 0.960469842, -0.278161407, 0.0111425305, 0.189813495, 0.683640122, 0.704703569, -0.203638792, -0.674731433, 0.709414363)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1247. NK.C0 = clerp(NK.C0,CFrame.new(0.00204973482, 1.42796898, 0.117728591, 0.999878228, 0.00747100171, 0.0137089603, -9.46668442e-05, 0.880958676, -0.473193318, -0.0156122521, 0.473134309, 0.880851984),Alpha)
  1248. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1249. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1250. WingFlutter()
  1251. Root.CFrame = Root.CFrame * CF.N(0,0,-.1)
  1252. Transparency(i/2)
  1253. end
  1254. Zap{
  1255. StartCFrame=Root.CFrame,
  1256. EndCFrame=asd*CF.N(0,4,0),
  1257. ZapRotation = {-5,5},
  1258. PartCount=10,
  1259. StartSize = 4,
  1260. EndSize = .5,
  1261. Color = C3.N(1,1,0),
  1262. DelayInc=5,
  1263. Delay = 15,
  1264. }
  1265. Root.CFrame = asd*CF.N(0,4,0)
  1266. Root.Anchored = true
  1267.  
  1268. for i = 0, 2, .1 do
  1269. Root.Anchored = true
  1270. swait()
  1271. local Alpha = .1
  1272. Change = .5
  1273. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00288401172, -0.186870754+.25*M.C(Sine/12), -0.184415281, 0.999970019, -0.00748212682, -0.00185852405, 0.00747100171, 0.880958676, 0.473134309, -0.00190276653, -0.473133981, 0.880988002)*CF.A(-M.R(10+5*M.S(Sine/12)),0,0),Alpha)
  1274. LH.C0 = clerp(LH.C0,CFrame.new(-0.455414772, -0.964986682, 0.0489092469, 0.999094486, 0.0300228745, 0.0301540364, -0.0396850631, 0.913133621, 0.405724436, -0.0153536471, -0.406553656, 0.913497925)*CF.A(0,M.R(2+7*M.C(Sine/12)),-M.R(2+7*M.C(Sine/12))),Alpha)
  1275. RH.C0 = clerp(RH.C0,CFrame.new(0.544458926, -0.964868069, 0.0333667099, 0.999092519, 0.0301021822, 0.0301397741, -0.0397526845, 0.913105845, 0.405780286, -0.015305927, -0.406610161, 0.913473606)*CF.A(0,-M.R(2+7*M.C(Sine/12)),M.R(2+7*M.C(Sine/12))),Alpha)
  1276. LS.C0 = clerp(LS.C0,CFrame.new(-1.36389351, 0.578486085+.1*M.C(Sine/12), 0.180077106, -0.966345549, 0.257006437, -0.0111429691, 0.189922124, 0.683552086, -0.704759717, -0.173510939, -0.683157504, -0.709358692)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1277. RS.C0 = clerp(RS.C0,CFrame.new(1.36815977, 0.578247666+.1*M.C(Sine/12), 0.13745755, 0.960469842, -0.278161407, 0.0111425305, 0.189813495, 0.683640122, 0.704703569, -0.203638792, -0.674731433, 0.709414363)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1278. NK.C0 = clerp(NK.C0,CFrame.new(0.00204973482, 1.42796898, 0.117728591, 0.999878228, 0.00747100171, 0.0137089603, -9.46668442e-05, 0.880958676, -0.473193318, -0.0156122521, 0.473134309, 0.880851984),Alpha)
  1279. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1280. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1281. WingFlutter()
  1282. Root.CFrame = Root.CFrame * CF.N(0,0,-.1)
  1283. Transparency(1-(i/2))
  1284. end
  1285.  
  1286.  
  1287. Transparency(0)
  1288. coroutine.wrap(function()
  1289. for i = 0, 3, .1 do
  1290. swait()
  1291. local Alpha = .1
  1292. Change = .5
  1293. circle.Size = circle.Size - V3.N(.2,.2,0)
  1294. circle2.Size = circle2.Size - V3.N(.2,.2,0)
  1295. circle.Front.Transparency=(i/3)
  1296. circle.Back.Transparency=(i/3)
  1297. circle2.Front.Transparency=(i/3)
  1298. circle2.Back.Transparency=(i/3)
  1299.  
  1300. circle.CFrame=circle.CFrame*CF.A(0,0,-M.R(5))
  1301. circle2.CFrame=circle2.CFrame*CF.A(0,0,-M.R(5))
  1302. end
  1303. end)()
  1304. Hum.AutoRotate = true
  1305. Root.Anchored = false
  1306. Rooted = false
  1307. Attack = false
  1308. NeutralAnims = true
  1309. end
  1310.  
  1311. Mouse.KeyDown:connect(function(k)
  1312. if(Attack)then return end
  1313. if(k == 'q')then Teleport() end
  1314. if(k == 'z')then Lazor() end
  1315. if(k == 'x')then Smite() end
  1316. if(k == 'v')then HolyBomb() end
  1317. if(k == 'c')then LightningStorm() end
  1318. end)
  1319.  
  1320.  
  1321. --// Wrap it all up \\--
  1322. while true do
  1323. swait()
  1324. Sine = Sine + Change
  1325.  
  1326. if(not Music or not Music.Parent)then
  1327. local a = Music.TimePosition
  1328. Music = Sound(Char,MusicID,1,3,true,false,true)
  1329. Music.Name = 'Music'
  1330. Music.TimePosition = a
  1331. end
  1332. Music.Playing = true
  1333. Torso.Color = C3.N(0,0,0)
  1334. RArm.Color = C3.N(0,0,0)
  1335. LArm.Color = C3.N(0,0,0)
  1336. RLeg.Color = C3.N(0,0,0)
  1337. LLeg.Color = C3.N(0,0,0)
  1338. Head.Color = C3.N(0,0,0)
  1339. Music.Volume = 5
  1340. Music.Pitch = 1
  1341. Music.Playing = true
  1342. Hum.HipHeight = 2
  1343. Sine = Sine + Change
  1344. local hitfloor,posfloor = workspace:FindPartOnRay(Ray.new(Root.CFrame.p,((CFrame.new(Root.Position,Root.Position - Vector3.new(0,1,0))).lookVector).unit * 100), Char)
  1345. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  1346. local State = (Hum.PlatformStand and 'Paralyzed' or Hum.Sit and 'Sit' or Walking and "Walk" or "Idle")
  1347. if(time()-PulseTime > .05)then
  1348. PulseTime = time()
  1349. if(hitfloor)then
  1350. local angles = CF.A(M.RRNG(-15,15),M.RRNG(-45,45),M.RRNG(-45,45))
  1351. Effect{
  1352. Effect='ResizeAndFade',
  1353. Color=hitfloor.Color,
  1354. Material=hitfloor.Material,
  1355. Frames=60,
  1356. Mesh={MeshType=Enum.MeshType.FileMesh,MeshId="rbxassetid://662586858",Scale=V3.N(.01,.01,.01)},
  1357. CFrame=CF.N(posfloor)*angles,
  1358. MoveDirection=CF.N(posfloor)*angles*CF.N(0,6,0).p,
  1359. FXSettings = {
  1360. EndSize=V3.N(.0005,.0005,.0005),
  1361. EndIsIncrement=true
  1362. }
  1363. }
  1364. end
  1365. local pos = CF.N(Torso.CFrame.p)*CF.N(0,-2,0)*CF.A(0,M.RRNG(-180,180),0)*CF.N(0,0,M.RNG(-15,-5))
  1366. local hitfloor2,posfloor2 = workspace:FindPartOnRay(Ray.new(pos.p,((CFrame.new(pos.p,pos.p - Vector3.new(0,1,0))).lookVector).unit * 100), Char)
  1367.  
  1368. if(hitfloor2)then
  1369. pos = CF.N(posfloor2)
  1370. Effect{
  1371. Effect='ResizeAndFade',
  1372. Color=BrickColor.new'New Yeller',
  1373. Size=V3.N(2,2,2),
  1374. Material=Enum.Material.Neon,
  1375. Mesh={MeshType=Enum.MeshType.Sphere},
  1376. Frames=45,
  1377. CFrame=pos,
  1378. FXSettings = {
  1379. EndSize = V3.N(-.01,.25,-.01),
  1380. EndIsIncrement = true
  1381. }
  1382. }
  1383. else
  1384. Effect{
  1385. Effect='ResizeAndFade',
  1386. Color=BrickColor.new'New Yeller',
  1387. Size=V3.N(2,2,2),
  1388. Material=Enum.Material.Neon,
  1389. Mesh={MeshType=Enum.MeshType.Sphere},
  1390. Frames=45,
  1391. CFrame=pos,
  1392. FXSettings = {
  1393. EndSize = V3.N(-.01,.25,-.01),
  1394. EndIsIncrement = true
  1395. }
  1396. }
  1397. end
  1398. end
  1399. Hum.Name = math.random()*100000
  1400. Hum.MaxHealth = 1e100
  1401. Hum.Health = 1e100
  1402. if(M.RNG(1,50) == 1)then
  1403. local pos = CF.N(Torso.CFrame.p)*CF.N(0,-2,0)*CF.A(0,M.RRNG(-180,180),0)*CF.N(0,0,M.RNG(-30,-15))
  1404. local hitfloor2,posfloor2 = workspace:FindPartOnRay(Ray.new(pos.p,((CFrame.new(pos.p,pos.p - Vector3.new(0,1,0))).lookVector).unit * 100), Char)
  1405.  
  1406. if(hitfloor2)then
  1407. pos = CF.N(posfloor2)
  1408. end
  1409. Zap{
  1410. StartCFrame=Torso.CFrame,
  1411. EndCFrame=pos,
  1412. ZapRotation = {-2,2},
  1413. PartCount=5,
  1414. StartSize = .5,
  1415. EndSize = 0,
  1416. Color = C3.N(1,1,0),
  1417. DelayInc=5,
  1418. Delay = 15,
  1419. Sound=false
  1420. }
  1421. end
  1422. if(Rooted == false)then
  1423. Hum.WalkSpeed = 32
  1424. Hum.JumpPower = 75
  1425. else
  1426. Hum.WalkSpeed = 0
  1427. Hum.JumpPower = 0
  1428. end
  1429. if(not Effects or not Effects.Parent)then
  1430. Effects = IN("Model",Char)
  1431. Effects.Name = "Effects"
  1432. end
  1433. if(NeutralAnims)then
  1434. if(State == 'Idle')then
  1435. local Alpha = .1
  1436. Change = .5
  1437. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20625471e-13, 0+.25*M.C(Sine/12), -6.20266655e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(-M.R(3+5*M.S(Sine/12)),0,0),Alpha)
  1438. LH.C0 = clerp(LH.C0,CFrame.new(-0.443078369, -0.366475701, -0.69529891, 0.999093771, 0.0300307292, 0.0301540978, -0.039692279, 0.913133621, 0.405723602, -0.0153505448, -0.406552792, 0.913497925)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1439. RH.C0 = clerp(RH.C0,CFrame.new(0.563508928, -0.975499094, 0.0143494867, 0.992422402, -0.121874072, 0.0156119959, 0.121789157, 0.992536128, 0.0062854127, -0.0162614994, -0.00433641672, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),-M.R(0+5*M.C(Sine/12))),Alpha)
  1440. LS.C0 = clerp(LS.C0,CFrame.new(-1.09520316, 0.319447398+.1*M.C(Sine/12), 0.380316556, 0.862274766, -0.50140965, 0.071203351, 0.413908899, 0.77874434, 0.471420079, -0.291823745, -0.377021939, 0.879029453)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1441. RS.C0 = clerp(RS.C0,CFrame.new(1.38953996, 0.579314649+.1*M.C(Sine/12), 0.00156672322, 0.963396549, -0.267624378, 0.0156119959, 0.267557263, 0.9635216, 0.0062854127, -0.0167246256, -0.0018782462, 0.999858022)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1442. NK.C0 = clerp(NK.C0,CFrame.new(-7.09252117e-06, 1.4989512, -0.0144005567, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1443. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1444. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1445. WingFlutter()
  1446.  
  1447. elseif(State == 'Walk')then
  1448. local Alpha = .1
  1449. Change = .5
  1450. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00288401172, -0.186870754+.25*M.C(Sine/12), -0.184415281, 0.999970019, -0.00748212682, -0.00185852405, 0.00747100171, 0.880958676, 0.473134309, -0.00190276653, -0.473133981, 0.880988002)*CF.A(-M.R(10+5*M.S(Sine/12)),0,0),Alpha)
  1451. LH.C0 = clerp(LH.C0,CFrame.new(-0.455414772, -0.964986682, 0.0489092469, 0.999094486, 0.0300228745, 0.0301540364, -0.0396850631, 0.913133621, 0.405724436, -0.0153536471, -0.406553656, 0.913497925)*CF.A(0,M.R(2+7*M.C(Sine/12)),-M.R(2+7*M.C(Sine/12))),Alpha)
  1452. RH.C0 = clerp(RH.C0,CFrame.new(0.544458926, -0.964868069, 0.0333667099, 0.999092519, 0.0301021822, 0.0301397741, -0.0397526845, 0.913105845, 0.405780286, -0.015305927, -0.406610161, 0.913473606)*CF.A(0,-M.R(2+7*M.C(Sine/12)),M.R(2+7*M.C(Sine/12))),Alpha)
  1453. LS.C0 = clerp(LS.C0,CFrame.new(-1.36389351, 0.578486085+.1*M.C(Sine/12), 0.180077106, -0.966345549, 0.257006437, -0.0111429691, 0.189922124, 0.683552086, -0.704759717, -0.173510939, -0.683157504, -0.709358692)*CF.A(0,M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1454. RS.C0 = clerp(RS.C0,CFrame.new(1.36815977, 0.578247666+.1*M.C(Sine/12), 0.13745755, 0.960469842, -0.278161407, 0.0111425305, 0.189813495, 0.683640122, 0.704703569, -0.203638792, -0.674731433, 0.709414363)*CF.A(0,-M.R(0+5*M.C(Sine/12)),M.R(0+5*M.C(Sine/12))),Alpha)
  1455. NK.C0 = clerp(NK.C0,CFrame.new(0.00204973482, 1.42796898, 0.117728591, 0.999878228, 0.00747100171, 0.0137089603, -9.46668442e-05, 0.880958676, -0.473193318, -0.0156122521, 0.473134309, 0.880851984),Alpha)
  1456. HW.C0 = HW.C0:lerp(CF.N(0,2,0)*CF.A(M.R(0+15*M.C(Sine/36)),0,M.R(0+15*M.S(Sine/36)))*CF.N(-M.R(0+15*M.S(Sine/36)),0,M.R(0+15*M.C(Sine/36))),Alpha)
  1457. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1458. WingFlutter()
  1459. elseif(State == 'Paralyzed')then
  1460. -- paralyzed
  1461. elseif(State == 'Sit')then
  1462. -- sit
  1463. end
  1464. end
  1465. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement