heyoooooooooo

Untitled

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