Advertisement
heyoooooooooo

Untitled

Jan 26th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 73.83 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 Torso = Char.Torso
  20. local Head = Char.Head
  21. local NeutralAnims = true
  22. local Attack = false
  23. local BloodPuddles = {}
  24. local Introed = false
  25. local DoneIntroed = false
  26. local Effects = {}
  27. local Debounces = {Debounces={}}
  28. local Mouse = Plr:GetMouse()
  29. local Hit = {}
  30. local Sine = 0
  31. local Change = 1
  32. local PulseTime = 0
  33. local DustTime = 0
  34.  
  35. local Rooted = false
  36. --// Debounce System \\--
  37.  
  38. function Debounces:New(name,cooldown)
  39. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  40. setmetatable(aaaaa,{__index = Debounces})
  41. Debounces.Debounces[name] = aaaaa
  42. return aaaaa
  43. end
  44.  
  45. function Debounces:Use(overrideUsable)
  46. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  47. if(self.Usable or overrideUsable)then
  48. self.Usable = false
  49. self.CoolingDown = true
  50. local LastUse = time()
  51. self.LastUse = LastUse
  52. delay(self.Cooldown or 2,function()
  53. if(self.LastUse == LastUse)then
  54. self.CoolingDown = false
  55. self.Usable = true
  56. end
  57. end)
  58. end
  59. end
  60.  
  61. function Debounces:Get(name)
  62. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  63. for i,v in next, Debounces.Debounces do
  64. if(i == name)then
  65. return v;
  66. end
  67. end
  68. end
  69.  
  70. function Debounces:GetProgressPercentage()
  71. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  72. if(self.CoolingDown and not self.Usable)then
  73. return math.max(
  74. math.floor(
  75. (
  76. (time()-self.LastUse)/self.Cooldown or 2
  77. )*100
  78. )
  79. )
  80. else
  81. return 100
  82. end
  83. end
  84.  
  85. --// Shortcut Variables \\--
  86. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  87. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  88. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  89. 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}
  90. local R3 = {N=Region3.new}
  91. local De = S.Debris
  92. local WS = workspace
  93. local Lght = S.Lighting
  94. local RepS = S.ReplicatedStorage
  95. local IN = Instance.new
  96. --// Instance Creation Functions \\--
  97.  
  98. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  99. local Sound = IN("Sound")
  100. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  101. Sound.Pitch = pitch or 1
  102. Sound.Volume = volume or 1
  103. Sound.Looped = looped or false
  104. if(autoPlay)then
  105. coroutine.wrap(function()
  106. repeat wait() until Sound.IsLoaded
  107. Sound.Playing = autoPlay or false
  108. end)()
  109. end
  110. if(not looped and effect)then
  111. Sound.Stopped:connect(function()
  112. Sound.Volume = 0
  113. Sound:destroy()
  114. end)
  115. elseif(effect)then
  116. warn("Sound can't be looped and a sound effect!")
  117. end
  118. Sound.Parent =parent or Torso
  119. return Sound
  120. end
  121. function Part(parent,color,material,size,cframe,anchored,cancollide)
  122. local part = IN("Part")
  123. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  124. part.Material = material or Enum.Material.SmoothPlastic
  125. part.TopSurface,part.BottomSurface=10,10
  126. part.Size = size or V3.N(1,1,1)
  127. part.CFrame = cframe or CF.N(0,0,0)
  128. part.Anchored = anchored or true
  129. part.CanCollide = cancollide or false
  130. part.Parent = parent or Char
  131. return part
  132. end
  133. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  134. local class = "SpecialMesh"
  135. if(meshtype == Enum.MeshType.Brick)then class = 'BlockMesh' end
  136.  
  137. local part = IN(class)
  138. if(class == "SpecialMesh")then
  139. part.MeshId = meshid or ""
  140. part.TextureId = textid or ""
  141. part.MeshType = meshtype or Enum.MeshType.Sphere
  142. end
  143. part.Scale = scale or V3.N(1,1,1)
  144. part.Offset = offset or V3.N(0,0,0)
  145.  
  146. part.Parent = parent
  147. return part
  148. end
  149.  
  150. NewInstance = function(instance,parent,properties)
  151. local inst = Instance.new(instance,parent)
  152. if(properties)then
  153. for i,v in next, properties do
  154. pcall(function() inst[i] = v end)
  155. end
  156. end
  157. return inst;
  158. end
  159.  
  160.  
  161.  
  162. --// Extended ROBLOX tables \\--
  163. 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})
  164. --// Customization \\--
  165.  
  166. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  167. local Remove_Hats = true
  168. local Remove_Clothing = true
  169. local PlayerSize = 1
  170. local DamageColor = BrickColor.new'New Yeller'
  171. local MusicID = 835120625
  172.  
  173. --// Weapon and GUI creation, and Character Customization \\--
  174.  
  175. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  176. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  177. Instance.ClearChildrenOfClass(Char,"Decal",true)
  178. local Effects = IN("Folder",Char)
  179. Effects.Name = "Effects"
  180.  
  181. local Halo = IN("Model",Char)
  182. Halo.Name = "Halo"
  183.  
  184. local Wings = IN("Model",Char)
  185. Wings.Name = "Wings"
  186.  
  187. Hum.DisplayDistanceType = 'None'
  188.  
  189. local naeeym2 = IN("BillboardGui",Char)
  190. naeeym2.AlwaysOnTop = true
  191. naeeym2.Size = UDim2.new(5,35,2,15)
  192. naeeym2.StudsOffset = V3.N(0,2.5,0)
  193. naeeym2.Adornee = Char.Head
  194. naeeym2.Name = "Name"
  195. naeeym2.PlayerToHideFrom = Plr
  196. local tecks2 = IN("TextLabel",naeeym2)
  197. tecks2.BackgroundTransparency = 1
  198. tecks2.TextScaled = true
  199. tecks2.BorderSizePixel = 0
  200. tecks2.Text = "The Angel"
  201. tecks2.Font = Enum.Font.Bodoni
  202. tecks2.TextSize = 30
  203. tecks2.TextStrokeTransparency = 0
  204. tecks2.TextColor3 = C3.N(0,0,0)
  205. tecks2.TextStrokeColor3 = C3.N(1,1,0)
  206. tecks2.Size = UDim2.new(1,0,0.5,0)
  207. tecks2.Parent = naeeym2
  208.  
  209. pcall(function()
  210. Char.LeftWing:destroy()
  211. Char.ReaperShadowHead:destroy()
  212. end)
  213.  
  214. for _,v in next, Char:children() do
  215. if(v:IsA'BasePart' and v.Transparency < 1 and v ~= Head)then
  216. NewInstance("SelectionBox",v,{Adornee=v,LineThickness=.01,Color3=C3.N(1,1,0)})
  217. if(v ~= Head)then IN("BlockMesh",v) end
  218. end
  219. end
  220.  
  221. local HaloHandle = NewInstance("Part",Halo,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  222. local WingHandle = NewInstance("Part",Wings,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  223.  
  224. for i = 1, 360,5 do
  225. 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})
  226. local weld = NewInstance("Weld",part,{Part0=HaloHandle,Part1=part,C0=CF.A(0,M.R(i),0)*CF.N(0,0,-.6)})
  227. end
  228.  
  229. if(PlayerSize ~= 1)then
  230. for _,v in next, Char:GetDescendats() do
  231. if(v:IsA'BasePart')then
  232. v.Size = v.Size * PlayerSize
  233. end
  234. end
  235. end
  236.  
  237. local Music = Sound(Char,MusicID,1,3,true,false,true)
  238. Music.Name = 'Music'
  239.  
  240. -- Wing Creation
  241. local FeatherWelds = {{},{}}
  242. local inc = 1
  243. for aa = 1, 4 do
  244. local lastFeather;
  245. FeatherWelds[1][aa] = {}
  246. for i = 1, 4+inc do
  247. 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)})
  248. NewInstance("SpecialMesh",feather,{MeshType=Enum.MeshType.Sphere})
  249. if(lastFeather)then
  250. 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))}))
  251. else
  252. 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))}))
  253. end
  254. lastFeather = feather
  255. end
  256. inc = inc + 1
  257. end
  258.  
  259. local inc = 1
  260. for aa = 1, 4 do
  261. local lastFeather;
  262. FeatherWelds[2][aa] = {}
  263. for i = 1, 4+inc do
  264. 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)})
  265. NewInstance("SpecialMesh",feather,{MeshType=Enum.MeshType.Sphere})
  266. if(lastFeather)then
  267. 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))}))
  268. else
  269. 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))}))
  270. end
  271. lastFeather = feather
  272. end
  273. inc = inc + 1
  274. end
  275.  
  276. --// Stop animations \\--
  277. for _,v in next, Hum:GetPlayingAnimationTracks() do
  278. v:Stop();
  279. end
  280.  
  281. pcall(game.Destroy,Char:FindFirstChild'Animate')
  282. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  283.  
  284. --// Joints \\--
  285.  
  286. 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)})
  287. 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)})
  288. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  289. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  290. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  291. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  292. local HW = NewInstance('Motor',Char,{Part0=Head,Part1=HaloHandle,C0=CF.N(0,2,0)})
  293. local WW = NewInstance('Motor',Char,{Part0=Torso,Part1=WingHandle,C0=CF.N(0,1.5,1.5)})
  294.  
  295. local LSC0 = LS.C0
  296. local RSC0 = RS.C0
  297. local NKC0 = NK.C0
  298. local LHC0 = LH.C0
  299. local RHC0 = RH.C0
  300. local RJC0 = RJ.C0
  301.  
  302. --// Artificial HB \\--
  303.  
  304. local ArtificialHB = IN("BindableEvent", script)
  305. ArtificialHB.Name = "Heartbeat"
  306.  
  307. script:WaitForChild("Heartbeat")
  308.  
  309. local tf = 0
  310. local allowframeloss = false
  311. local tossremainder = false
  312. local lastframe = tick()
  313. local frame = 1/Frame_Speed
  314. ArtificialHB:Fire()
  315.  
  316. game:GetService("RunService").Heartbeat:connect(function(s, p)
  317. tf = tf + s
  318. if tf >= frame then
  319. if allowframeloss then
  320. script.Heartbeat:Fire()
  321. lastframe = tick()
  322. else
  323. for i = 1, math.floor(tf / frame) do
  324. ArtificialHB:Fire()
  325. end
  326. lastframe = tick()
  327. end
  328. if tossremainder then
  329. tf = 0
  330. else
  331. tf = tf - frame * math.floor(tf / frame)
  332. end
  333. end
  334. end)
  335.  
  336. function swait(num)
  337. if num == 0 or num == nil then
  338. ArtificialHB.Event:wait()
  339. else
  340. for i = 0, num do
  341. ArtificialHB.Event:wait()
  342. end
  343. end
  344. end
  345.  
  346.  
  347. --// Effect Function(s) \\--
  348.  
  349.  
  350. function Chat(text)
  351. --if(game.PlaceId ~= 843468296)then
  352. coroutine.wrap(function()
  353. if(Char:FindFirstChild'ChatGUI')then Char.ChatGUI:destroy() end
  354. local BBG = NewInstance("BillboardGui",Char,{Name='ChatGUI',Size=UDim2.new(0,100,0,40),StudsOffset=V3.N(0,3,0),Adornee=Head})
  355. 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)})
  356. local SND = Sound(Head,418252437,M.RNG(9,11)/10,3,false,false,true)
  357. for i = 1, #text do
  358. delay(i/25, function()
  359. SND.Pitch = M.RNG(9,11)/10
  360. SND.Volume = 3
  361. SND.Parent = Effects
  362. SND:Play()
  363. Txt.Text = text:sub(1,i)
  364. end)
  365. end
  366. delay((#text/25)+2, function()
  367. Txt.Text = ""
  368. for i = 1, #text do
  369. Txt.Text = Txt.Text.. string.char(M.RNG(0,126))
  370. end
  371. end)
  372. delay((#text/25)+3, function()
  373. BBG:destroy()
  374. SND:destroy()
  375. end)
  376. end)()
  377. --else
  378. -- Chat2(text)
  379. --end
  380. end
  381.  
  382. function Chat2(text)
  383. coroutine.wrap(function()
  384. if(Char:FindFirstChild'ChatGUI')then Char.ChatGUI:destroy() end
  385. local BBG = NewInstance("BillboardGui",Char,{Name='ChatGUI',Size=UDim2.new(0,100,0,40),StudsOffset=V3.N(0,3,0),Adornee=Head})
  386. local offset = 0;
  387. local xsize = 0;
  388. for i = 1, #text do
  389. offset = offset - 16
  390. xsize = xsize + 32
  391. delay(i/25, function()
  392. 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)})
  393. offset = offset + 32
  394. while Txt and Txt.Parent do
  395. Txt.Rotation = M.RNG(-15,15)
  396. swait()
  397. end
  398. end)
  399. end
  400. BBG.Size = UDim2.new(0,xsize,0,40)
  401. delay((#text/25)+3, function()
  402. for _,v in next, BBG:children() do
  403. pcall(function() v.Text = string.char(M.RNG(0,126)) end)
  404. end
  405. end)
  406. delay((#text/25)+4, function()
  407. BBG:destroy()
  408. end)
  409. end)()
  410. end
  411.  
  412.  
  413. function Transparency(trans)
  414. for _,v in next, Char:children() do
  415. if(v:IsA'BasePart' and v ~= Root and v ~= HaloHandle and v ~= WingHandle)then
  416. v.Transparency = trans
  417. local sbox = v:findFirstChild'SelectionBox'
  418. if(sbox)then sbox.Transparency=trans end
  419. elseif(v:IsA'Accessory' and v:FindFirstChild'Handle')then
  420. v.Handle.Transparency=trans
  421. end
  422. end
  423. for _,v in next, Wings:children() do
  424. if(v:IsA'BasePart' and v ~= WingHandle)then
  425. v.Transparency = trans
  426. local sbox = v:findFirstChild'SelectionBox'
  427. if(sbox)then sbox.Transparency=trans end
  428. end
  429. end
  430. for _,v in next, Halo:children() do
  431. if(v:IsA'BasePart' and v ~= HaloHandle)then
  432. v.Transparency = trans
  433. local sbox = v:findFirstChild'SelectionBox'
  434. if(sbox)then sbox.Transparency=trans end
  435. end
  436. end
  437. end
  438.  
  439. local FXTable = {}
  440.  
  441. function Bezier(startpos, pos2, pos3, endpos, t)
  442. local A = startpos:lerp(pos2, t)
  443. local B = pos2:lerp(pos3, t)
  444. local C = pos3:lerp(endpos, t)
  445. local lerp1 = A:lerp(B, t)
  446. local lerp2 = B:lerp(C, t)
  447. local cubic = lerp1:lerp(lerp2, t)
  448. return cubic
  449. end
  450.  
  451. function Tween(obj,props,time,easing,direction,repeats,backwards)
  452. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  453. local tween = S.TweenService:Create(obj, info, props)
  454.  
  455. tween:Play()
  456. end
  457.  
  458. coroutine.resume(coroutine.create(function()
  459. while true do
  460. for i = 1, #FXTable do
  461. local data = FXTable[i]
  462. if(data)then
  463. local Frame = data.Frame
  464. local FX = data.Effect or 'ResizeAndFade'
  465. local Parent = data.Parent or Effects
  466. local Color = data.Color or C3.N(0,0,0)
  467. local Size = data.Size or V3.N(1,1,1)
  468. local MoveDir = data.MoveDirection or nil
  469. local MeshData = data.Mesh or nil
  470. local SndData = data.Sound or nil
  471. local Frames = data.Frames or 45
  472. local CFra = data.CFrame or Torso.CFrame
  473. local Settings = data.FXSettings or {}
  474. local Prt,Msh,Snd = data.Part,data.Mesh,data.Sound
  475. local grow = data.Grow
  476.  
  477. local MoveSpeed = nil;
  478. if(MoveDir)then
  479. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  480. end
  481. if(FX ~= 'Arc')then
  482. Frame = Frame + 1
  483. if(FX == "Fade")then
  484. Prt.Transparency = (Frame/Frames)
  485. elseif(FX == "Resize")then
  486. if(not Settings.EndSize)then
  487. Settings.EndSize = V3.N(0,0,0)
  488. end
  489. if(Settings.EndIsIncrement)then
  490. if(Msh)then
  491. Msh.Scale = Msh.Scale + Settings.EndSize
  492. else
  493. Prt.Size = Prt.Size + Settings.EndSize
  494. end
  495. else
  496. if(Msh)then
  497. Msh.Scale = Msh.Scale - grow/Frames
  498. else
  499. Prt.Size = Prt.Size - grow/Frames
  500. end
  501. end
  502. elseif(FX == "ResizeAndFade")then
  503. if(not Settings.EndSize)then
  504. Settings.EndSize = V3.N(0,0,0)
  505. end
  506. if(Settings.EndIsIncrement)then
  507. if(Msh)then
  508. Msh.Scale = Msh.Scale + Settings.EndSize
  509. else
  510. Prt.Size = Prt.Size + Settings.EndSize
  511. end
  512. else
  513. if(Msh)then
  514. Msh.Scale = Msh.Scale - grow/Frames
  515. else
  516. Prt.Size = Prt.Size - grow/Frames
  517. end
  518. end
  519. Prt.Transparency = (Frame/Frames)
  520. end
  521. if(Settings.RandomizeCFrame)then
  522. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  523. end
  524. if(MoveDir and MoveSpeed)then
  525. local Orientation = Prt.Orientation
  526. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  527. Prt.Orientation = Orientation
  528. end
  529. if(Prt.Transparency >= 1 or Frame >= Frames)then
  530. Prt:destroy()
  531. table.remove(FXTable,i)
  532. else
  533. data.Frame = Frame
  534. end
  535. else
  536. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  537. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  538. if(start and endP)then
  539. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  540. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  541. Frame = Frame + Settings.Speed or 0.01
  542. if(Settings.Home)then
  543. endP = Settings.Home.CFrame
  544. end
  545. Prt.CFrame = Bezier(start, quarter, threequarter, endP, i)
  546. if(Prt.Transparency >= 1 or Frame >= Frames)then
  547. if(Settings.RemoveOnGoal)then
  548. Prt:destroy()
  549. end
  550. end
  551. else
  552.  
  553. end
  554. end
  555. end
  556. end
  557. swait()
  558. end
  559. end))
  560.  
  561. function Effect(data)
  562. local FX = data.Effect or 'ResizeAndFade'
  563. local Parent = data.Parent or Effects
  564. local Color = data.Color or C3.N(0,0,0)
  565. local Size = data.Size or V3.N(1,1,1)
  566. local MoveDir = data.MoveDirection or nil
  567. local MeshData = data.Mesh or nil
  568. local SndData = data.Sound or nil
  569. local Frames = data.Frames or 45
  570. local Manual = data.Manual or nil
  571. local Material = data.Material or nil
  572. local CFra = data.CFrame or Torso.CFrame
  573. local Settings = data.FXSettings or {}
  574. local Shape = data.Shape or Enum.PartType.Block
  575. local Snd,Prt,Msh;
  576. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  577. Prt = Manual
  578. else
  579. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  580. Prt.Shape = Shape
  581. end
  582. if(typeof(MeshData) == 'table')then
  583. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  584. elseif(typeof(MeshData) == 'Instance')then
  585. Msh = MeshData:Clone()
  586. Msh.Parent = Prt
  587. elseif(Shape == Enum.PartType.Block)then
  588. Msh = Mesh(Prt,Enum.MeshType.Brick)
  589. end
  590. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  591. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  592. end
  593. if(Snd)then
  594. repeat wait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  595. data.Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  596. end
  597. data.Part = Prt
  598. data.Mesh = Msh
  599. data.Sound = Snd
  600. data.Frame = 0
  601. data.Size = (Msh and Msh.Scale or Size)
  602. Size = (Msh and Msh.Scale or Size)
  603. data.Grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
  604. table.insert(FXTable,data)
  605. return Prt,Msh,Snd
  606. end
  607.  
  608. function Zap(data)
  609. local sCF,eCF = data.StartCFrame,data.EndCFrame
  610. assert(sCF,"You need a start CFrame!")
  611. assert(eCF,"You need an end CFrame!")
  612. local parts = data.PartCount or 15
  613. local zapRot = data.ZapRotation or {-5,5}
  614. local startThick = data.StartSize or 3;
  615. local endThick = data.EndSize or startThick/2;
  616. local color = data.Color or BrickColor.new'Electric blue'
  617. local delay = data.Delay or 35
  618. local delayInc = data.DelayInc or 0
  619. local lastLightning;
  620. local MagZ = (sCF.p - eCF.p).magnitude
  621. local thick = startThick
  622. local inc = (startThick/parts)-(endThick/parts)
  623.  
  624. for i = 1, parts do
  625. local pos = sCF.p
  626. if(lastLightning)then
  627. pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
  628. end
  629. delay = delay + delayInc
  630. local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
  631. 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)))
  632. if(parts == i)then
  633. local MagZ = (pos-eCF.p).magnitude
  634. zapPart.Size = V3.N(endThick,endThick,MagZ)
  635. zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
  636. 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)}}
  637. else
  638. zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
  639. end
  640.  
  641. lastLightning = zapPart
  642. Effect{Effect='Fade',Manual=zapPart,Frames=delay}
  643.  
  644. thick=thick-inc
  645.  
  646. end
  647. end
  648.  
  649.  
  650. function SoulSteal(whom)
  651. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  652. if(torso and torso:IsA'BasePart')then
  653. local Model = Instance.new("Model",Effects)
  654. Model.Name = whom.Name.."'s Soul"
  655. whom:BreakJoints()
  656. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  657. Soul.Name = 'Head'
  658. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  659. Effect{
  660. Effect="Arc",
  661. Manual = Soul,
  662. FXSettings={
  663. Start=torso.CFrame,
  664. Home = Torso,
  665. RemoveOnGoal = true,
  666. }
  667. }
  668. local lastPoint = Soul.CFrame.p
  669.  
  670. for i = 0, 1, 0.01 do
  671. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  672. local mag = (lastPoint - Soul.Position).magnitude
  673. Effect{
  674. Effect = "Fade",
  675. CFrame = point * CF.N(0, mag/2, 0),
  676. Size = V3.N(.5,mag+.5,.5),
  677. Color = Soul.BrickColor
  678. }
  679. lastPoint = Soul.CFrame.p
  680. swait()
  681. end
  682. for i = 1, 5 do
  683. Effect{
  684. Effect="Fade",
  685. Color = BrickColor.new'Really red',
  686. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  687. }
  688. end
  689. end
  690. end
  691.  
  692. --// Other Functions \\ --
  693.  
  694. function getRegion(point,range,ignore)
  695. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  696. end
  697.  
  698. function CastRay(startPos,endPos,range,ignoreList)
  699. local ray = Ray.new(startPos,(endPos-startPos).unit*range)
  700. local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
  701. return part,pos,norm,(pos and (startPos-pos).magnitude)
  702. end
  703.  
  704.  
  705. function WingFlutter(Alpha)
  706. Alpha = Alpha or .1
  707. for x = 1, 4 do
  708. if(FeatherWelds[1][x][1])then
  709. 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)
  710. end
  711. for i = 2, #FeatherWelds[1][x] do
  712. 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)
  713. end
  714. end
  715. for x = 1, 4 do
  716. if(FeatherWelds[2][x][1])then
  717. 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)
  718. end
  719. for i = 2, #FeatherWelds[2][x] do
  720. 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)
  721. end
  722. end
  723. end
  724.  
  725. function clerp(startCF,endCF,alpha)
  726. return startCF:lerp(endCF, alpha)
  727. end
  728.  
  729. function GetTorso(char)
  730. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  731. end
  732.  
  733. function ShowDamage(Pos, Text, Time, Color)
  734. local Rate = (1 / 30)
  735. local Pos = (Pos or Vector3.new(0, 0, 0))
  736. local Text = (Text or "")
  737. local Time = (Time or 2)
  738. local Color = (Color or Color3.new(1, 0, 1))
  739. local EffectPart = NewInstance("Part",Effects,{
  740. Material=Enum.Material.SmoothPlastic,
  741. Reflectance = 0,
  742. Transparency = 1,
  743. BrickColor = BrickColor.new(Color),
  744. Name = "Effect",
  745. Size = Vector3.new(0,0,0),
  746. Anchored = true
  747. })
  748. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  749. Size = UDim2.new(1.25, 0, 1.25, 0),
  750. Adornee = EffectPart,
  751. })
  752. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  753. BackgroundTransparency = 1,
  754. Size = UDim2.new(1, 0, 1, 0),
  755. Text = Text,
  756. Font = "Arial",
  757. TextColor3 = Color,
  758. TextStrokeColor3 = Color3.new(0,0,0),
  759. TextStrokeTransparency=0,
  760. TextScaled = true,
  761. })
  762. game.Debris:AddItem(EffectPart, (Time))
  763. EffectPart.Parent = game:GetService("Workspace")
  764. delay(0, function()
  765. local Frames = (Time / Rate)
  766. for Frame = 1, Frames do
  767. wait(Rate)
  768. local Percent = (Frame / Frames)
  769. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  770. TextLabel.TextTransparency = Percent
  771. TextLabel.TextStrokeTransparency = Percent
  772. end
  773. if EffectPart and EffectPart.Parent then
  774. EffectPart:Destroy()
  775. end
  776. end)
  777. end
  778.  
  779.  
  780. function DealDamage(who,minDam,maxDam,Knock,Type,critChance,critMult)
  781. if(who)then
  782. local hum = who:FindFirstChildOfClass'Humanoid'
  783. local Damage = M.RNG(minDam,maxDam)
  784. local canHit = true
  785. if(hum)then
  786. for _, p in pairs(Hit) do
  787. if p[1] == hum then
  788. if(time() - p[2] < 0.1) then
  789. canHit = false
  790. else
  791. Hit[_] = nil
  792. end
  793. end
  794. end
  795. if(canHit)then
  796. table.insert(Hit,{hum,time()})
  797. if(hum.Health >= math.huge)then
  798. who:BreakJoints()
  799. if(who:FindFirstChild'Head' and hum.Health > 0)then
  800. 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))
  801. end
  802. else
  803. local player = S.Players:GetPlayerFromCharacter(who)
  804. if(Type == "Fire")then
  805. --idk..
  806. else
  807. local c = Instance.new("ObjectValue",hum)
  808. c.Name = "creator"
  809. c.Value = Plr
  810. game:service'Debris':AddItem(c,0.35)
  811. if(M.RNG(1,100) <= (critChance or 0) and critMult > 1)then
  812. if(who:FindFirstChild'Head' and hum.Health > 0)then
  813. 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)
  814. end
  815. hum.Health = hum.Health - Damage*(critMult or 2)
  816. else
  817. if(who:FindFirstChild'Head' and hum.Health > 0)then
  818. 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)
  819. end
  820. hum.Health = hum.Health - Damage
  821. end
  822. if(Type == 'Knockback' and GetTorso(who))then
  823. local angle = GetTorso(who).Position - Root.Position + Vector3.new(0, 0, 0).unit
  824. local body = NewInstance('BodyVelocity',GetTorso(who),{
  825. P = 500,
  826. maxForce = V3.N(math.huge,0,math.huge),
  827. velocity = Root.CFrame.lookVector * Knock + Root.Velocity / 1.05
  828. })
  829. game:service'Debris':AddItem(body,.5)
  830. elseif(Type == "Electric")then
  831. if(M.RNG(1,100) >= critChance)then
  832. if(who:FindFirstChild'Head' and hum.Health > 0)then
  833. 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)
  834. end
  835. local asd = hum.WalkSpeed/2
  836. hum.WalkSpeed = asd
  837. local paralyzed = true
  838. coroutine.wrap(function()
  839. while paralyzed do
  840. swait(25)
  841. if(M.RNG(1,25) == 1)then
  842. if(who:FindFirstChild'Head' and hum.Health > 0)then
  843. 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)
  844. end
  845. hum.PlatformStand = true
  846. end
  847. end
  848. end)()
  849. delay(4, function()
  850. paralyzed = false
  851. hum.WalkSpeed = hum.WalkSpeed + asd
  852. end)
  853. end
  854.  
  855. elseif(Type == 'Knockdown' and GetTorso(who))then
  856. local rek = GetTorso(who)
  857. hum.PlatformStand = true
  858. delay(1,function()
  859. hum.PlatformStand = false
  860. end)
  861. local angle = (GetTorso(who).Position - (Root.Position + Vector3.new(0, 0, 0))).unit
  862. local bodvol = NewInstance("BodyVelocity",rek,{
  863. velocity = angle * Knock,
  864. P = 5000,
  865. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  866. })
  867. local rl = NewInstance("BodyAngularVelocity",rek,{
  868. P = 3000,
  869. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  870. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  871. })
  872. game:GetService("Debris"):AddItem(bodvol, .5)
  873. game:GetService("Debris"):AddItem(rl, .5)
  874. end
  875. end
  876. end
  877. end
  878. end
  879. end
  880. end
  881.  
  882. function AOEDamage(where,range,minDam,maxDam,Knock,Type,critChance,critMult)
  883. for _,v in next, getRegion(where,range,{Char}) do
  884. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  885. DealDamage(v.Parent,minDam,maxDam,Knock,Type,critChance,critMult)
  886. end
  887. end
  888. end
  889. function AOEHeal(where,range,amount)
  890. local healed = {}
  891. for _,v in next, getRegion(where,range,{Char}) do
  892. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  893. if(hum and not healed[hum])then
  894. hum.Health = hum.Health + amount
  895. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  896. 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)
  897. end
  898. end
  899. end
  900. end
  901.  
  902.  
  903. --// Attack Functions \\--
  904.  
  905. function Smite()
  906. Zap{
  907. StartCFrame=CF.N(Mouse.Hit.p)*CF.N(0,500,0),
  908. EndCFrame=CF.N(Mouse.Hit.p),
  909. ZapRotation = {-5,5},
  910. StartSize = 5,
  911. EndSize = 1,
  912. Delay=5,
  913. DelayInc=1,
  914. }
  915. AOEDamage(Mouse.Hit.p,3,15,35,false,"Electric",75,1)
  916. end
  917.  
  918. function LightningStorm()
  919. Attack = true
  920. Rooted = true
  921. NeutralAnims = false
  922. Hum.AutoRotate = false
  923. repeat swait()
  924. Root.CFrame = Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  925. local Alpha = .3
  926. 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)
  927. 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)
  928. 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)
  929. 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)
  930. 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)
  931. 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)
  932. 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)
  933. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  934. WingFlutter()
  935. until not S.UserInputService:IsKeyDown(Enum.KeyCode.C)
  936. local where = Mouse.Hit.p
  937. for i = 0, 6, .1 do
  938. swait()
  939. local Alpha = .3
  940. 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)
  941. 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)
  942. 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)
  943. 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)
  944. 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)
  945. 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)
  946. 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)
  947. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  948. WingFlutter()
  949. end
  950. for i = 0, 1.4, .1 do
  951. swait()
  952. local Alpha = .3
  953. 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)
  954. 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)
  955. 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)
  956. 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)
  957. 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)
  958. 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)
  959. 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)
  960. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  961. WingFlutter()
  962. end
  963. for i = 0, .8, .1 do
  964. swait()
  965. local Alpha = .3
  966. 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)
  967. 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)
  968. 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)
  969. 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)
  970. 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)
  971. 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)
  972. 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)
  973. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  974. WingFlutter()
  975. end
  976.  
  977. for i = 0, 6, .1 do
  978. pcall(function() Sound(Torso,481719045,1,1,false,true,true) end)
  979. local pos = CF.N(where)*CF.N(M.RNG(-1000,1000,100),0,M.RNG(-1000,1000,100))
  980. local part,rayPos,norm,dist = CastRay(pos*CF.N(0,500,0).p,pos.p,1500)
  981. Zap{
  982. StartCFrame=pos*CF.N(0,500,0),
  983. EndCFrame=CF.N(rayPos),
  984. ZapRotation = {-5,5},
  985. StartSize = 1,
  986. EndSize = .5,
  987. Delay=10,
  988. DelayInc=2,
  989. }
  990. AOEDamage(rayPos,5,45,65,0,'Electric',25,2)
  991. swait()
  992. local Alpha = .3
  993. 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)
  994. 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)
  995. 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)
  996. 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)
  997. 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)
  998. 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)
  999. 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)
  1000. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1001. WingFlutter()
  1002. end
  1003. Hum.AutoRotate = true
  1004. Attack = false
  1005. NeutralAnims = true
  1006. Rooted = false
  1007. end
  1008.  
  1009.  
  1010. function HolyBomb()
  1011. Attack = true
  1012. Chat2("It's time to cleanse this world!")
  1013. swait(60)
  1014. Rooted = true
  1015. NeutralAnims = false
  1016. for i = 0, 6, 0.1 do
  1017. swait()
  1018. local Alpha = .05
  1019. Zap{
  1020. StartCFrame=CF.N(Root.CFrame.p)*CF.N(0,250,0),
  1021. EndCFrame=CF.N(Root.CFrame.p),
  1022. ZapRotation = {-15,15},
  1023. Color=C3.N(1,1,0),
  1024. StartSize = 1,
  1025. EndSize = 1,
  1026. Delay=5,
  1027. DelayInc=1,
  1028. }
  1029. 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)
  1030. 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)
  1031. 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)
  1032. 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)
  1033. 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)
  1034. 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)
  1035. WingFlutter()
  1036. 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)
  1037. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),.3)
  1038. end
  1039. for i = 0, .8, 0.1 do
  1040. swait()
  1041. local Alpha = .3
  1042. 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)
  1043. 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)
  1044. 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)
  1045. 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)
  1046. 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)
  1047. 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)
  1048. end
  1049. delay(1, function()
  1050. NeutralAnims = true
  1051. Rooted = false
  1052. end)
  1053. local start = NewInstance("Part",Effects,{Anchored=true,CanCollide=false,Transparency=1,CFrame=Root.CFrame})
  1054. Sound(Char,579687077,.5,2,false,true,true)
  1055. Sound(Char,239000203,.75,2,false,true,true)
  1056. for i = 1, 140 do
  1057. AOEDamage(start.CFrame.p,95,1000,1000,0,'Normal',100,5)
  1058. Effect{
  1059. Effect='ResizeAndFade',
  1060. Mesh={MeshType=Enum.MeshType.Sphere},
  1061. Color=C3.N(1,1,0),
  1062. Material=Enum.Material.Neon,
  1063. CFrame=CF.N(start.CFrame.p)*CF.N(M.RNG(-75,75),M.RNG(-75,75),M.RNG(-75,75)),
  1064. Frames=60,
  1065. FXSettings={
  1066. EndIsIncrement=true,
  1067. EndSize=V3.N(.6,.6,.6)
  1068. }
  1069. }
  1070. swait(1)
  1071. end
  1072. Attack = false
  1073. end
  1074.  
  1075. function Lazor()
  1076. Rooted = true
  1077. Attack = true
  1078. Hum.AutoRotate=false
  1079. NeutralAnims = false
  1080. Chat2("Begone, sinner.")
  1081. --Effect{Effect='Resize',Mesh={MeshType=Enum.MeshType.FileMesh},Size=V3.N(1,1,1),CFrame=,Frames=60,FXSettings={EndSize=V3.N(4,4,4)}}
  1082. local snd = Sound(Torso,705787045,1,1,true,false,false)
  1083. for i = 0, 6, .1 do
  1084. Effect{
  1085. Effect='Fade',
  1086. Color=BrickColor.new'New Yeller',
  1087. Size=V3.N((i/2),(i/2),(i/2)),
  1088. Material=Enum.Material.Neon,
  1089. Mesh={MeshType=Enum.MeshType.Sphere},
  1090. Frames=15,
  1091. CFrame=RArm.CFrame*CF.N(0,-1.5,0),
  1092. Sound=false
  1093. }
  1094. swait()
  1095. Root.CFrame =Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  1096. local Alpha = .1
  1097. Change = .5
  1098. 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)
  1099. 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)
  1100. 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)
  1101. 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)
  1102. 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)
  1103. 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)
  1104. 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)
  1105. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1106. WingFlutter()
  1107. end
  1108. snd:Play()
  1109. for i = 0, 24, .1 do
  1110. swait()
  1111. Effect{
  1112. Effect='Fade',
  1113. Color=BrickColor.new'New Yeller',
  1114. Size=V3.N(3,3,3),
  1115. Material=Enum.Material.Neon,
  1116. Mesh={MeshType=Enum.MeshType.Sphere},
  1117. Frames=15,
  1118. CFrame=RArm.CFrame*CF.N(0,-1.5,0),
  1119. }
  1120. if(Mouse.Target)then
  1121. Zap{
  1122. StartCFrame=RArm.CFrame*CF.N(0,-1.5,0),
  1123. EndCFrame=Mouse.Hit,
  1124. ZapRotation = {-5,5},
  1125. PartCount=10,
  1126. StartSize = .5,
  1127. EndSize = .5,
  1128. Color = C3.N(1,1,0),
  1129. DelayInc=0,
  1130. Delay =5,
  1131. }
  1132. end
  1133. AOEDamage(Mouse.Hit.p,3,10,15,false,"Electric",25,2)
  1134. Root.CFrame = Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  1135. local Alpha = .1
  1136. Change = .5
  1137. 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)
  1138. 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)
  1139. 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)
  1140. 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)
  1141. 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)
  1142. 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)
  1143. 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)
  1144. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1145. WingFlutter()
  1146. end
  1147. coroutine.wrap(function()
  1148. for i = 1, 0,-.05 do
  1149. snd.Volume = i
  1150. swait()
  1151. end
  1152. snd:destroy()
  1153. end)()
  1154. Rooted = false
  1155. Attack = false
  1156. Hum.AutoRotate=true
  1157. NeutralAnims = true
  1158. end
  1159.  
  1160. function Teleport()
  1161. Rooted = true
  1162. Attack = true
  1163. Hum.AutoRotate=false
  1164. NeutralAnims = false
  1165. repeat swait()
  1166. Root.CFrame =Root.CFrame:lerp(CF.N(Root.CFrame.p,V3.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z)),.1)
  1167. local Alpha = .1
  1168. Change = .5
  1169. 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)
  1170. 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)
  1171. 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)
  1172. 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)
  1173. 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)
  1174. 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)
  1175. 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)
  1176. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1177. WingFlutter()
  1178. until not S.UserInputService:IsKeyDown(Enum.KeyCode.Q)
  1179. local p = Mouse.Hit.p
  1180.  
  1181. --
  1182. 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})
  1183. local decalF = NewInstance("Decal",circle,{Name='Front',Texture="rbxassetid://524002938",Color3=C3.N(1,1,0),Face=Enum.NormalId.Front,Transparency = 1})
  1184. local decalB = NewInstance("Decal",circle,{Name='Back',Texture="rbxassetid://524002938",Color3=C3.N(1,1,0),Face=Enum.NormalId.Back,Transparency=1})
  1185. local asd = CF.N(p,Root.Position)
  1186. local circle2=circle:Clone()
  1187. circle2.Parent = Effects
  1188. circle2.CFrame = asd*CF.N(0,4,0)
  1189. Root.Anchored = true
  1190. for i = 0, 3, .1 do
  1191. swait()
  1192. local Alpha = .1
  1193. Change = .5
  1194. 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)
  1195. 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)
  1196. 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)
  1197. 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)
  1198. 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)
  1199. 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)
  1200. 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)
  1201. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1202. WingFlutter()
  1203. circle.Size = circle.Size + V3.N(.2,.2,0)
  1204. circle2.Size = circle2.Size + V3.N(.2,.2,0)
  1205. circle.Front.Transparency=1-(i/3)
  1206. circle.Back.Transparency=1-(i/3)
  1207. circle2.Front.Transparency=1-(i/3)
  1208. circle2.Back.Transparency=1-(i/3)
  1209.  
  1210. circle.CFrame=circle.CFrame*CF.A(0,0,M.R(5))
  1211. circle2.CFrame=circle2.CFrame*CF.A(0,0,M.R(5))
  1212. end
  1213. Root.Anchored = true
  1214. for i = 1, 3,.1 do
  1215. Root.Anchored = true
  1216. swait()
  1217. local Alpha = .1
  1218. Change = .5
  1219. 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)
  1220. 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)
  1221. 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)
  1222. 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)
  1223. 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)
  1224. 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)
  1225. 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)
  1226. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1227. WingFlutter()
  1228. end
  1229. for i = 0, 2, .1 do
  1230. swait()
  1231. local Alpha = .1
  1232. Change = .5
  1233. 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)
  1234. 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)
  1235. 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)
  1236. 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)
  1237. 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)
  1238. 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)
  1239. 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)
  1240. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1241. WingFlutter()
  1242. Root.CFrame = Root.CFrame * CF.N(0,0,-.1)
  1243. Transparency(i/2)
  1244. end
  1245. Zap{
  1246. StartCFrame=Root.CFrame,
  1247. EndCFrame=asd*CF.N(0,4,0),
  1248. ZapRotation = {-5,5},
  1249. PartCount=10,
  1250. StartSize = 4,
  1251. EndSize = .5,
  1252. Color = C3.N(1,1,0),
  1253. DelayInc=5,
  1254. Delay = 15,
  1255. }
  1256. Root.CFrame = asd*CF.N(0,4,0)
  1257. Root.Anchored = true
  1258.  
  1259. for i = 0, 2, .1 do
  1260. Root.Anchored = true
  1261. swait()
  1262. local Alpha = .1
  1263. Change = .5
  1264. 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)
  1265. 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)
  1266. 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)
  1267. 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)
  1268. 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)
  1269. 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)
  1270. 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)
  1271. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1272. WingFlutter()
  1273. Root.CFrame = Root.CFrame * CF.N(0,0,-.1)
  1274. Transparency(1-(i/2))
  1275. end
  1276.  
  1277.  
  1278. Transparency(0)
  1279. coroutine.wrap(function()
  1280. for i = 0, 3, .1 do
  1281. swait()
  1282. local Alpha = .1
  1283. Change = .5
  1284. circle.Size = circle.Size - V3.N(.2,.2,0)
  1285. circle2.Size = circle2.Size - V3.N(.2,.2,0)
  1286. circle.Front.Transparency=(i/3)
  1287. circle.Back.Transparency=(i/3)
  1288. circle2.Front.Transparency=(i/3)
  1289. circle2.Back.Transparency=(i/3)
  1290.  
  1291. circle.CFrame=circle.CFrame*CF.A(0,0,-M.R(5))
  1292. circle2.CFrame=circle2.CFrame*CF.A(0,0,-M.R(5))
  1293. end
  1294. end)()
  1295. Hum.AutoRotate = true
  1296. Root.Anchored = false
  1297. Rooted = false
  1298. Attack = false
  1299. NeutralAnims = true
  1300. end
  1301.  
  1302. function Intro()
  1303. Introed = true
  1304. Attack = true
  1305. NeutralAnims = false
  1306. WalkSpeed = 0
  1307. if(Plr.UserId ~= 5719877 and Plr.UserId ~= 52302680)then
  1308. repeat swait()
  1309. local Alpha = .1
  1310. RJ.C0 = RJ.C0:lerp(CFrame.new(0, -0.659279823, -0.288724184, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876),Alpha)
  1311. LH.C0 = LH.C0:lerp(CFrame.new(-0.456918478, -0.507697642, -0.944418013, 0.986825883, 0.161786035, -5.37728511e-06, -0.1516985, 0.92530781, 0.347552806, 0.056234166, -0.342973292, 0.937660456),Alpha)
  1312. RH.C0 = RH.C0:lerp(CFrame.new(0.477304339, -0.125261724, -0.507861257, 0.98992312, -0.141605809, -3.82855831e-07, 0.127958953, 0.894523203, -0.428316146, 0.0606523976, 0.423999995, 0.903628945),Alpha)
  1313. LS.C0 = LS.C0:lerp(CFrame.new(-0.62397927, 0.737813473, -0.324518442, 0.906307757, -0.4226183, -5.19416233e-07, -0.365998745, -0.784886122, -0.499998629, 0.211308151, 0.453152895, -0.866026163),Alpha)
  1314. RS.C0 = RS.C0:lerp(CFrame.new(0.697078168, 0.665875912, -0.34805128, 0.906307697, 0.383022696, -0.17860584, 0.242404759, -0.817320883, -0.522710621, -0.346188307, 0.430441678, -0.833590746),Alpha)
  1315. NK.C0 = NK.C0:lerp(CFrame.new(8.61270819e-05, 1.49900413, -0.00497497618, 0.999878228, 0.000897826976, -0.0155868568, -2.24914402e-07, 0.998345912, 0.0574918389, 0.0156126935, -0.0574848056, 0.998224258),Alpha)
  1316.  
  1317. until Music.TimePosition >= 2
  1318. local laugh = Sound(Head,415880409,1,0,false,false,true)
  1319. local pitch = IN"PitchShiftSoundEffect"
  1320. pitch.Octave = .75
  1321. pitch.Parent = laugh
  1322. repeat swait()
  1323. local Alpha = .1
  1324. local gay = GetClientProperty(laugh,'PlaybackLoudness')/250
  1325. RJ.C0 = RJ.C0:lerp(CFrame.new(0, -0.659279823+gay, -0.288724184, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876),Alpha)
  1326. LH.C0 = LH.C0:lerp(CFrame.new(-0.456918478, -0.507697642-gay, -0.944418013, 0.986825883, 0.161786035, -5.37728511e-06, -0.1516985, 0.92530781, 0.347552806, 0.056234166, -0.342973292, 0.937660456),Alpha)
  1327. RH.C0 = RH.C0:lerp(CFrame.new(0.477304339, -0.125261724-gay, -0.507861257, 0.98992312, -0.141605809, -3.82855831e-07, 0.127958953, 0.894523203, -0.428316146, 0.0606523976, 0.423999995, 0.903628945),Alpha)
  1328. LS.C0 = LS.C0:lerp(CFrame.new(-0.62397927, 0.737813473, -0.324518442, 0.906307757, -0.4226183, -5.19416233e-07, -0.365998745, -0.784886122, -0.499998629, 0.211308151, 0.453152895, -0.866026163),Alpha)
  1329. RS.C0 = RS.C0:lerp(CFrame.new(0.697078168, 0.665875912, -0.34805128, 0.906307697, 0.383022696, -0.17860584, 0.242404759, -0.817320883, -0.522710621, -0.346188307, 0.430441678, -0.833590746),Alpha)
  1330. NK.C0 = NK.C0:lerp(CFrame.new(8.61270819e-05, 1.49900413, -0.00497497618, 0.999878228, 0.000897826976, -0.0155868568, -2.24914402e-07, 0.998345912, 0.0574918389, 0.0156126935, -0.0574848056, 0.998224258),Alpha)
  1331. until Music.TimePosition >= 4
  1332. laugh:Pause()
  1333. repeat swait()
  1334. local Alpha = .1
  1335. RJ.C0 = RJ.C0:lerp(CFrame.new(0, -0.659279823, -0.288724184, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876),Alpha)
  1336. LH.C0 = LH.C0:lerp(CFrame.new(-0.456918478, -0.507697642, -0.944418013, 0.986825883, 0.161786035, -5.37728511e-06, -0.1516985, 0.92530781, 0.347552806, 0.056234166, -0.342973292, 0.937660456),Alpha)
  1337. RH.C0 = RH.C0:lerp(CFrame.new(0.477304339, -0.125261724, -0.507861257, 0.98992312, -0.141605809, -3.82855831e-07, 0.127958953, 0.894523203, -0.428316146, 0.0606523976, 0.423999995, 0.903628945),Alpha)
  1338. LS.C0 = LS.C0:lerp(CFrame.new(-0.62397927, 0.737813473, -0.324518442, 0.906307757, -0.4226183, -5.19416233e-07, -0.365998745, -0.784886122, -0.499998629, 0.211308151, 0.453152895, -0.866026163),Alpha)
  1339. RS.C0 = RS.C0:lerp(CFrame.new(0.697078168, 0.665875912, -0.34805128, 0.906307697, 0.383022696, -0.17860584, 0.242404759, -0.817320883, -0.522710621, -0.346188307, 0.430441678, -0.833590746),Alpha)
  1340. NK.C0 = NK.C0:lerp(CFrame.new(8.61270819e-05, 1.49900413, -0.00497497618, 0.999878228, 0.000897826976, -0.0155868568, -2.24914402e-07, 0.998345912, 0.0574918389, 0.0156126935, -0.0574848056, 0.998224258),Alpha)
  1341. until Music.TimePosition >= 6
  1342. laugh.TimePosition = 4
  1343. laugh:Resume()
  1344. repeat swait()
  1345. local Alpha = .1
  1346. local gay = GetClientProperty(laugh,'PlaybackLoudness')/250
  1347. RJ.C0 = RJ.C0:lerp(CFrame.new(0, -0.659279823+gay, -0.288724184, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876),Alpha)
  1348. LH.C0 = LH.C0:lerp(CFrame.new(-0.456918478, -0.507697642-gay, -0.944418013, 0.986825883, 0.161786035, -5.37728511e-06, -0.1516985, 0.92530781, 0.347552806, 0.056234166, -0.342973292, 0.937660456),Alpha)
  1349. RH.C0 = RH.C0:lerp(CFrame.new(0.477304339, -0.125261724-gay, -0.507861257, 0.98992312, -0.141605809, -3.82855831e-07, 0.127958953, 0.894523203, -0.428316146, 0.0606523976, 0.423999995, 0.903628945),Alpha)
  1350. LS.C0 = LS.C0:lerp(CFrame.new(-0.62397927, 0.737813473, -0.324518442, 0.906307757, -0.4226183, -5.19416233e-07, -0.365998745, -0.784886122, -0.499998629, 0.211308151, 0.453152895, -0.866026163),Alpha)
  1351. RS.C0 = RS.C0:lerp(CFrame.new(0.697078168, 0.665875912, -0.34805128, 0.906307697, 0.383022696, -0.17860584, 0.242404759, -0.817320883, -0.522710621, -0.346188307, 0.430441678, -0.833590746),Alpha)
  1352. NK.C0 = NK.C0:lerp(CFrame.new(8.61270819e-05, 1.49900413, -0.00497497618, 0.999878228, 0.000897826976, -0.0155868568, -2.24914402e-07, 0.998345912, 0.0574918389, 0.0156126935, -0.0574848056, 0.998224258),Alpha)
  1353. until laugh.TimePosition >= 8
  1354. for i = 0, 1, 0.1 do
  1355. swait()
  1356. local Alpha = .3
  1357. RJ.C0 = RJ.C0:lerp(CFrame.new(0, -0.925739288, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),Alpha)
  1358. LH.C0 = LH.C0:lerp(CFrame.new(-0.496666431, -0.249598682, -0.898787975, 1, 0, 0, 0, 0.93765074, 0.347578913, 0, -0.347578913, 0.93765074),Alpha)
  1359. RH.C0 = RH.C0:lerp(CFrame.new(0.4983325, -0.246445477, -0.88995266, 1, 0, 0, 0, 0.93765074, 0.347578913, 0, -0.347578913, 0.93765074),Alpha)
  1360. LS.C0 = LS.C0:lerp(CFrame.new(-0.876811266, 0.333975524, -0.106851757, 0.906307876, -0.422618061, 5.81481174e-07, -0.36599797, -0.78488642, -0.499998838, 0.211308971, 0.453152657, -0.866026103),Alpha)
  1361. RS.C0 = RS.C0:lerp(CFrame.new(0.856369436, 0.279425353, -0.014354825, 0.906307876, 0.422618061, -5.81481174e-07, 0.36599797, -0.78488642, -0.499998838, -0.211308971, 0.453152657, -0.866026103),Alpha)
  1362. NK.C0 = NK.C0:lerp(CFrame.new(8.58334824e-05, 1.49900258, -0.00497419387, 0.999878109, 0.000897928199, -0.0155862626, -3.57576369e-07, 0.998346031, 0.0574919991, 0.0156121058, -0.0574849918, 0.998224318),Alpha)
  1363. end
  1364. local gay =(GetClientProperty(laugh,'PlaybackLoudness')/150)
  1365. RJ.C0 = RJ.C0:lerp(CFrame.new(0, -0.626411915+homo+gay, 0.0182328075, 1, 0, 0, 0, 0.903630018, -0.428314, 0, 0.428314, 0.903629959),Alpha)
  1366. LH.C0 = LH.C0:lerp(CFrame.new(-0.496665955, -0.249583066, -0.898805976, 1, 0, 0, 0, 0.93765074, 0.347579092, 0, -0.347579092, 0.937650681),Alpha)
  1367. RH.C0 = RH.C0:lerp(CFrame.new(0.498333931, -0.246427357, -0.889974713, 1, 0, 0, 0, 0.93765074, 0.347579092, 0, -0.347579092, 0.937650681),Alpha)
  1368. LS.C0 = LS.C0:lerp(CFrame.new(-1.53490865, 0.416545421, 0.18082881, 0.87681073, 0.480835706, 0, -0.126874655, 0.231357872, 0.96456027, 0.463795006, -0.845736742, 0.263862848)*CF.N(0,gay,0),Alpha)
  1369. RS.C0 = RS.C0:lerp(CFrame.new(1.44881904, 0.437981188, 0.0229511559, 0.876781881, -0.480888277, -1.65002821e-05, 0.126891181, 0.231321871, 0.964566827, -0.463845015, -0.845716715, 0.263839245)*CF.N(0,gay,0),Alpha)
  1370. NK.C0 = NK.C0:lerp(CFrame.new(8.62274319e-05, 1.49898553, -0.00497042388, 0.999878228, 0.000896761485, -0.0155832022, 6.03031367e-07, 0.998346269, 0.05749017, 0.015608984, -0.0574831665, 0.998224556),Alpha)
  1371. until Music.TimePosition >= 16.1
  1372. laugh:Destroy()
  1373. end
  1374. Music.TimePosition = 16.1
  1375. DoneIntroed = true
  1376. Attack = false
  1377. NeutralAnims = true
  1378. WalkSpeed = 42
  1379. end
  1380.  
  1381. Mouse.KeyDown:connect(function(k)
  1382. if(Attack)then return end
  1383. if(k == 'q')then Teleport() end
  1384. if(k == 'z')then Lazor() end
  1385. if(k == 'x')then Smite() end
  1386. if(k == 'v')then HolyBomb() end
  1387. if(k == 'c')then LightningStorm() end
  1388. end)
  1389.  
  1390. if(not Introed)then
  1391. coroutine.wrap(Intro)()
  1392. end
  1393.  
  1394. --// Wrap it all up \\--
  1395. while true do
  1396. swait()
  1397. Sine = Sine + Change
  1398.  
  1399. if(not Music or not Music.Parent)then
  1400. local a = Music.TimePosition
  1401. Music = Sound(Char,MusicID,1,3,true,false,true)
  1402. Music.Name = 'Music'
  1403. Music.TimePosition = a
  1404. end
  1405. Music.Playing = true
  1406. Torso.Color = C3.N(0,0,0)
  1407. RArm.Color = C3.N(0,0,0)
  1408. LArm.Color = C3.N(0,0,0)
  1409. RLeg.Color = C3.N(0,0,0)
  1410. LLeg.Color = C3.N(0,0,0)
  1411. Head.Color = C3.N(0,0,0)
  1412. Music.Volume = 5
  1413. Music.Pitch = 1
  1414. Music.Playing = true
  1415. Hum.HipHeight = 2
  1416. Sine = Sine + Change
  1417. 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)
  1418. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  1419. local State = (Hum.PlatformStand and 'Paralyzed' or Hum.Sit and 'Sit' or Walking and "Walk" or "Idle")
  1420. if(time()-PulseTime > .05)then
  1421. PulseTime = time()
  1422. if(hitfloor)then
  1423. local angles = CF.A(M.RRNG(-15,15),M.RRNG(-45,45),M.RRNG(-45,45))
  1424. Effect{
  1425. Effect='ResizeAndFade',
  1426. Color=hitfloor.Color,
  1427. Material=hitfloor.Material,
  1428. Frames=60,
  1429. Mesh={MeshType=Enum.MeshType.FileMesh,MeshId="rbxassetid://662586858",Scale=V3.N(.01,.01,.01)},
  1430. CFrame=CF.N(posfloor)*angles,
  1431. MoveDirection=CF.N(posfloor)*angles*CF.N(0,6,0).p,
  1432. FXSettings = {
  1433. EndSize=V3.N(.0005,.0005,.0005),
  1434. EndIsIncrement=true
  1435. }
  1436. }
  1437. end
  1438. 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))
  1439. local hitfloor2,posfloor2 = workspace:FindPartOnRay(Ray.new(pos.p,((CFrame.new(pos.p,pos.p - Vector3.new(0,1,0))).lookVector).unit * 100), Char)
  1440.  
  1441. if(hitfloor2)then
  1442. pos = CF.N(posfloor2)
  1443. Effect{
  1444. Effect='ResizeAndFade',
  1445. Color=BrickColor.new'New Yeller',
  1446. Size=V3.N(2,2,2),
  1447. Material=Enum.Material.Neon,
  1448. Mesh={MeshType=Enum.MeshType.Sphere},
  1449. Frames=45,
  1450. CFrame=pos,
  1451. FXSettings = {
  1452. EndSize = V3.N(-.01,.25,-.01),
  1453. EndIsIncrement = true
  1454. }
  1455. }
  1456. else
  1457. Effect{
  1458. Effect='ResizeAndFade',
  1459. Color=BrickColor.new'New Yeller',
  1460. Size=V3.N(2,2,2),
  1461. Material=Enum.Material.Neon,
  1462. Mesh={MeshType=Enum.MeshType.Sphere},
  1463. Frames=45,
  1464. CFrame=pos,
  1465. FXSettings = {
  1466. EndSize = V3.N(-.01,.25,-.01),
  1467. EndIsIncrement = true
  1468. }
  1469. }
  1470. end
  1471. end
  1472. Hum.Name = math.random()*100000
  1473. Hum.MaxHealth = 1e100
  1474. Hum.Health = 1e100
  1475. if(M.RNG(1,50) == 1)then
  1476. 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))
  1477. local hitfloor2,posfloor2 = workspace:FindPartOnRay(Ray.new(pos.p,((CFrame.new(pos.p,pos.p - Vector3.new(0,1,0))).lookVector).unit * 100), Char)
  1478.  
  1479. if(hitfloor2)then
  1480. pos = CF.N(posfloor2)
  1481. end
  1482. Zap{
  1483. StartCFrame=Torso.CFrame,
  1484. EndCFrame=pos,
  1485. ZapRotation = {-2,2},
  1486. PartCount=5,
  1487. StartSize = .5,
  1488. EndSize = 0,
  1489. Color = C3.N(1,1,0),
  1490. DelayInc=5,
  1491. Delay = 15,
  1492. Sound=false
  1493. }
  1494. end
  1495. if(Rooted == false)then
  1496. Hum.WalkSpeed = 32
  1497. Hum.JumpPower = 75
  1498. else
  1499. Hum.WalkSpeed = 0
  1500. Hum.JumpPower = 0
  1501. end
  1502. if(not Effects or not Effects.Parent)then
  1503. Effects = IN("Model",Char)
  1504. Effects.Name = "Effects"
  1505. end
  1506. if(NeutralAnims)then
  1507. if(State == 'Idle')then
  1508. local Alpha = .1
  1509. Change = .5
  1510. 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)
  1511. 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)
  1512. 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)
  1513. 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)
  1514. 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)
  1515. 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)
  1516. 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)
  1517. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1518. WingFlutter()
  1519.  
  1520. elseif(State == 'Walk')then
  1521. local Alpha = .1
  1522. Change = .5
  1523. 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)
  1524. 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)
  1525. 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)
  1526. 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)
  1527. 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)
  1528. 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)
  1529. 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)
  1530. WW.C0 = WW.C0:lerp(CF.N(0,1.5+.3*M.C(Sine/12),1.5),Alpha)
  1531. WingFlutter()
  1532. elseif(State == 'Paralyzed')then
  1533. -- paralyzed
  1534. elseif(State == 'Sit')then
  1535. -- sit
  1536. end
  1537. end
  1538. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement