Advertisement
Fullgamer309

Stop Looking in my pastebin bru

Jun 19th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 195.11 KB | None | 0 0
  1. local owner = game.Players.PROISDEAD12
  2. wait(1/60)
  3.  
  4.  
  5. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  6. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  7. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  8. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  9. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG=math.random,MRS=math.randomseed,H=math.huge,RRNG = function(min,max,div) return math.rad(math.random(min,max)/(div or 1)) end}
  10. local R3 = {N=Region3.new}
  11. local De = S.Debris
  12. local WS = workspace
  13. local Lght = S.Lighting
  14. local RepS = S.ReplicatedStorage
  15. local IN = Instance.new
  16. local Plrs = S.Players
  17. local UIS = S.UserInputService
  18. local CAS = S.ContextActionService
  19.  
  20. print(UIS,CAS)
  21.  
  22. local Plr = owner
  23. local Char = Plr.Character
  24. local Hum = Char:FindFirstChildOfClass'Humanoid'
  25. local RArm = Char["Right Arm"]
  26. local LArm = Char["Left Arm"]
  27. local RLeg = Char["Right Leg"]
  28. local LLeg = Char["Left Leg"]
  29. local Root = Char:FindFirstChild'HumanoidRootPart'
  30. local Torso = Char.Torso
  31. local Head = Char.Head
  32. local NeutralAnims = true
  33. local Attack = false
  34. local Debounces = {Debounces={}}
  35. local Mouse = Plr:GetMouse()
  36. local Hit = {}
  37. local Sine = 0
  38. local Change = 1
  39. local PlrGui = Plr:FindFirstChildOfClass'PlayerGui'
  40. local Hue = 0;
  41. local Combo = 1
  42. local BloodPuddles = {}
  43.  
  44. local DontAttackPlayers = false
  45.  
  46. local BurnInterval = .7
  47.  
  48. local Radioactive = {}
  49.  
  50. local Hits = 0;
  51. local HitTime = time()
  52.  
  53. local MaxHits = 60;
  54.  
  55. local Effects = IN("Folder",Char)
  56. Effects.Name = "Effects"
  57.  
  58.  
  59.  
  60. function Output(type,...)
  61. warn(table.concat{...,"\t"})
  62. end
  63.  
  64. Output("Note","NEBULAGLITCHER V1.2")
  65. Output("Note","INITIAL CREATION: 11th of May, 2018")
  66. Output("Note","LAST UPDATE: 6th of June, 2018")
  67. Output("Warn","LEGEND:")
  68. Output("Warn","* - Exclusive")
  69. Output("Warn","MODE1 -> MODE2 - Transformation")
  70. Output("Warn","! - Brand new")
  71. Output("Warn","? - Spoiler/Upcoming")
  72. Output("Print","===========================")
  73. Output("Note","! Finally finished the 'demo' modes (The first 6 modes, and The Big Black)")
  74. Output("Print","===========================")
  75. Output("Note","Thank you for supporting the development of NebulaGlitcher!")
  76.  
  77. --// Debounce System \\--
  78.  
  79. function Debounces:New(name,cooldown)
  80. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  81. setmetatable(aaaaa,{__index = Debounces})
  82. Debounces.Debounces[name] = aaaaa
  83. return aaaaa
  84. end
  85.  
  86. function Debounces:Use(overrideUsable)
  87. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  88. if(self.Usable or overrideUsable)then
  89. self.Usable = false
  90. self.CoolingDown = true
  91. local LastUse = time()
  92. self.LastUse = LastUse
  93. delay(self.Cooldown or 2,function()
  94. if(self.LastUse == LastUse)then
  95. self.CoolingDown = false
  96. self.Usable = true
  97. end
  98. end)
  99. end
  100. end
  101.  
  102. function Debounces:Get(name)
  103. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  104. for i,v in next, Debounces.Debounces do
  105. if(i == name)then
  106. return v;
  107. end
  108. end
  109. end
  110.  
  111. function Debounces:GetProgressPercentage()
  112. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  113. if(self.CoolingDown and not self.Usable)then
  114. return math.max(
  115. math.floor(
  116. (
  117. (time()-self.LastUse)/self.Cooldown or 2
  118. )*100
  119. )
  120. )
  121. else
  122. return 100
  123. end
  124. end
  125.  
  126. --// Instance Creation Functions \\--
  127.  
  128. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  129. local Sound = IN("Sound")
  130. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  131. Sound.Pitch = pitch or 1
  132. Sound.Volume = volume or 1
  133. Sound.Looped = looped or false
  134. if(autoPlay)then
  135. coroutine.wrap(function()
  136. repeat wait() until Sound.IsLoaded
  137. Sound.Playing = autoPlay or false
  138. end)()
  139. end
  140. if(not looped and effect)then
  141. Sound.Stopped:connect(function()
  142. Sound.Volume = 0
  143. Sound:destroy()
  144. end)
  145. elseif(effect)then
  146. warn("Sound can't be looped and a sound effect!")
  147. end
  148. Sound.Parent =parent or Torso
  149. return Sound
  150. end
  151. function Part(parent,color,material,size,cframe,anchored,cancollide)
  152. local part = IN("Part")
  153. part.Parent = parent or Char
  154. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  155. part.Material = material or Enum.Material.SmoothPlastic
  156. part.TopSurface,part.BottomSurface=10,10
  157. part.Size = size or V3.N(1,1,1)
  158. part.CFrame = cframe or CF.N(0,0,0)
  159. part.CanCollide = cancollide or false
  160. part.Anchored = anchored or false
  161. return part
  162. end
  163.  
  164. function Weld(part0,part1,c0,c1)
  165. local weld = IN("Weld")
  166. weld.Parent = part0
  167. weld.Part0 = part0
  168. weld.Part1 = part1
  169. weld.C0 = c0 or CF.N()
  170. weld.C1 = c1 or CF.N()
  171. return weld
  172. end
  173.  
  174. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  175. local part = IN("SpecialMesh")
  176. part.MeshId = meshid or ""
  177. part.TextureId = textid or ""
  178. part.Scale = scale or V3.N(1,1,1)
  179. part.Offset = offset or V3.N(0,0,0)
  180. part.MeshType = meshtype or Enum.MeshType.Sphere
  181. part.Parent = parent
  182. return part
  183. end
  184.  
  185. NewInstance = function(instance,parent,properties)
  186. local inst = Instance.new(instance)
  187. inst.Parent = parent
  188. if(properties)then
  189. for i,v in next, properties do
  190. pcall(function() inst[i] = v end)
  191. end
  192. end
  193. return inst;
  194. end
  195.  
  196. function Clone(instance,parent,properties)
  197. local inst = instance:Clone()
  198. inst.Parent = parent
  199. if(properties)then
  200. for i,v in next, properties do
  201. pcall(function() inst[i] = v end)
  202. end
  203. end
  204. return inst;
  205. end
  206.  
  207. function SoundPart(id,pitch,volume,looped,effect,autoPlay,cf)
  208. local soundPart = NewInstance("Part",Effects,{Transparency=1,CFrame=cf or Torso.CFrame,Anchored=true,CanCollide=false,Size=V3.N()})
  209. local Sound = IN("Sound")
  210. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  211. Sound.Pitch = pitch or 1
  212. Sound.Volume = volume or 1
  213. Sound.Looped = looped or false
  214. if(autoPlay)then
  215. coroutine.wrap(function()
  216. repeat wait() until Sound.IsLoaded
  217. Sound.Playing = autoPlay or false
  218. end)()
  219. end
  220. if(not looped and effect)then
  221. Sound.Stopped:connect(function()
  222. Sound.Volume = 0
  223. soundPart:destroy()
  224. end)
  225. elseif(effect)then
  226. warn("Sound can't be looped and a sound effect!")
  227. end
  228. Sound.Parent = soundPart
  229. return Sound,soundPart
  230. end
  231.  
  232.  
  233. --// Extended ROBLOX tables \\--
  234. 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})
  235. --// Require stuff \\--
  236. function CamShake(who,times,intense,origin)
  237. coroutine.wrap(function()
  238. if(script:FindFirstChild'CamShake')then
  239. local cam = script.CamShake:Clone()
  240. cam:WaitForChild'intensity'.Value = intense
  241. cam:WaitForChild'times'.Value = times
  242.  
  243. if(origin)then NewInstance((typeof(origin) == 'Instance' and "ObjectValue" or typeof(origin) == 'Vector3' and 'Vector3Value'),cam,{Name='origin',Value=origin}) end
  244. cam.Parent = who
  245. wait()
  246. cam.Disabled = false
  247. elseif(who == Plr or who == Char or who:IsDescendantOf(Plr))then
  248. local intensity = intense
  249. local cam = workspace.CurrentCamera
  250. for i = 1, times do
  251. local camDistFromOrigin
  252. if(typeof(origin) == 'Instance' and origin:IsA'BasePart')then
  253. camDistFromOrigin = math.floor( (cam.CFrame.p-origin.Position).magnitude )/25
  254. elseif(typeof(origin) == 'Vector3')then
  255. camDistFromOrigin = math.floor( (cam.CFrame.p-origin).magnitude )/25
  256. end
  257. if(camDistFromOrigin)then
  258. intensity = math.min(intense, math.floor(intense/camDistFromOrigin))
  259. end
  260. cam.CFrame = cam.CFrame:lerp(cam.CFrame*CFrame.new(math.random(-intensity,intensity)/100,math.random(-intensity,intensity)/100,math.random(-intensity,intensity)/100)*CFrame.Angles(math.rad(math.random(-intensity,intensity)/100),math.rad(math.random(-intensity,intensity)/100),math.rad(math.random(-intensity,intensity)/100)),.4)
  261. swait()
  262. end
  263. end
  264. end)()
  265. end
  266.  
  267.  
  268. function CamShakeAll(times,intense,origin)
  269. for _,v in next, Plrs:players() do
  270. CamShake(v:FindFirstChildOfClass'PlayerGui' or v:FindFirstChildOfClass'Backpack' or v.Character,times,intense,origin)
  271. end
  272. end
  273.  
  274. function CamShakeAOE(origin,range,times,intense,blacklist)
  275. local hit = {}
  276. for _,v in next, getRegion(origin,range,blacklist or {}) do
  277. if(S.Players:GetPlayerFromCharacter(v.Parent) and v.Parent and not hit[v.Parent] and v.Parent:FindFirstChildOfClass'Humanoid')then
  278. CamShake(v,times,intense,origin)
  279. hit[v.Parent] = true
  280. end
  281. end
  282. end
  283.  
  284. function ServerScript(code)
  285. if(script:FindFirstChild'Loadstring')then
  286. local load = script.Loadstring:Clone()
  287. load:WaitForChild'Sauce'.Value = code
  288. load.Disabled = false
  289. load.Parent = workspace
  290. elseif(NS and typeof(NS) == 'function')then
  291. NS(code,workspace)
  292. else
  293. warn("no serverscripts lol")
  294. end
  295. end
  296.  
  297. function LocalOnPlayer(who,code)
  298. ServerScript([[
  299. wait()
  300. script.Parent=nil
  301. if(not _G.Http)then _G.Http = game:service'HttpService' end
  302.  
  303. local Http = _G.Http or game:service'HttpService'
  304.  
  305. local source = ]].."[["..code.."]]"..[[
  306. local link = "https://api.vorth.xyz/R_API/R.UPLOAD/NEW_LOCAL.php"
  307. local asd = Http:PostAsync(link,source)
  308. repeat wait() until asd and Http:JSONDecode(asd) and Http:JSONDecode(asd).Result and Http:JSONDecode(asd).Result.Require_ID
  309. local ID = Http:JSONDecode(asd).Result.Require_ID
  310. local vs = require(ID).VORTH_SCRIPT
  311. vs.Parent = game:service'Players'.]]..who.Name..[[.Character
  312. ]])
  313. end
  314.  
  315. --// Customization \\--
  316.  
  317. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  318. local Remove_Hats = false
  319. local Remove_Clothing = false
  320. local PlayerSize = 1
  321. local DamageColor = BrickColor.new'Really black'
  322. local MusicID = 407749940
  323. local Pitch = 1
  324. local VisSong = 147372923;
  325.  
  326. local God = false
  327. local Muted = false
  328.  
  329. local PrimaryParts = {}
  330. local SecondaryParts = {}
  331.  
  332. local WalkSpeed = 16
  333.  
  334. local Mode = 1;
  335.  
  336. --// Weapon and GUI creation, and Character Customization \\--
  337.  
  338. local MobileSGUI = NewInstance('ScreenGui',PlrGui,{Name='MobileButtons'})
  339.  
  340. local MobileButton = script:FindFirstChild'ContextActionButton';
  341. local ComboGUI = script:FindFirstChild'ComboGUI';
  342.  
  343.  
  344.  
  345.  
  346.  
  347. pcall(function()Char.LeftWing:destroy()end)
  348. pcall(function()Char.Halo:destroy()end)
  349. local toggleTag = true
  350. local txt = Instance.new("BillboardGui", PlrGui)
  351. txt.Adornee = Head
  352. txt.Name = "NameDetect"
  353. txt.Size = UDim2.new(4, 0, 1.2, 0)
  354. txt.StudsOffset = Vector3.new(-8, 8/1.5, 0)
  355. local text = Instance.new("TextLabel", txt)
  356. text.Size = UDim2.new(10/2, 0, 7/2, 0)
  357. text.FontSize = "Size8"
  358. text.TextScaled = true
  359. text.TextTransparency = 0
  360. text.BackgroundTransparency = 1
  361. text.TextTransparency = 0
  362. text.TextStrokeTransparency = 0
  363. text.Font = "Fantasy"
  364. text.TextStrokeColor3 = Color3.new(0,0,0)
  365. text.TextColor3 = Color3.new(1,0,0)
  366. text.Text = "Murder"
  367.  
  368. pcall(function() Char.ReaperShadowHead.Eye1.BrickColor = BrickColor.new'Really red' end)
  369. pcall(function() Char.ReaperShadowHead.Eye2.BrickColor = BrickColor.new'Really red' end)
  370.  
  371. function RecolorTextAndRename(name,col1,col2)
  372. text.TextStrokeColor3 = col2
  373. text.TextColor3 = col1
  374. text.Text = name
  375. end
  376.  
  377. New = function(Object, Parent, Name, Data)
  378. local Object = Instance.new(Object)
  379. for Index, Value in pairs(Data or {}) do
  380. Object[Index] = Value
  381. end
  382. Object.Parent = Parent
  383. Object.Name = Name
  384. return Object
  385. end
  386.  
  387. local Feather = New("Model",nil,"Feather",{})
  388. local Main = New("Part",Feather,"Main",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 33.7899933, -0.127610922, 1, 0, 0, 0, -1, 0, 0, 0, -1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  389. local Meshie = New("SpecialMesh",Main,"Mesh",{MeshType = Enum.MeshType.Brick,})
  390. local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 33.7899933, 0.144406915, 1, 0, 0, 0, -1, 0, 0, 0, -1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  391. local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 12.3999977, 10.999999),MeshType = Enum.MeshType.Brick,})
  392. local mot = New("Motor",CrystalPart,"wald",{Part0 = CrystalPart,Part1 = Main,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 0, -0.272017837, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  393. local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 33.7899933, -0.405595958, -1, 0, 0, 0, -1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  394. local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 12.3999977, 10.999999),MeshType = Enum.MeshType.Brick,})
  395. local mot = New("Motor",CrystalPart,"wald",{Part0 = CrystalPart,Part1 = Main,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0, 0, 0.277985036, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  396. local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 32.7949944, -0.405595958, -1, 0, 0, 0, -1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  397. local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 27.3999977, 10.999999),MeshType = Enum.MeshType.Wedge,})
  398. local mot = New("Motor",CrystalPart,"wald",{Part0 = CrystalPart,Part1 = Main,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0, 0.994998932, 0.277985036, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  399. local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 32.7949944, 0.144407034, 1, 0, 0, 0, -1, 0, 0, 0, -1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  400. local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 27.3999977, 10.999999),MeshType = Enum.MeshType.Wedge,})
  401. local mot = New("Motor",CrystalPart,"wald",{Part0 = CrystalPart,Part1 = Main,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.994998932, -0.272017956, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  402. local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 34.7849922, -0.405595958, 1, 0, 0, 0, 1, 0, 0, 0, 1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  403. local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 27.3999977, 10.999999),MeshType = Enum.MeshType.Wedge,})
  404. local mot = New("Motor",CrystalPart,"wald",{Part0 = CrystalPart,Part1 = Main,C1 = CFrame.new(0, -0.994998932, 0.277985036, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  405. local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-1.38499999, 34.7849922, 0.144407034, -1, 0, 0, 0, 1, 0, 0, 0, -1),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.972549, 0.972549, 0.972549),})
  406. local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 27.3999977, 10.999999),MeshType = Enum.MeshType.Wedge,})
  407. local mot = New("Motor",CrystalPart,"wald",{Part0 = CrystalPart,Part1 = Main,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, -0.994998932, -0.272017956, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
  408.  
  409. for _,v in next, Feather:children() do v.CanCollide = false v.BrickColor = BrickColor.new'Really red' v.Material = Enum.Material.Neon v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0) end
  410.  
  411. local Core = New("Model",Char,"Core",{})
  412.  
  413. local Core1 = New("Part",Core,"Core1",{BrickColor = BrickColor.new("Black"),CanCollide=false,Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.5, 0.5, 1.04999959),CFrame = CFrame.new(-11.8130245, 33.4548035, 27.3183327, -8.05594027e-08, 8.28877091e-08, 1.00000942, 0.707106829, 0.707106829, 9.31322575e-10, -0.707110167, 0.707110226, 2.70083547e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines})
  414. local CW1 = New("Motor",Core1,"CW1",{Part0 = Core1,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -3.09086197e-08, 0.707106769, -0.707106769, 3.09086197e-08, 0.707106769, 0.707106769, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.0409317017, 0.453670502, -0.00761127472, -0.0156120239, -4.36557457e-11, 0.999880552, -0.0062853382, 0.999980271, -9.81385238e-05, -0.999863088, -0.0062860758, -0.015611751),})
  415.  
  416. local Core2 = New("Part",Core,"Core2",{BrickColor = BrickColor.new("Really red"),CanCollide=false,Material = Enum.Material.Neon,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.349999994, 0.349999994, 1.06999981),CFrame = CFrame.new(-11.8130217, 33.4548035, 27.3183327, -8.05594027e-08, 8.28877091e-08, 1.00000942, 0.707106829, 0.707106829, 9.31322575e-10, -0.707110167, 0.707110226, 2.70083547e-08),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  417. local CW2 = New("Motor",Core2,"CW2",{Part0 = Core2,Part1 = Torso,C0 = CFrame.new(0, 0, 0, -3.09086197e-08, 0.707106769, -0.707106769, 3.09086197e-08, 0.707106769, 0.707106769, 1, 0, -4.37113883e-08),C1 = CFrame.new(-0.0409317017, 0.453670502, -0.00761413574, -0.0156120239, -4.36557457e-11, 0.999880552, -0.0062853382, 0.999980271, -9.81385238e-05, -0.999863088, -0.0062860758, -0.015611751),})
  418.  
  419. local CoreH = NewInstance("Humanoid",Core,{MaxHealth=500,Health=500})
  420.  
  421. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  422. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  423.  
  424. local Music = Sound(Char,MusicID,1,3,true,false,true)
  425. Music.Name = 'Music'
  426.  
  427.  
  428.  
  429. if(PlayerSize ~= 1)then
  430. for _,v in next, Char:GetDescendants() do
  431. if(v:IsA'BasePart')then
  432. v.Size = v.Size * PlayerSize
  433. end
  434. end
  435. end
  436.  
  437. local Halo = NewInstance("Model",Char,{Name='Halo'})
  438.  
  439. local LWing = NewInstance("Model",Char,{Name='LeftWing'})
  440. local RWing = NewInstance("Model",Char,{Name='RightWing'})
  441.  
  442. local LWingEXT = NewInstance("Model",Char,{Name='LeftWingEXT'})
  443. local RWingEXT = NewInstance("Model",Char,{Name='RightWingEXT'})
  444.  
  445. local LWingWelds = {}
  446. local RWingWelds = {}
  447.  
  448. local LWingEWelds = {}
  449. local RWingEWelds = {}
  450.  
  451. local HaloHandle = NewInstance("Part",Halo,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  452. local LWingHandle = NewInstance("Part",Char,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  453. local RWingHandle = NewInstance("Part",Char,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
  454.  
  455. for i = 1, 360,5 do
  456. local part = NewInstance("Part",Halo,{BrickColor=BrickColor.new"Really red",Material=Enum.Material.Neon,Size=V3.N(0.25,0.1,0.1),Anchored=false,CanCollide=false,Locked=true})
  457. local weld = NewInstance("Weld",part,{Part0=HaloHandle,Part1=part,C0=CF.A(0,M.R(i),0)*CF.N(0,0,-1)})
  458. table.insert(PrimaryParts,part)
  459. end
  460.  
  461. for i = 1, 6 do
  462. local cr = Part(Char,BrickColor.new'Really red',Enum.Material.SmoothPlastic,V3.N(.05,.05,.05),CF.N(),false,false)
  463. cr.Transparency = 1
  464. local fuck = Feather:Clone();
  465. local men = fuck.Main
  466. --local mesh = Mesh(cr,Enum.MeshType.FileMesh,'rbxassetid://9756362','',V3.N(.75,2,.2),V3.N())
  467. local weld1 = Weld(cr,men)
  468. local weld = Weld(men,LWingHandle)
  469. if(i > 3)then
  470. for _,v in next, fuck:children() do v.Parent = LWingEXT v.Transparency = 1 end
  471. else
  472. for _,v in next, fuck:children() do v.Parent = LWing end
  473. end
  474.  
  475. table.insert(LWingWelds,weld)
  476. table.insert(PrimaryParts,cr)
  477. end
  478.  
  479. for i = 1, 6 do
  480. local cr = Part(Char,BrickColor.new'Really red',Enum.Material.SmoothPlastic,V3.N(.05,.05,.05),CF.N(),false,false)
  481. cr.Transparency = 1
  482. local fuck = Feather:Clone();
  483. local men = fuck.Main
  484. --local mesh = Mesh(cr,Enum.MeshType.FileMesh,'rbxassetid://9756362','',V3.N(.75,2,.2),V3.N())
  485. local weld1 = Weld(cr,men)
  486. local weld = Weld(men,RWingHandle)
  487.  
  488. if(i > 3)then
  489. for _,v in next, fuck:children() do v.Parent = RWingEXT if(v:IsA'BasePart')then v.Transparency = 1 end end
  490. else
  491. for _,v in next, fuck:children() do v.Parent = RWing if(v:IsA'BasePart')then v.Transparency = 1 end end
  492. end
  493. table.insert(RWingWelds,weld)
  494. table.insert(PrimaryParts,cr)
  495. end
  496.  
  497. for _,v in next, PrimaryParts do
  498. if(v:IsA'BasePart')then
  499. v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  500. end
  501. end
  502.  
  503. Core1.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  504. Core2.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  505.  
  506.  
  507. --// Stop animations \\--
  508. for _,v in next, Hum:GetPlayingAnimationTracks() do
  509. v:Stop();
  510. end
  511.  
  512. pcall(game.Destroy,Char:FindFirstChild'Animate')
  513. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  514.  
  515. --// Joints \\--
  516.  
  517. 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)})
  518. 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)})
  519. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  520. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  521. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  522. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  523. local HW = NewInstance('Motor',Char,{Part0=Torso,Part1=HaloHandle,C0=CF.N(0,1.5,1.5)*CF.A(M.R(90),0,0)})
  524. local LWW = NewInstance('Motor',Char,{Part0=Torso,Part1=LWingHandle,C0=CF.N(0,0,1.5)})
  525. local RWW = NewInstance('Motor',Char,{Part0=Torso,Part1=RWingHandle,C0=CF.N(0,0,1.5)})
  526.  
  527. local LSC0 = LS.C0
  528. local RSC0 = RS.C0
  529. local NKC0 = NK.C0
  530. local LHC0 = LH.C0
  531. local RHC0 = RH.C0
  532. local RJC0 = RJ.C0
  533.  
  534. --// Artificial HB \\--
  535.  
  536. local ArtificialHB = IN("BindableEvent", script)
  537. ArtificialHB.Name = "Heartbeat"
  538.  
  539. script:WaitForChild("Heartbeat")
  540.  
  541. local tf = 0
  542. local allowframeloss = false
  543. local tossremainder = false
  544. local lastframe = tick()
  545. local frame = 1/Frame_Speed
  546. ArtificialHB:Fire()
  547.  
  548. game:GetService("RunService").Heartbeat:connect(function(s, p)
  549. tf = tf + s
  550. if tf >= frame then
  551. if allowframeloss then
  552. script.Heartbeat:Fire()
  553. lastframe = tick()
  554. else
  555. for i = 1, math.floor(tf / frame) do
  556. ArtificialHB:Fire()
  557. end
  558. lastframe = tick()
  559. end
  560. if tossremainder then
  561. tf = 0
  562. else
  563. tf = tf - frame * math.floor(tf / frame)
  564. end
  565. end
  566. end)
  567.  
  568. function swait(num)
  569. if num == 0 or num == nil then
  570. ArtificialHB.Event:wait()
  571. else
  572. for i = 0, num do
  573. ArtificialHB.Event:wait()
  574. end
  575. end
  576. end
  577.  
  578.  
  579. --// Effect Function(s) \\--
  580.  
  581. function Kill(whom)
  582. pcall(function()
  583. if(GetTorso(whom))then Sound(GetTorso(whom),62339698,.25,2,false,true,true) end
  584. for _,v in next, whom:children() do
  585. if(v:IsA'BasePart')then
  586. v:breakJoints()
  587. v.Parent = Effects
  588. v.CanCollide = false
  589. v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  590. v.Anchored = false
  591. local dustT = NewInstance("ParticleEmitter",v,{
  592. Color = ColorSequence.new(Core2.Color),
  593. LightEmission=1,
  594. Size=NumberSequence.new(.75,0),
  595. Texture="rbxassetid://284205403",
  596. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)},
  597. Lifetime = NumberRange.new(1),
  598. Rate=250,
  599. Acceleration=V3.N(0,0,0),
  600. Speed = NumberRange.new(0),
  601. Enabled = true
  602. })
  603. v.Color = Core2.Color
  604. v.Material = Enum.Material.Neon
  605. local bv = NewInstance('BodyPosition',v,{MaxForce=V3.N(150,150,150),D=1000,P=3000,position=v.Position+V3.N(M.RNG(-5,5),M.RNG(-5,5),M.RNG(-5,5))})
  606. v.Transparency = .25
  607. coroutine.wrap(function()
  608. for i = v.Transparency, 1, .01 do
  609. v.Transparency = i
  610. swait()
  611. end
  612. Sound(v,1192402877,1,1,false,true,true)
  613. v.Transparency = 1
  614. dustT.Speed=NumberRange.new(1,5)
  615. dustT.Acceleration=V3.N(0,10,0)
  616. dustT.Enabled = false
  617. S.Debris:AddItem(v,3)
  618. end)()
  619. end
  620. end
  621. end)
  622. end
  623.  
  624.  
  625. function NoobySphere(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,MeshId)
  626. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*(Range or 0),true,false)
  627. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  628. if(Mode == 6 or Mode == 4 or Mode == 696969)then
  629. fxP.Color = Core2.Color
  630. end
  631. local Scale = 1
  632. local speeder = Speed
  633. if(Type == "Multiply")then
  634. Scale = 1*Inc
  635. elseif(Type == "Divide")then
  636. Scale = 1/Inc
  637. end
  638. coroutine.wrap(function()
  639. for i = 0,10/Lifetime,.1 do
  640. if(Mode == 6 or Mode == 4 or Mode == 696969)then
  641. fxP.Color = Core2.Color
  642. end
  643.  
  644. if(Type == "Multiply")then
  645. Scale = Scale - 0.01*Inc/Lifetime
  646. elseif(Type == "Divide")then
  647. Scale = Scale - 0.01/Inc*Lifetime
  648. end
  649. speeder = speeder - 0.01*Speed*Lifetime
  650. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  651. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  652. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, 0)
  653. if(fxP.Transparency >= 1)then break end
  654. swait()
  655. end
  656. fxP:destroy()
  657. end)()
  658. end
  659.  
  660. function NoobySphere2(Lifetime,Type,Pos,StartSize,Inc,Color,MeshId,NotAffect)
  661. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos,true,false)
  662. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  663. if(not NotAffect and (Mode == 6 or Mode == 4 or Mode == 696969))then
  664. fxP.Color = Core2.Color
  665. end
  666. local Scale = 1
  667. if(Type == "Multiply")then
  668. Scale = 1*Inc
  669. elseif(Type == "Divide")then
  670. Scale = 1/Inc
  671. end
  672. coroutine.wrap(function()
  673. for i = 0,10/Lifetime,.1 do
  674. if(not NotAffect and (Mode == 6 or Mode == 4 or Mode == 696969))then
  675. fxP.Color = Core2.Color
  676. end
  677.  
  678. if(Type == "Multiply")then
  679. Scale = Scale - 0.01*Inc/Lifetime
  680. elseif(Type == "Divide")then
  681. Scale = Scale - 0.01/Inc*Lifetime
  682. end
  683. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  684. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  685. swait()
  686. end
  687. fxP:destroy()
  688. end)()
  689. return fxP
  690. end
  691.  
  692. function NoobyBlock(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,Fade,MeshId)
  693. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  694. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Brick),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  695. if(Mode == 6 or Mode == 4 or Mode == 696969)then
  696. fxP.Color = Core2.Color
  697. end
  698. local Scale = 1
  699. local speeder = Speed
  700. if(Type == "Multiply")then
  701. Scale = 1*Inc
  702. elseif(Type == "Divide")then
  703. Scale = 1/Inc
  704. end
  705. coroutine.wrap(function()
  706. for i = 0,10/Lifetime,.1 do
  707. if(Mode == 6 or Mode == 4 or Mode == 696969)then
  708. fxP.Color = Core2.Color
  709. end
  710. if(Type == "Multiply")then
  711. Scale = Scale - 0.01*Inc/Lifetime
  712. elseif(Type == "Divide")then
  713. Scale = Scale - 0.01/Inc*Lifetime
  714. end
  715. if(Fade)then
  716. fxP.Transparency = i/(10/Lifetime)
  717. end
  718. speeder = speeder - 0.01*Speed*Lifetime/10
  719. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  720. fxM.Scale = fxM.Scale - Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  721. swait()
  722. end
  723. fxP:destroy()
  724. end)()
  725. end
  726.  
  727. function Bezier(startpos, pos2, pos3, endpos, t)
  728. local A = startpos:lerp(pos2, t)
  729. local B = pos2:lerp(pos3, t)
  730. local C = pos3:lerp(endpos, t)
  731. local lerp1 = A:lerp(B, t)
  732. local lerp2 = B:lerp(C, t)
  733. local cubic = lerp1:lerp(lerp2, t)
  734. return cubic
  735. end
  736.  
  737. function SphereFX(duration,color,scale,pos,endScale,increment)
  738. return OEffect{
  739. Effect='ResizeAndFade',
  740. Color=color,
  741. Size=scale,
  742. Mesh={MeshType=Enum.MeshType.Sphere},
  743. CFrame=pos,
  744. FXSettings={
  745. EndSize=endScale,
  746. EndIsIncrement=increment
  747. }
  748. }
  749. end
  750.  
  751. function BlastFX(duration,color,scale,pos,endScale,increment)
  752. return OEffect{
  753. Effect='ResizeAndFade',
  754. Color=color,
  755. Size=scale,
  756. Mesh={MeshType=Enum.MeshType.FileMesh,MeshId='rbxassetid://20329976'},
  757. CFrame=pos,
  758. FXSettings={
  759. EndSize=endScale,
  760. EndIsIncrement=increment
  761. }
  762. }
  763. end
  764.  
  765. function BlockFX(duration,color,scale,pos,endScale,increment)
  766. return OEffect{
  767. Effect='ResizeAndFade',
  768. Color=color,
  769. Size=scale,
  770. CFrame=pos,
  771. FXSettings={
  772. EndSize=endScale,
  773. EndIsIncrement=increment
  774. }
  775. }
  776. end
  777.  
  778. function ShootBullet(data)
  779. --ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
  780. local Size = data.Size or V3.N(2,2,2)
  781. local Color = data.Color or BrickColor.new'Crimson'
  782. local StudsPerFrame = data.Speed or 10
  783. local Shape = data.Shape or 'Ball'
  784. local Frames = data.Frames or 160
  785. local Pos = data.Origin or Torso.CFrame
  786. local Direction = data.Direction or Mouse.Hit
  787. local Material = data.Material or Enum.Material.Neon
  788. local OnUpdate = data.Update or nil
  789. local OnHit = data.HitFunction or function(hit,pos)
  790. AOEDamage(pos,10,{MinimumDamage=25,MaximumDamage=60})
  791. OEffect{
  792. Effect='ResizeAndFade',
  793. Color=Color,
  794. Size=V3.N(10,10,10),
  795. Material=Enum.Material.Neon,
  796. Mesh={MeshType=Enum.MeshType.Sphere},
  797. CFrame=CF.N(pos),
  798. FXSettings={
  799. EndSize=V3.N(.05,.05,.05),
  800. EndIsIncrement=true
  801. }
  802. }
  803. for i = 1, 5 do
  804. local angles = CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180))
  805. OEffect{
  806. Effect='Fade',
  807. Frames=65,
  808. Size=V3.N(5,5,10),
  809. CFrame=CF.N(CF.N(pos)*angles*CF.N(0,0,-10).p,pos),
  810. Mesh = {MeshType=Enum.MeshType.Sphere},
  811. Material=Enum.Material.Neon,
  812. Color=Color,
  813. MoveDirection=CF.N(CF.N(pos)*angles*CF.N(0,0,-50).p,pos).p,
  814. }
  815. end
  816. end
  817.  
  818. local Bullet = Part(Effects,Color,Material,Size,Pos,true,false)
  819. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  820. if(Shape == 'Ball')then
  821. BMesh.MeshType = Enum.MeshType.Sphere
  822. elseif(Shape == 'Head')then
  823. BMesh.MeshType = Enum.MeshType.Head
  824. elseif(Shape == 'Cylinder')then
  825. BMesh.MeshType = Enum.MeshType.Cylinder
  826. end
  827.  
  828. coroutine.wrap(function()
  829. for i = 1, Frames+1 do
  830. if(OnUpdate and typeof(OnUpdate) == 'function')then
  831. OnUpdate(Bullet,BMesh,i)
  832. end
  833. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame).p,StudsPerFrame)
  834. if(hit)then
  835. OnHit(hit,pos,norm,dist)
  836. break;
  837. else
  838. Bullet.CFrame = CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame)
  839. end
  840. swait()
  841. end
  842. Bullet:destroy()
  843. end)()
  844.  
  845. end
  846.  
  847. function Puddle(hit,pos,norm,data)
  848. local material = data.Material or Enum.Material.SmoothPlastic
  849. local color = data.Color or BrickColor.new'Crimson'
  850. local size = data.Size or 1
  851.  
  852. if(hit.Name ~= 'BloodPuddle')then
  853. local Puddle = NewInstance('Part',workspace,{Material=material,BrickColor=color,Size=V3.N(size,.1,size),CFrame=CF.N(pos,pos+norm)*CF.A(90*M.P/180,0,0),Anchored=true,CanCollide=false,Archivable=false,Locked=true,Name='BloodPuddle'})
  854. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  855. BloodPuddles[Puddle] = 0
  856. else
  857. local cyl = hit:FindFirstChild'CylinderMesh'
  858. if(cyl)then
  859. BloodPuddles[hit] = 0
  860. cyl.Scale = cyl.Scale + V3.N(size,0,size)
  861. hit.Transparency = 0
  862. end
  863. end
  864. end
  865.  
  866. function Droplet(data)
  867. --ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
  868. local Size = data.Size or 1
  869. local Color = data.Color or BrickColor.new'Crimson'
  870. local StudsPerFrame = data.Speed or 1
  871. local Shape = data.Shape or 'Ball'
  872. local Frames = (data.Frames or 160)+1
  873. local Pos = data.Origin or Root.CFrame
  874. local Direction = data.Direction or Root.CFrame.lookVector*100000
  875. local Material = data.Material or Enum.Material.SmoothPlastic
  876. local Drop = data.Drop or .05
  877. local Ignorelist = data.Ignorelist or nil
  878.  
  879. local Bullet = Part(Effects,Color,Material,V3.N(Size,Size,Size),Pos,true,false)
  880. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  881. if(Shape == 'Ball')then
  882. BMesh.MeshType = Enum.MeshType.Sphere
  883. elseif(Shape == 'Head')then
  884. BMesh.MeshType = Enum.MeshType.Head
  885. elseif(Shape == 'Cylinder')then
  886. BMesh.MeshType = Enum.MeshType.Cylinder
  887. end
  888.  
  889. coroutine.wrap(function()
  890. for i = 1, Frames do
  891. Pos = Pos * CF.N(0,-(Drop*i),0)
  892. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i)).p,StudsPerFrame)
  893. if(hit and (not hit.Parent or not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent:IsA'Accessory'))then
  894. Puddle(hit,pos,norm,data)
  895. break;
  896. else
  897. Bullet.CFrame = CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i))
  898. end
  899. swait()
  900. end
  901. Bullet:destroy()
  902. end)()
  903. end
  904.  
  905. function Zap(data)
  906. local sCF,eCF = data.StartCFrame,data.EndCFrame
  907. assert(sCF,"You need a start CFrame!")
  908. assert(eCF,"You need an end CFrame!")
  909. local parts = data.PartCount or 15
  910. local zapRot = data.ZapRotation or {-5,5}
  911. local startThick = data.StartSize or 3;
  912. local endThick = data.EndSize or startThick/2;
  913. local color = data.Color or BrickColor.new'Electric blue'
  914. local delay = data.Delay or 35
  915. local delayInc = data.DelayInc or 0
  916. local lastLightning;
  917. local MagZ = (sCF.p - eCF.p).magnitude
  918. local thick = startThick
  919. local inc = (startThick/parts)-(endThick/parts)
  920.  
  921. for i = 1, parts do
  922. local pos = sCF.p
  923. if(lastLightning)then
  924. pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
  925. end
  926. delay = delay + delayInc
  927. local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
  928. 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)))
  929. if(parts == i)then
  930. local MagZ = (pos-eCF.p).magnitude
  931. zapPart.Size = V3.N(endThick,endThick,MagZ)
  932. zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
  933. OEffect{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)}}
  934. else
  935. zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
  936. end
  937.  
  938. lastLightning = zapPart
  939. OEffect{Effect='Fade',Manual=zapPart,Frames=delay}
  940.  
  941. thick=thick-inc
  942.  
  943. end
  944. end
  945.  
  946. function Zap2(data)
  947. local Color = data.Color or BrickColor.new'Electric blue'
  948. local StartPos = data.Start or Torso.Position
  949. local EndPos = data.End or Mouse.Hit.p
  950. local SegLength = data.SegL or 2
  951. local Thicc = data.Thickness or 0.5
  952. local Fades = data.Fade or 45
  953. local Parent = data.Parent or Effects
  954. local MaxD = data.MaxDist or 200
  955. local Branch = data.Branches or false
  956. local Material = data.Material or Enum.Material.Neon
  957. local Raycasts = data.Raycasts or false
  958. local Offset = data.Offset or {0,360}
  959. local AddMesh = (data.Mesh == nil and true or data.Mesh)
  960. if((StartPos-EndPos).magnitude > MaxD)then
  961. EndPos = CF.N(StartPos,EndPos)*CF.N(0,0,-MaxD).p
  962. end
  963. local hit,pos,norm,dist=nil,EndPos,nil,(StartPos-EndPos).magnitude
  964. if(Raycasts)then
  965. hit,pos,norm,dist = CastRay(StartPos,EndPos,MaxD)
  966. end
  967. local segments = dist/SegLength
  968. local model = IN("Model",Parent)
  969. model.Name = 'Lightning'
  970. local Last;
  971. for i = 1, segments do
  972. local size = (segments-i)/25
  973. local prt = Part(model,Color,Material,V3.N(Thicc+size,SegLength,Thicc+size),CF.N(),true,false)
  974. if(AddMesh)then IN("CylinderMesh",prt) end
  975. if(Last and math.floor(segments) == i)then
  976. local MagZ = (Last.CFrame*CF.N(0,-SegLength/2,0).p-EndPos).magnitude
  977. prt.Size = V3.N(Thicc+size,MagZ,Thicc+size)
  978. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,EndPos)*CF.A(M.R(90),0,0)*CF.N(0,-MagZ/2,0)
  979. elseif(not Last)then
  980. prt.CFrame = CF.N(StartPos,pos)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  981. else
  982. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,CF.N(pos)*CF.A(M.R(M.RNG(0,360)),M.R(M.RNG(0,360)),M.R(M.RNG(0,360)))*CF.N(0,0,SegLength/3+(segments-i)).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  983. end
  984. Last = prt
  985. if(Branch)then
  986. local choice = M.RNG(1,7+((segments-i)*2))
  987. if(choice == 1)then
  988. local LastB;
  989. for i2 = 1,M.RNG(2,5) do
  990. local size2 = ((segments-i)/35)/i2
  991. local prt = Part(model,Color,Material,V3.N(Thicc+size2,SegLength,Thicc+size2),CF.N(),true,false)
  992. if(AddMesh)then IN("CylinderMesh",prt) end
  993. if(not LastB)then
  994. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,Last.CFrame*CF.N(0,-SegLength/2,0)*CF.A(0,0,M.RRNG(0,360))*CF.N(0,Thicc*7,0)*CF.N(0,0,-1).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  995. else
  996. prt.CFrame = CF.N(LastB.CFrame*CF.N(0,-SegLength/2,0).p,LastB.CFrame*CF.N(0,-SegLength/2,0)*CF.A(0,0,M.RRNG(0,360))*CF.N(0,Thicc*7,0)*CF.N(0,0,-1).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  997. end
  998. LastB = prt
  999. end
  1000. end
  1001. end
  1002. end
  1003. if(Fades > 0)then
  1004. coroutine.wrap(function()
  1005. for i = 1, Fades do
  1006. for _,v in next, model:children() do
  1007. if(v:IsA'BasePart')then
  1008. v.Transparency = (i/Fades)
  1009. end
  1010. end
  1011. swait()
  1012. end
  1013. model:destroy()
  1014. end)()
  1015. else
  1016. S.Debris:AddItem(model,.01)
  1017. end
  1018. return {End=(Last and Last.CFrame*CF.N(0,-Last.Size.Y/2,0).p),Last=Last,Model=model}
  1019. end
  1020.  
  1021. function Tween(obj,props,time,easing,direction,repeats,backwards)
  1022. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  1023. local tween = S.TweenService:Create(obj, info, props)
  1024.  
  1025. tween:Play()
  1026. end
  1027.  
  1028. function OEffect(data)
  1029. local FX = data.Effect or 'ResizeAndFade'
  1030. local Parent = data.Parent or Effects
  1031. local Color = data.Color or C3.N(0,0,0)
  1032. local Size = data.Size or V3.N(1,1,1)
  1033. local MoveDir = data.MoveDirection or nil
  1034. local MeshData = data.Mesh or nil
  1035. local SndData = data.Sound or nil
  1036. local Frames = data.Frames or 45
  1037. local Manual = data.Manual or nil
  1038. local Material = data.Material or nil
  1039. local CFra = data.CFrame or Torso.CFrame
  1040. local Settings = data.FXSettings or {}
  1041. local Shape = data.Shape or Enum.PartType.Block
  1042. local Snd,Prt,Msh;
  1043. local RotInc = data.RotInc or {0,0,0}
  1044. if(typeof(RotInc) == 'number')then
  1045. RotInc = {RotInc,RotInc,RotInc}
  1046. end
  1047. coroutine.wrap(function()
  1048. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  1049. Prt = Manual
  1050. else
  1051. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  1052. Prt.Shape = Shape
  1053. end
  1054. if(typeof(MeshData) == 'table')then
  1055. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  1056. elseif(typeof(MeshData) == 'Instance')then
  1057. Msh = MeshData:Clone()
  1058. Msh.Parent = Prt
  1059. elseif(Shape == Enum.PartType.Block)then
  1060. Msh = Mesh(Prt,Enum.MeshType.Brick)
  1061. end
  1062. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  1063. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  1064. end
  1065. if(Snd)then
  1066. repeat swait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  1067. Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  1068. end
  1069. Size = (Msh and Msh.Scale or Size)
  1070. local grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
  1071.  
  1072. local MoveSpeed = nil;
  1073. if(MoveDir)then
  1074. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  1075. end
  1076. if(FX ~= 'Arc')then
  1077. for Frame = 1, Frames do
  1078. if(FX == "Fade")then
  1079. Prt.Transparency = (Frame/Frames)
  1080. elseif(FX == "Resize")then
  1081. if(not Settings.EndSize)then
  1082. Settings.EndSize = V3.N(0,0,0)
  1083. end
  1084. if(Settings.EndIsIncrement)then
  1085. if(Msh)then
  1086. Msh.Scale = Msh.Scale + Settings.EndSize
  1087. else
  1088. Prt.Size = Prt.Size + Settings.EndSize
  1089. end
  1090. else
  1091. if(Msh)then
  1092. Msh.Scale = Msh.Scale - grow/Frames
  1093. else
  1094. Prt.Size = Prt.Size - grow/Frames
  1095. end
  1096. end
  1097. elseif(FX == "ResizeAndFade")then
  1098. if(not Settings.EndSize)then
  1099. Settings.EndSize = V3.N(0,0,0)
  1100. end
  1101. if(Settings.EndIsIncrement)then
  1102. if(Msh)then
  1103. Msh.Scale = Msh.Scale + Settings.EndSize
  1104. else
  1105. Prt.Size = Prt.Size + Settings.EndSize
  1106. end
  1107. else
  1108. if(Msh)then
  1109. Msh.Scale = Msh.Scale - grow/Frames
  1110. else
  1111. Prt.Size = Prt.Size - grow/Frames
  1112. end
  1113. end
  1114. Prt.Transparency = (Frame/Frames)
  1115. end
  1116. if(Settings.RandomizeCFrame)then
  1117. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  1118. else
  1119. Prt.CFrame = Prt.CFrame * CF.A(unpack(RotInc))
  1120. end
  1121. if(MoveDir and MoveSpeed)then
  1122. local Orientation = Prt.Orientation
  1123. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  1124. Prt.Orientation = Orientation
  1125. end
  1126. swait()
  1127. end
  1128. Prt:destroy()
  1129. else
  1130. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  1131. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  1132. if(start and endP)then
  1133. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1134. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1135. for Frame = 0, 1, (Settings.Speed or 0.01) do
  1136. if(Settings.Home)then
  1137. endP = Settings.Home.CFrame
  1138. end
  1139. Prt.CFrame = Bezier(start, quarter, threequarter, endP, Frame)
  1140. end
  1141. if(Settings.RemoveOnGoal)then
  1142. Prt:destroy()
  1143. end
  1144. else
  1145. Prt:destroy()
  1146. assert(start,"You need a start position!")
  1147. assert(endP,"You need a start position!")
  1148. end
  1149. end
  1150. end)()
  1151. return Prt,Msh,Snd
  1152. end
  1153.  
  1154. function Effect(data)
  1155. local Color = data.Color or C3.N(0,0,0)
  1156. local Material = data.Material or Enum.Material.Neon;
  1157. local MeshD = data.Mesh or {};
  1158. local SoundD = data.Sound or nil;
  1159. local Shape = data.Shape or Enum.PartType.Block;
  1160. local Size = data.StartSize or V3.N(.1,.1,.1);
  1161. local ESize = data.EndSize or V3.N(6,6,6);
  1162. local Direction = data.Direction or nil;
  1163. local Speed = data.Speed or .1; -- studs per second
  1164. local Boomerang = data.Boomerang or {Enabled=false,SizeBoomerang=0,MoveBoomerang=0};
  1165. local Pos = data.CFrame or Torso.CFrame;
  1166. local Frames = data.Frames or 60;
  1167. local RotInc = data.RotInc or {0,0,0}
  1168. local StartTrans = data.TransStart or 0;
  1169. local EndTrans = data.TransEnd or 1;
  1170.  
  1171. if(typeof(RotInc) == 'number')then RotInc = {RotInc,RotInc,RotInc}; end
  1172. local S,PM,P;
  1173.  
  1174. coroutine.wrap(function()
  1175. P = Part(Effects,Color,Material,V3.N(1,1,1),Pos,true,false)
  1176.  
  1177. if(MeshD == "Blast")then
  1178. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://20329976','',Size,V3.N(0,0,-Size.X/8))
  1179. elseif(MeshD == 'Ring')then
  1180. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://559831844','',Size,V3.N(0,0,0))
  1181. elseif(MeshD == 'Slash1')then
  1182. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://662586858','',V3.N(Size.X/10,.001,Size.Z/10),V3.N(0,0,0))
  1183. elseif(MeshD == 'Slash2')then
  1184. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://448386996','',V3.N(Size.X/1000,Size.Y/100,Size.Z/100),V3.N(0,0,0))
  1185. elseif(MeshD == 'Slash3')then
  1186. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://4770583','',Size,V3.N(0,0,0))
  1187. elseif(MeshD == 'Tornado1')then
  1188. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://443529437','',Size/10,V3.N(0,0,0))
  1189. elseif(MeshD == 'Tornado2')then
  1190. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://168892432','',Size/4,V3.N(0,0,0))
  1191. elseif(MeshD == 'Skull')then
  1192. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://4770583','',Size*2,V3.N(0,0,0))
  1193. elseif(MeshD == 'Crystal')then
  1194. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://9756362','',Size,V3.N(0,0,0))
  1195. elseif(MeshD == 'Cloud')then
  1196. PM = Mesh(P,Enum.MeshType.FileMesh,'rbxassetid://1095708','',Size,V3.N(0,0,0))
  1197. elseif(typeof(MeshD) == 'table')then
  1198. local Type = MeshD.Type or Enum.MeshType.Brick
  1199. local ID = MeshD.ID or '';
  1200. local Tex = MeshD.Texture or '';
  1201. local Offset = MeshD.Offset or V3.N(0,0,0)
  1202. PM = Mesh(P,Type,ID,Tex,Size,Offset)
  1203. else
  1204. PM = Mesh(P,Enum.MeshType.Brick,'','',Size)
  1205. end
  1206.  
  1207. if(typeof(SoundD) == 'table')then
  1208. local ID = SoundD.ID or '';
  1209. local Pitch = SoundD.Pitch or 1;
  1210. local Volume = SoundD.Volume or 1;
  1211. S = Sound(P,ID,Pitch,Volume,false,true,true)
  1212. elseif(typeof(SoundD) == 'string' or typeof(SoundD) == 'number')then
  1213. S = Sound(P,SoundD,1,1,false,true,true)
  1214. end
  1215. local grow = (Size - ESize)
  1216. local SizeBoomer = 1+Boomerang.SizeBoomerang/50
  1217. local MoveBoomer = 1+Boomerang.MoveBoomerang/50
  1218. if(Boomerang and Boomerang.Enabled)then
  1219. grow = (Size - ESize)*(SizeBoomer+1)
  1220. end
  1221. local TransChange = StartTrans - EndTrans
  1222. for i = 0, Frames do
  1223. local MoveSpeed = -Speed
  1224. local scaleGay = grow/Frames
  1225. if(Boomerang and Boomerang.Enabled)then -- thanks shack
  1226. MoveSpeed = -(Speed)*((1-(i/Frames)*MoveBoomer))
  1227. scaleGay = (V3.N((grow.X)*((1 - (i/Frames)*SizeBoomer)),(grow.Y)*((1 - (i/Frames)*SizeBoomer)),(grow.Z)*((1 - (i/Frames)*SizeBoomer)))*SizeBoomer)/Frames
  1228. end
  1229. if(PM.MeshId == 'rbxassetid://20329976')then
  1230. PM.Offset = V3.N(0,0,-PM.Scale.Z/8)
  1231. elseif(PM.MeshId == 'rbxassetid://4770583')then
  1232. scaleGay = scaleGay*2
  1233. elseif(PM.MeshId == 'rbxassetid://168892432')then
  1234. scaleGay = scaleGay/4
  1235. elseif(PM.MeshId == 'rbxassetid://443529437')then
  1236. scaleGay = scaleGay/10
  1237. elseif(PM.MeshId == 'rbxassetid://443529437')then
  1238. scaleGay = scaleGay/10
  1239. end
  1240. PM.Scale = PM.Scale - scaleGay
  1241. P.Transparency = P.Transparency - TransChange/Frames
  1242. if(RotInc == 'random')then
  1243. P.CFrame=P.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180))
  1244. elseif(typeof(RotInc) == 'table')then
  1245. P.CFrame=P.CFrame*CF.A(unpack(RotInc))
  1246. end
  1247.  
  1248.  
  1249. if(Direction and Speed)then
  1250. local Orientation = P.Orientation
  1251. P.CFrame = CF.N(P.Position,Direction.p)*CF.N(0,0,MoveSpeed)
  1252. P.Orientation = Orientation
  1253. end
  1254. swait()
  1255. end
  1256.  
  1257. P.Transparency = 1
  1258. if(S and S.Playing)then
  1259. repeat swait() until not S.Parent or not S.Playing
  1260. end
  1261. if(S and S.Parent)then
  1262. S:destroy()
  1263. end
  1264. end)()
  1265.  
  1266.  
  1267. end
  1268.  
  1269.  
  1270. --if(not Plr:IsFriendsWith(5719877))then warn("You aren't whitelisted, dumbass.") warn("Why did you even try?")script.Disabled = true repeat until nil end
  1271.  
  1272. function SoulSteal(whom)
  1273. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  1274. print(torso)
  1275. if(torso and torso:IsA'BasePart')then
  1276. local Model = Instance.new("Model",Effects)
  1277. Model.Name = whom.Name.."'s Soul"
  1278. whom:BreakJoints()
  1279. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  1280. Soul.Name = 'Head'
  1281. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  1282. OEffect{
  1283. Effect="Arc",
  1284. Manual = Soul,
  1285. FXSettings={
  1286. Start=torso.CFrame,
  1287. Home = Torso,
  1288. RemoveOnGoal = true,
  1289. }
  1290. }
  1291. local lastPoint = Soul.CFrame.p
  1292.  
  1293. for i = 0, 1, 0.01 do
  1294. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  1295. local mag = (lastPoint - Soul.Position).magnitude
  1296. OEffect{
  1297. Effect = "Fade",
  1298. CFrame = point * CF.N(0, mag/2, 0),
  1299. Size = V3.N(.5,mag+.5,.5),
  1300. Color = Soul.BrickColor
  1301. }
  1302. lastPoint = Soul.CFrame.p
  1303. swait()
  1304. end
  1305. for i = 1, 5 do
  1306. OEffect{
  1307. Effect="Fade",
  1308. Color = BrickColor.new'Really red',
  1309. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  1310. }
  1311. end
  1312. end
  1313. end
  1314.  
  1315. --// Other Functions \\ --
  1316.  
  1317. function CastRay(startPos,endPos,range,ignoreList)
  1318. local ray = Ray.new(startPos,(endPos-startPos).unit*range)
  1319. local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
  1320. return part,pos,norm,(pos and (startPos-pos).magnitude)
  1321. end
  1322.  
  1323. function getRegion(point,range,ignore)
  1324. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  1325. end
  1326.  
  1327. function clerp(startCF,endCF,alpha)
  1328. return startCF:lerp(endCF, alpha)
  1329. end
  1330.  
  1331. function GetTorso(char)
  1332. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  1333. end
  1334.  
  1335.  
  1336. function ShowDamage(Pos, Text, Time, Color)
  1337. coroutine.wrap(function()
  1338. local Rate = (1 / Frame_Speed)
  1339. local Pos = (Pos or Vector3.new(0, 0, 0))
  1340. local Text = (Text or "")
  1341. local Time = (Time or 2)
  1342. local Color = (Color or Color3.new(1, 0, 1))
  1343. local EffectPart = NewInstance("Part",Effects,{
  1344. Material=Enum.Material.SmoothPlastic,
  1345. Reflectance = 0,
  1346. Transparency = 1,
  1347. BrickColor = BrickColor.new(Color),
  1348. Name = "Effect",
  1349. Size = Vector3.new(0,0,0),
  1350. Anchored = true,
  1351. CFrame = CF.N(Pos)
  1352. })
  1353. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  1354. Size = UDim2.new(1.25, 0, 1.25, 0),
  1355. Adornee = EffectPart,
  1356. })
  1357. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  1358. BackgroundTransparency = 1,
  1359. Size = UDim2.new(1, 0, 1, 0),
  1360. Text = Text,
  1361. Font = "Bodoni",
  1362. TextColor3 = Color,
  1363. TextStrokeColor3 = Color3.new(0,0,0),
  1364. TextStrokeTransparency=0,
  1365. TextScaled = true,
  1366. })
  1367. S.Debris:AddItem(EffectPart, (Time))
  1368. EffectPart.Parent = workspace
  1369. delay(0, function()
  1370. Tween(EffectPart,{CFrame=CF.N(Pos)*CF.N(0,3,0)},Time,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1371. local Frames = (Time / Rate)
  1372. for Frame = 1, Frames do
  1373. swait()
  1374. local Percent = (Frame / Frames)
  1375. TextLabel.TextTransparency = Percent
  1376. TextLabel.TextStrokeTransparency = Percent
  1377. end
  1378. if EffectPart and EffectPart.Parent then
  1379. EffectPart:Destroy()
  1380. end
  1381. end) end)()
  1382. end
  1383.  
  1384.  
  1385. function DealDamage(data)
  1386. local Who = data.Who;
  1387. local MinDam = data.MinimumDamage or 15;
  1388. local MaxDam = data.MaximumDamage or 30;
  1389. local MaxHP = data.MaxHP or 1e5;
  1390.  
  1391. local DB = data.Debounce or .2;
  1392.  
  1393. local CritData = data.Crit or {}
  1394. local CritChance = CritData.Chance or 0;
  1395. local CritMultiplier = CritData.Multiplier or 1;
  1396.  
  1397. local DamageEffects = data.DamageFX or {}
  1398. local DamageType = DamageEffects.Type or "Normal"
  1399. local DeathFunction = DamageEffects.DeathFunction
  1400.  
  1401. assert(Who,"Specify someone to damage!")
  1402.  
  1403. local Humanoid = Who:FindFirstChildOfClass'Humanoid'
  1404. local DoneDamage = M.RNG(MinDam,MaxDam) * (M.RNG(1,100) <= CritChance and CritMultiplier or 1)
  1405.  
  1406. local canHit = true
  1407. if(Humanoid)then
  1408. for _, p in pairs(Hit) do
  1409. if p[1] == Humanoid then
  1410. if(time() - p[2] <= DB) then
  1411. canHit = false
  1412. else
  1413. Hit[_] = nil
  1414. end
  1415. end
  1416. end
  1417. if(canHit)then
  1418. table.insert(Hit,{Humanoid,time()})
  1419. local HitTorso = GetTorso(Who)
  1420. local player = S.Players:GetPlayerFromCharacter(Who)
  1421. if(not player or not DontAttackPlayers and player.UserId ~= 5719877 and player.UserId ~= 61573184 and player.UserId ~= 19081129)then
  1422. if(Humanoid.MaxHealth >= MaxHP and Humanoid.Health > 0)then
  1423. print'Got kill'
  1424. Hits = math.min(Hits + 1,MaxHits)
  1425. HitTime = time() + 1
  1426. Humanoid.Health = 0;
  1427. Who:BreakJoints();
  1428. if(DeathFunction)then DeathFunction(Who,Humanoid) end
  1429. else
  1430. local c = Instance.new("ObjectValue",Hum)
  1431. c.Name = "creator"
  1432. c.Value = Player
  1433. S.Debris:AddItem(c,0.35)
  1434. if(Hits >= MaxHits/4)then
  1435. local Mult = (DoneDamage*(Hits/MaxHits))/2
  1436. DoneDamage = DoneDamage + Mult
  1437. end
  1438. if(Humanoid.Health > 0)then
  1439. Hits = math.min(Hits + 1,MaxHits)
  1440. HitTime = time() + 1
  1441. if(Mode == 9 and not Radioactive[Who])then
  1442. Radioactive[Who] = {0,M.RNG(time()+4,time()+14)}
  1443. end
  1444. if(Who:FindFirstChild'Head')then
  1445. 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))), math.floor(DoneDamage), 1.5, Core2.Color)
  1446. end
  1447. if(Humanoid.Health-DoneDamage <= 0)then print'Got kill' if(DeathFunction)then DeathFunction(Who,Humanoid) end end
  1448. Humanoid.Health = Humanoid.Health - DoneDamage
  1449. end
  1450.  
  1451. if(DamageType == 'Knockback' and HitTorso)then
  1452. local up = DamageEffects.KnockUp or 25
  1453. local back = DamageEffects.KnockBack or 25
  1454. local origin = DamageEffects.Origin or Root
  1455. local decay = DamageEffects.Decay or .5;
  1456.  
  1457. local bfos = Instance.new("BodyVelocity",HitTorso)
  1458. bfos.P = 20000
  1459. bfos.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1460. bfos.Velocity = Vector3.new(0,up,0) + (origin.CFrame.lookVector * back)
  1461. S.Debris:AddItem(bfos,decay)
  1462. end
  1463. end
  1464. end
  1465. end
  1466. end
  1467. end
  1468.  
  1469. function AOEDamage(where,range,options)
  1470. local hit = {}
  1471. for _,v in next, getRegion(where,range,{Char}) do
  1472. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' and not hit[v.Parent])then
  1473. local callTable = {Who=v.Parent}
  1474. hit[v.Parent] = true
  1475. for _,v in next, options do callTable[_] = v end
  1476. DealDamage(callTable)
  1477. end
  1478. end
  1479. return hit
  1480. end
  1481.  
  1482. function AOEHeal(where,range,amount)
  1483. local healed = {}
  1484. for _,v in next, getRegion(where,range,{Char}) do
  1485. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1486. if(hum and not healed[hum])then
  1487. hum.Health = hum.Health + amount
  1488. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  1489. 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)
  1490. end
  1491. end
  1492. end
  1493. end
  1494.  
  1495. --// Chat Function \\--
  1496.  
  1497. function Chat(text,color)
  1498. --if(game.PlaceId ~= 843468296)then
  1499. coroutine.wrap(function()
  1500. if(Char:FindFirstChild'ChatGUI')then Char.ChatGUI:destroy() end
  1501. local BBG = NewInstance("BillboardGui",Char,{Name='ChatGUI',Size=UDim2.new(0,100,0,40),StudsOffset=V3.N(0,2,0),Adornee=Head})
  1502. local Txt = NewInstance("TextLabel",BBG,{Text = "",BackgroundTransparency=1,TextColor3=color,BorderSizePixel=0,Font=Enum.Font.Antique,TextSize=50,TextStrokeTransparency=1,Size=UDim2.new(1,0,.5,0)})
  1503. local SND = Sound(Head,418252437,M.RNG(9,11)/10,3,false,false,true)
  1504. for i = 1, #text do
  1505. delay(i/25, function()
  1506. SND.Pitch = M.RNG(9,11)/10
  1507. SND.Volume = 3
  1508. SND.Parent = Effects
  1509. SND:Play()
  1510. Txt.Text = text:sub(1,i)
  1511. end)
  1512. end
  1513. delay((#text/25)+2.5, function()
  1514. for i = 0, 1, .025 do
  1515. Txt.TextTransparency=i
  1516. Txt.Rotation = M.RNG(-25,25)
  1517. Txt.Position = UDim2.new(0,M.RNG(-15,15),0,M.RNG(-15,15))
  1518. swait()
  1519. end
  1520. BBG:destroy()
  1521. end)
  1522. end)()
  1523. --else
  1524. -- Chat2(text)
  1525. --end
  1526. end
  1527.  
  1528. --// Everything else \\--
  1529.  
  1530. function ClickGlitch()
  1531. Attack = true
  1532. NeutralAnims = false
  1533. local oWS = WalkSpeed
  1534. WalkSpeed = 0
  1535. Hum.JumpPower = 0
  1536. Hum.AutoRotate = false
  1537. Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
  1538. for i = 0, 2, 0.1 do
  1539. swait()
  1540. local Alpha = .3
  1541. Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
  1542. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00417825999, 0.00628786907, -0.00260206894, 0.513858557, -0.00539401267, -0.857858002, 1.84496116e-06, 0.99998033, -0.00628653914, 0.85787499, 0.00322880922, 0.513848424),Alpha)
  1543. LH.C0 = clerp(LH.C0,CFrame.new(-0.496490777, -0.990816116, 0.0216251202, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1544. RH.C0 = clerp(RH.C0,CFrame.new(0.49852562, -0.990978837, 0.0154569345, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1545. LS.C0 = clerp(LS.C0,CFrame.new(-1.30906916, 0.822547674, -0.226739705, -0.481323838, 0.719669759, -0.500402868, -0.832959116, -0.55330795, 0.00544379698, -0.272959113, 0.419435322, 0.865775645),Alpha)
  1546. RS.C0 = clerp(RS.C0,CFrame.new(1.35554826, 0.564801514, -0.116690002, 0.84398663, -0.312275827, 0.436085641, 0.311970115, 0.94716835, 0.074478887, -0.43630439, 0.0731864721, 0.896817923),Alpha)
  1547. NK.C0 = clerp(NK.C0,CFrame.new(-7.85058364e-06, 1.49894369, -0.0143952277, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1548. end
  1549. Sound(LArm,217767125,M.RNG(75,125)/100,10,false,true,true)
  1550. OEffect{
  1551. Effect='Fade',
  1552. Size=V3.N(1,1,1),
  1553. CFrame=LArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(0,360),M.RRNG(0,360),M.RRNG(0,360)),
  1554. Color=Core2.Color,
  1555. Material=Enum.Material.Neon,
  1556. FXSettings = {
  1557. RandomizeCFrame=true
  1558. }
  1559. }
  1560. coroutine.wrap(function()
  1561. local MousePos = Mouse.Hit
  1562. local effect = Part(Effects,Core2.Color,Enum.Material.Neon,V3.N(2.5,2.5,2.5),MousePos,true,false)
  1563. for i = 0, 6, .1 do
  1564. effect.Color = Core2.Color
  1565. MousePos = MousePos * CF.N(M.RNG(-15,15)/100,M.RNG(-15,15)/100,M.RNG(-15,15)/100)
  1566. effect.CFrame = MousePos*CF.A(M.RRNG(0,360),M.RRNG(0,360),M.RRNG(0,360))
  1567. effect.Size = V3.N(2.5,2.5,2.5)+V3.N(M.RNG(-150,150)/100,M.RNG(-150,150)/100,M.RNG(-150,150)/100)
  1568. swait()
  1569. end
  1570. AOEDamage(MousePos.p,30,{MinimumDamage=30,MaximumDamage=75})
  1571. for i = 0, 3, .1 do
  1572. effect.Color = Core2.Color
  1573. effect.CFrame = MousePos*CF.A(M.RRNG(0,360),M.RRNG(0,360),M.RRNG(0,360))
  1574. effect.Size = effect.Size + V3.N(1,1,1)
  1575. effect.Transparency = i/3
  1576. swait()
  1577. end
  1578. effect:destroy()
  1579.  
  1580. end)()
  1581. for i = 0, 1, 0.1 do
  1582. swait()
  1583. local Alpha = .3
  1584. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00417744182, 0.00628787512, -0.00260255905, 0.513858557, -0.00539401267, -0.857858002, 1.84496116e-06, 0.99998033, -0.00628653914, 0.85787499, 0.00322880922, 0.513848424),Alpha)
  1585. LH.C0 = clerp(LH.C0,CFrame.new(-0.496490777, -0.990816116, 0.0216251202, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1586. RH.C0 = clerp(RH.C0,CFrame.new(0.49852562, -0.990978837, 0.0154569345, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1587. LS.C0 = clerp(LS.C0,CFrame.new(-1.12360537, 0.516349316, -0.117619619, -0.715893924, 0.486921966, -0.500402868, -0.56499064, -0.825079441, 0.00544379698, -0.410221368, 0.28662011, 0.865775645),Alpha)
  1588. RS.C0 = clerp(RS.C0,CFrame.new(1.35554826, 0.564801514, -0.116690002, 0.84398663, -0.312275827, 0.436085641, 0.311970115, 0.94716835, 0.074478887, -0.43630439, 0.0731864721, 0.896817923),Alpha)
  1589. NK.C0 = clerp(NK.C0,CFrame.new(-7.85058364e-06, 1.49894369, -0.0143952277, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1590. end
  1591. for i = 0, 1, 0.1 do
  1592. swait()
  1593. local Alpha = .3
  1594. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00417825999, 0.00628786907, -0.00260206894, 0.513858557, -0.00539401267, -0.857858002, 1.84496116e-06, 0.99998033, -0.00628653914, 0.85787499, 0.00322880922, 0.513848424),Alpha)
  1595. LH.C0 = clerp(LH.C0,CFrame.new(-0.496490777, -0.990816116, 0.0216251202, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1596. RH.C0 = clerp(RH.C0,CFrame.new(0.49852562, -0.990978837, 0.0154569345, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1597. LS.C0 = clerp(LS.C0,CFrame.new(-1.30906916, 0.822547674, -0.226739705, -0.481323838, 0.719669759, -0.500402868, -0.832959116, -0.55330795, 0.00544379698, -0.272959113, 0.419435322, 0.865775645),Alpha)
  1598. RS.C0 = clerp(RS.C0,CFrame.new(1.35554826, 0.564801514, -0.116690002, 0.84398663, -0.312275827, 0.436085641, 0.311970115, 0.94716835, 0.074478887, -0.43630439, 0.0731864721, 0.896817923),Alpha)
  1599. NK.C0 = clerp(NK.C0,CFrame.new(-7.85058364e-06, 1.49894369, -0.0143952277, 0.500402868, 0, 0.865792811, -0.00544379698, 0.99998033, 0.00314635527, -0.865775645, -0.00628764462, 0.500392973),Alpha)
  1600. end
  1601. WalkSpeed = oWS
  1602. Hum.JumpPower = 50
  1603. Hum.AutoRotate = true
  1604. Attack = false
  1605. NeutralAnims = true
  1606. end
  1607.  
  1608. function PureBomb()
  1609. Attack = true
  1610. NeutralAnims = false
  1611. local orb = Part(Effects,BrickColor.new'Baby blue',Enum.Material.Neon,V3.N(1,1,1),RArm.CFrame*CF.N(0,-1,0),true,false)
  1612. local orbM = Mesh(orb,Enum.MeshType.Sphere,"","",V3.N(.1,.1,.1))
  1613. local Scale = 0.1
  1614. local Pos = 0
  1615. Hum.AutoRotate = false
  1616. Sound(orb,136007472,1,5,false,true,true)
  1617. for i = 0, 10, 0.1 do
  1618. Scale = Scale + .05
  1619. orb.CFrame = RArm.CFrame*CF.N(0,-0.5-(Scale/1.5),0)
  1620. Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
  1621. orbM.Scale = V3.N(Scale,Scale,Scale)
  1622. NoobySphere(4,-.1,'Multiply',orb.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),0,BrickColor.new'Baby blue',5)
  1623. swait()
  1624. local Alpha = .3
  1625. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674263, 4.19029675e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  1626. LH.C0 = clerp(LH.C0,CFrame.new(-0.49648428, -0.990819931, 0.0216189958, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  1627. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990974903, 0.0154631026, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  1628. LS.C0 = clerp(LS.C0,CFrame.new(-1.42302692, 0.493415803, -0.00359773822, 0.940765917, 0.153064445, 0.30254063, -0.162465662, 0.986695945, 0.00599612948, -0.297597915, -0.0547934212, 0.953117669),Alpha)
  1629. RS.C0 = clerp(RS.C0,CFrame.new(1.49654758, 0.678199768, 0.0230993181, 0.85657078, -0.45250088, 0.248051316, -0.450519741, -0.89016372, -0.0681223199, 0.251631737, -0.0534004271, -0.966348767),Alpha)
  1630. NK.C0 = clerp(NK.C0,CFrame.new(1.00737716e-05, 1.49894738, -0.0144004971, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799),Alpha)
  1631. end
  1632. for i = 0, 2, 0.1 do
  1633. swait()
  1634. orb.CFrame = RArm.CFrame*CF.N(0,-0.5-(Scale/1.5),0)
  1635. Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
  1636. local Alpha = .3
  1637. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00196742709, 0.00628469, -0.000496770546, 0.917528987, -0.00250149658, -0.39766106, 8.55154781e-07, 0.999980211, -0.00628842553, 0.397668958, 0.00576947257, 0.917510867),Alpha)
  1638. LH.C0 = clerp(LH.C0,CFrame.new(-0.496482432, -0.990816116, 0.0216121897, 0.911208749, 0, 0.411944896, -0.00259129796, 0.999980211, 0.00573186669, -0.41193673, -0.006290399, 0.911190748),Alpha)
  1639. RH.C0 = clerp(RH.C0,CFrame.new(0.4985466, -0.990978718, 0.0154598281, 0.911208749, 0, 0.411944896, -0.00259129796, 0.999980211, 0.00573186669, -0.41193673, -0.006290399, 0.911190748),Alpha)
  1640. LS.C0 = clerp(LS.C0,CFrame.new(-1.49955761, 0.50005585, 0.0206508823, 0.931618989, 0, 0.363436669, -0.00228616199, 0.999980211, 0.0058602551, -0.363429457, -0.006290399, 0.931600571),Alpha)
  1641. RS.C0 = clerp(RS.C0,CFrame.new(1.42403603, 0.783231854, 0.129635245, 0.955871105, -0.233268648, 0.178595126, -0.293628395, -0.738623917, 0.60680896, -0.00963485241, -0.63247174, -0.774523556),Alpha)
  1642. NK.C0 = clerp(NK.C0,CFrame.new(3.81190921e-06, 1.49893928, -0.0144081786, 1, -1.86264515e-09, 0, 0, 0.99796468, 0.0637704432, 2.98023224e-08, -0.0637704507, 0.997964561),Alpha)
  1643. end
  1644. Sound(Root,260433768,1,5.25,false,true,true)
  1645. ShootBullet{Size=V3.N(Scale,Scale,Scale),Shape='Ball',Frames=320,Origin=orb.CFrame,Speed=5,Color=BrickColor.new'Baby blue',HitFunction = function(hit,pos)
  1646. local snd, part = SoundPart(151304356,1,5.25,false,true,true,CF.N(pos))
  1647. AOEDamage(pos,Scale*4,{MinimumDamage=25,MaximumDamage=60})
  1648. OEffect{
  1649. Effect='ResizeAndFade',
  1650. Color=BrickColor.new'Baby blue',
  1651. Size=V3.N(Scale*2,Scale*2,Scale*2),
  1652. Material=Enum.Material.Neon,
  1653. Mesh={MeshType=Enum.MeshType.Sphere},
  1654. CFrame=CF.N(pos),
  1655. FXSettings={
  1656. EndSize=V3.N(.1,.1,.1),
  1657. EndIsIncrement=true
  1658. }
  1659. }
  1660. OEffect{
  1661. Effect='ResizeAndFade',
  1662. Color=BrickColor.new'Pastel light blue',
  1663. Size=V3.N(Scale*1.5,Scale*1.5,Scale*1.5),
  1664. Material=Enum.Material.Neon,
  1665. Mesh={MeshType=Enum.MeshType.Sphere},
  1666. CFrame=CF.N(pos),
  1667. FXSettings={
  1668. EndSize=V3.N(.1,.1,.1),
  1669. EndIsIncrement=true
  1670. }
  1671. }
  1672. for i = 0, 49 do
  1673. NoobyBlock(1,M.RNG(1,10)/2,"Multiply",CF.N(pos)*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(4,4,4),0.08,BrickColor.new('Pastel light blue'),0,true)
  1674. end
  1675. for i = 0, 9 do
  1676. NoobySphere(1,2.5,"Multiply",CF.N(pos)*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(5,5,50),-0.05,BrickColor.new'Baby blue',0)
  1677. NoobySphere(2,5,"Multiply",CF.N(pos)*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(5,5,50),-0.05,BrickColor.new'Pastel light blue',0)
  1678. end
  1679. end}
  1680. orb:destroy()
  1681. for i = 0, 1, 0.1 do
  1682. swait()
  1683. Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
  1684. local Alpha = .3
  1685. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00500682555, 0.00628831051, 0.00120097224, 0.92018038, 0.00246177102, 0.391486853, -8.42089548e-07, 0.99998033, -0.0062861559, -0.391494602, 0.00578406826, 0.920162261),Alpha)
  1686. LH.C0 = clerp(LH.C0,CFrame.new(-0.498779386, -1.00248599, -0.124541134, 0.959937453, -0.00228470936, 0.280205488, -0.0405473076, 0.988310218, 0.146966696, -0.277265698, -0.152440399, 0.94862318),Alpha)
  1687. RH.C0 = clerp(RH.C0,CFrame.new(0.539460897, -1.00021362, -0.107664183, 0.949007154, 0.0409194157, -0.312587768, 0.00198236411, 0.990746439, 0.135712415, 0.31524843, -0.129411712, 0.940144241),Alpha)
  1688. LS.C0 = clerp(LS.C0,CFrame.new(-1.41884661, 0.577570677, -0.000329867005, 0.959363103, 0.138315558, 0.245949864, -0.144226983, 0.989526033, 0.00609558355, -0.242530614, -0.041320473, 0.969263554),Alpha)
  1689. RS.C0 = clerp(RS.C0,CFrame.new(1.3995322, 0.560555339, 0.0217598975, 0.860549986, -0.340243995, 0.379061729, 0.396351576, -0.0201387759, -0.917877972, 0.319936305, 0.940121651, 0.117525801),Alpha)
  1690. NK.C0 = clerp(NK.C0,CFrame.new(-1.91013669e-06, 1.4989413, -0.0144026726, 1, -1.86264515e-09, 0, 2.32830644e-10, 0.997965097, 0.0637654439, -2.98023224e-08, -0.0637654439, 0.997965038),Alpha)
  1691. end
  1692.  
  1693. Hum.AutoRotate = true
  1694.  
  1695. Attack = false
  1696. NeutralAnims = true
  1697. end
  1698.  
  1699. function Aeroplane()
  1700. Attack = true
  1701. NeutralAnims = false
  1702. NoobySphere2(3,'Multiply',Root.CFrame,V3.N(2,2,2),.5,BrickColor.new'White')
  1703. local rad = 0
  1704. for i = 0, 3, 0.1 do
  1705. AOEDamage(Root.CFrame.p,4,{MinimumDamage=15,MaximumDamage=30})
  1706. swait()
  1707. Root.Velocity = Root.CFrame.lookVector*(350-(i*66))
  1708. local Alpha = .3
  1709. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00760343159, 1, -0.486851215, 0.99976027, -0.0157056805, -0.0152531685, 0.0156109696, 0.022916859, 0.99961555, -0.0153500848, -0.99961406, 0.0231565442),Alpha)
  1710. LH.C0 = clerp(LH.C0,CFrame.new(-0.494159192, -0.989393592, 0.0215745792, 0.998326361, 0.0556856021, 0.0156117883, -0.0557892919, 0.998422861, 0.00628646836, -0.0152371004, -0.00714691728, 0.999858439),Alpha)
  1711. RH.C0 = clerp(RH.C0,CFrame.new(0.467966676, -0.990411818, 0.015948534, 0.997011065, -0.0756644681, 0.0156140458, 0.0755743459, 0.99712044, 0.00628457591, -0.0160446018, -0.00508577004, 0.999858439),Alpha)
  1712. LS.C0 = clerp(LS.C0,CFrame.new(-1.48234439, 0.488731831, 0.0204298086, 1.08988024e-06, 0.999878109, 0.0156131675, -0.999979973, -9.79125834e-05, 0.00634019636, 0.00634095073, -0.0156128611, 0.999858081),Alpha)
  1713. RS.C0 = clerp(RS.C0,CFrame.new(1.44239902, 0.478527635, -0.0251723044, 0.000173310371, -0.999878168, 0.0156102739, 0.999979973, 0.00027231226, 0.00634019636, -0.00634367391, 0.0156088611, 0.999858141),Alpha)
  1714. NK.C0 = clerp(NK.C0,CFrame.new(5.21446054e-06, 1.48825693, 0.499068856, 1, -4.4076296e-07, 3.08027957e-05, 2.98316445e-05, 0.26330927, -0.964711607, -7.68547761e-06, 0.964711607, 0.26330927),Alpha)
  1715. end
  1716. for i = 0, 18, 0.1 do
  1717. AOEDamage(Root.CFrame.p,4,{MinimumDamage=15,MaximumDamage=30})
  1718. swait()
  1719. rad = rad + .1
  1720. local Alpha = .3
  1721. Root.Velocity = Root.CFrame.lookVector*150
  1722. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00760343159, 1, -0.486851215, 0.99976027, -0.0157056805, -0.0152531685, 0.0156109696, 0.022916859, 0.99961555, -0.0153500848, -0.99961406, 0.0231565442)*CF.A(0,M.R((rad*360)),0),Alpha)
  1723. LH.C0 = clerp(LH.C0,CFrame.new(-0.494159192, -0.989393592, 0.0215745792, 0.998326361, 0.0556856021, 0.0156117883, -0.0557892919, 0.998422861, 0.00628646836, -0.0152371004, -0.00714691728, 0.999858439),Alpha)
  1724. RH.C0 = clerp(RH.C0,CFrame.new(0.467966676, -0.990411818, 0.015948534, 0.997011065, -0.0756644681, 0.0156140458, 0.0755743459, 0.99712044, 0.00628457591, -0.0160446018, -0.00508577004, 0.999858439),Alpha)
  1725. LS.C0 = clerp(LS.C0,CFrame.new(-1.48234439, 0.488731831, 0.0204298086, 1.08988024e-06, 0.999878109, 0.0156131675, -0.999979973, -9.79125834e-05, 0.00634019636, 0.00634095073, -0.0156128611, 0.999858081),Alpha)
  1726. RS.C0 = clerp(RS.C0,CFrame.new(1.44239902, 0.478527635, -0.0251723044, 0.000173310371, -0.999878168, 0.0156102739, 0.999979973, 0.00027231226, 0.00634019636, -0.00634367391, 0.0156088611, 0.999858141),Alpha)
  1727. NK.C0 = clerp(NK.C0,CFrame.new(5.21446054e-06, 1.48825693, 0.499068856, 1, -4.4076296e-07, 3.08027957e-05, 2.98316445e-05, 0.26330927, -0.964711607, -7.68547761e-06, 0.964711607, 0.26330927),Alpha)
  1728. end
  1729. Attack = false
  1730. NeutralAnims = true
  1731. end
  1732.  
  1733. function Shrek()
  1734. Attack = true
  1735. NeutralAnims = false
  1736. local oWS = WalkSpeed
  1737. for i = 0, 2, 0.1 do
  1738. swait()
  1739. local Alpha = .3
  1740. RJ.C0 = RJ.C0:lerp(CFrame.new(-0.0045717326, 0.0650117323, -0.292746365, 0.999985039, -0.0054067187, -0.000930163078, 0.00540099945, 0.940456271, 0.339872152, -0.000962814316, -0.339872032, 0.940471232),Alpha)
  1741. LH.C0 = LH.C0:lerp(CFrame.new(-0.497873425, -1.08922517, -0.0665005744, 0.991378665, 0.00540100131, 0.130918339, 0.0394607596, 0.940456986, -0.337614775, -0.124946497, 0.339870125, 0.932135701),Alpha)
  1742. RH.C0 = RH.C0:lerp(CFrame.new(0.497141123, -1.09262908, -0.0732582211, 0.991080165, 0.00540100131, -0.133158669, -0.0502922162, 0.940456986, -0.336171925, 0.123414315, 0.339870125, 0.932339728),Alpha)
  1743. LS.C0 = LS.C0:lerp(CFrame.new(-1.01297855, 0.687084556, -0.109048009, 0.909904242, -0.414624929, -0.0126772588, -0.341911346, -0.732326984, -0.588892102, 0.234885365, 0.540169775, -0.808112383),Alpha)
  1744. RS.C0 = RS.C0:lerp(CFrame.new(1.10972738, 0.686874747, -0.142190307, 0.902195573, 0.431141198, -0.012677161, 0.341730058, -0.732411623, -0.588892102, -0.263180494, 0.526963592, -0.808112264),Alpha)
  1745. NK.C0 = NK.C0:lerp(CFrame.new(1.14651302e-05, 1.49894774, -0.0143921971, 1.00000012, 1.31642446e-06, -5.17815351e-07, -1.28056854e-06, 0.997964919, 0.0637671649, 5.99771738e-07, -0.0637671053, 0.997964978),Alpha)
  1746. end
  1747. WalkSpeed = 0
  1748. Sound(Head,368794903,1.2,10,false,true,true)
  1749. local wo = IN("Model",Effects)
  1750.  
  1751. for i = 1, 3 do
  1752. local wat = 12.5+(i*2)
  1753. local screamPart = Part(wo,BrickColor.new'Pearl',Enum.Material.Neon,V3.N(1,1,1),Head.CFrame,false,false)
  1754. screamPart.Transparency = .6+(i/10)
  1755. Mesh(screamPart,Enum.MeshType.Sphere,"","",V3.N(wat,wat,wat))
  1756. Weld(screamPart,Torso)
  1757. end
  1758.  
  1759. for i = 0, 8, 0.1 do
  1760. swait()
  1761. AOEDamage(Torso.CFrame.p,20,{
  1762. MinimumDamage=5,
  1763. MaximumDamage=10
  1764. })
  1765. local Alpha = .3
  1766. RJ.C0 = RJ.C0:lerp(CFrame.new(0.00617184862, -0.15, 0.395316333, 0.999986708, 0.00508808438, -0.000884585083, -0.00509300316, 0.943203092, -0.332178056, -0.000855805352, 0.332178146, 0.943216264)*CF.A(M.R(20),0,0),Alpha)
  1767. LH.C0 = LH.C0:lerp(CFrame.new(-0.497282684, -1.06256902, -0.0290378034, 0.999878228, -0.00509300316, 0.0147562362, -9.85493534e-05, 0.943203092, 0.332217097, -0.0156101063, -0.332178056, 0.943087518)*CF.A(M.R(-20),0,0),Alpha)
  1768. RH.C0 = RH.C0:lerp(CFrame.new(0.497732252, -1.05967009, -0.03568241, 0.999878228, -0.00509300316, 0.0147562362, -9.85493534e-05, 0.943203092, 0.332217097, -0.0156101063, -0.332178056, 0.943087518)*CF.A(M.R(-20),0,0),Alpha)
  1769. LS.C0 = LS.C0:lerp(CFrame.new(-1.42849481, 0.494048148, -0.00801739097, 0.98822248, 0.134164602, 0.0735954121, -0.152104512, 0.808569551, 0.568401217, 0.0167523213, -0.572901011, 0.819453418),Alpha)
  1770. RS.C0 = RS.C0:lerp(CFrame.new(1.41312766, 0.523678839, 0.0325531065, 0.980119586, -0.184282064, 0.0735261068, 0.110644385, 0.815263927, 0.568421364, -0.164693028, -0.548985541, 0.81944561),Alpha)
  1771. NK.C0 = NK.C0:lerp(CFrame.new(9.04871195e-06, 1.49893618, -0.0143969432, 1.00000012, 9.62987542e-07, -2.71946192e-07, -9.43895429e-07, 0.997964919, 0.0637682378, 3.31550837e-07, -0.063768208, 0.997964799),Alpha)
  1772. end
  1773. wo:breakJoints()
  1774. wo:destroy()
  1775. WalkSpeed = oWS
  1776. Attack = false
  1777. NeutralAnims = true
  1778. end
  1779.  
  1780. function MurderKnife()
  1781. local Sai = New("Model",Char,"Sai",{})
  1782. local Handle = New("Part",Sai,"Handle",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-13.6449995, 31.3018703, 19.1356354, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  1783. local HW = New("Weld",Handle,'Weld',{Part0=RArm,Part1=Handle,C0=CF.N(0,-1,0)*CF.A(M.R(-90),0,0)})
  1784. local HandPE = New('ParticleEmitter',Handle,'ParticleEmitter',{Color=ColorSequence.new(C3.N(1,0,0)),LightEmission=.25,LightInfluence=25,Size=NumberSequence.new(.3,0),Texture='rbxasset://textures/particles/sparkles_main.dds',LockedToPart=true,EmissionDirection='Top',Enabled=true,Lifetime=NumberRange.new(.3),Rate=50,Speed=NumberRange.new(5)})
  1785. local Extendo = New("Part",Sai,"Extendo",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-13.6450005, 32.2849998, 18.6353073, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  1786. local ExtenPE = New('ParticleEmitter',Extendo,'ParticleEmitter',{Color=ColorSequence.new(C3.N(1,0,0)),LightEmission=.25,LightInfluence=25,Size=NumberSequence.new(.2,0),Texture='rbxasset://textures/particles/sparkles_main.dds',LockedToPart=true,EmissionDirection='Top',Enabled=true,Lifetime=NumberRange.new(.2),Rate=75,Speed=NumberRange.new(5)})
  1787. local mot = New("Motor",Extendo,"mot",{Part0 = Extendo,Part1 = Handle,C1 = CFrame.new(-9.53674316e-07, 0.983129501, -0.500328064, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1788. local Extendo = New("Part",Sai,"Extendo",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-13.6450005, 32.2849998, 19.6353073, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  1789. local ExtenPE = New('ParticleEmitter',Extendo,'ParticleEmitter',{Color=ColorSequence.new(C3.N(1,0,0)),LightEmission=.25,LightInfluence=25,Size=NumberSequence.new(.2,0),Texture='rbxasset://textures/particles/sparkles_main.dds',LockedToPart=true,EmissionDirection='Top',Enabled=true,Lifetime=NumberRange.new(.2),Rate=75,Speed=NumberRange.new(5)})
  1790. local mot = New("Motor",Extendo,"mot",{Part0 = Extendo,Part1 = Handle,C1 = CFrame.new(-9.53674316e-07, 0.983129501, 0.499671936, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1791. local BladenShit = New("Part",Sai,"BladenShit",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.0500000007, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-13.6450005, 32.2849274, 19.1353073, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  1792. local BladePE = New('ParticleEmitter',BladenShit,'ParticleEmitter',{Color=ColorSequence.new(C3.N(1,0,0)),LightEmission=.25,LightInfluence=25,Size=NumberSequence.new(.3,0),Texture='rbxasset://textures/particles/smoke_main.dds',LockedToPart=true,EmissionDirection='Top',Enabled=true,Lifetime=NumberRange.new(.5),Rate=75,Speed=NumberRange.new(5)})
  1793. local HanB1PE = New('ParticleEmitter',BladenShit,'ParticleEmitter',{Color=ColorSequence.new(C3.N(1,0,0)),LightEmission=.25,LightInfluence=25,Size=NumberSequence.new(.3,0),Texture='rbxasset://textures/particles/sparkles_main.dds',LockedToPart=true,EmissionDirection='Front',Enabled=true,Lifetime=NumberRange.new(.25),Rate=50,Speed=NumberRange.new(5)})
  1794. local HanB2PE = New('ParticleEmitter',BladenShit,'ParticleEmitter',{Color=ColorSequence.new(C3.N(1,0,0)),LightEmission=.25,LightInfluence=25,Size=NumberSequence.new(.3,0),Texture='rbxasset://textures/particles/sparkles_main.dds',LockedToPart=true,EmissionDirection='Back',Enabled=true,Lifetime=NumberRange.new(.25),Rate=50,Speed=NumberRange.new(5)})
  1795. local mot = New("Motor",BladenShit,"mot",{Part0 = BladenShit,Part1 = Handle,C1 = CFrame.new(-9.53674316e-07, 0.983057022, -0.000328063965, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1796. local Hitbox = New("Part",Sai,"Hitbox",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.0500000007, 1.74999952, 0.340000063),CFrame = CFrame.new(-13.6450005, 33.2651939, 19.1278477, 1, 0, 0, 0, 1, 0, 0, 0, 1),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,})
  1797. local mot = New("Motor",Hitbox,"mot",{Part0 = Hitbox,Part1 = Handle,C1 = CFrame.new(-9.53674316e-07, 1.96332359, -0.00778770447, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1798.  
  1799. return HW,Sai
  1800. end
  1801.  
  1802.  
  1803.  
  1804. function MurderNigger(target)
  1805. if(target)then
  1806. local torso = GetTorso(target)
  1807. local hum = target:FindFirstChildOfClass'Humanoid'
  1808. local hed = target:FindFirstChild'Head'
  1809. if(torso and hum and hum.Health > 0 and hed)then
  1810. local oWS = WalkSpeed
  1811. local oPar = target.Parent
  1812. local originalpos = Root.CFrame
  1813. WalkSpeed = 0
  1814. Hum.JumpPower = 0
  1815. Attack = true
  1816. NeutralAnims = false
  1817. Root.Anchored = true
  1818. torso.Anchored = true
  1819. target.Parent = Char
  1820. Hum.AutoRotate = false
  1821. for i = 0, 9 do
  1822. NoobySphere(3,.25,'Multiply',Root.CFrame*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(1,1,10),-.01,Core2.BrickColor)
  1823. end
  1824. for i = 1, 24 do
  1825. NoobyBlock(1,M.RNG(4,8),'Multiply',Root.CFrame*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(3,3,3),.06,Core2.BrickColor,0)
  1826. end
  1827. NoobySphere2(3,'Multiply',Root.CFrame,V3.N(),.25,Core2.BrickColor)
  1828. Root.CFrame = torso.CFrame*CF.N(0, 0, 1.89)
  1829. for i = 0, 9 do
  1830. NoobySphere(3,.25,'Multiply',Root.CFrame*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(1,1,10),-.01,Core2.BrickColor)
  1831. end
  1832. for i = 1, 24 do
  1833. NoobyBlock(1,M.RNG(4,8),'Multiply',Root.CFrame*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(3,3,3),.06,Core2.BrickColor,0)
  1834. end
  1835. NoobySphere2(3,'Multiply',Root.CFrame,V3.N(),.25,Core2.BrickColor)
  1836.  
  1837. local HW,knife = MurderKnife()
  1838. --847061203
  1839. Sound(Core2,847061203,1,2.5,false,true,true)
  1840. for i = 0, 3, 0.1 do
  1841. swait()
  1842. local Alpha = .2
  1843. RJ.C0 = RJ.C0:lerp(CFrame.new(0, 0.00628662109, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),Alpha)
  1844. LH.C0 = LH.C0:lerp(CFrame.new(-0.496665925, -0.990936279, 0.00762737356, 1, -3.37450885e-08, 2.21652698e-07, 3.37455646e-08, 1, -2.1504236e-06, -2.21652627e-07, 2.1504236e-06, 1),Alpha)
  1845. RH.C0 = RH.C0:lerp(CFrame.new(0.498333007, -0.991060257, 0.0170113072, 1, -3.37450885e-08, 2.21652698e-07, 3.37455646e-08, 1, -2.1504236e-06, -2.21652627e-07, 2.1504236e-06, 1),Alpha)
  1846. LS.C0 = LS.C0:lerp(CFrame.new(-1.28516543, 0.724190474, -0.474189818, 0.972499251, 0.184650362, -0.141949132, -0.134552032, -0.0520570427, -0.989538252, -0.190108046, 0.981424689, -0.0257803537),Alpha)
  1847. RS.C0 = RS.C0:lerp(CFrame.new(1.14291549, 0.806114435, 0.620829105, 0.806192696, 0.353628874, 0.474341691, 0.13779296, -0.891899109, 0.430730879, 0.575383842, -0.281891108, -0.767770052),Alpha)
  1848. NK.C0 = NK.C0:lerp(CFrame.new(8.77380371e-05, 1.49900436, -0.00497436523, 1, 0, 0, 0, 1, 0, 0, 0, 1),Alpha)
  1849. HW.C0 = clerp(HW.C0,CFrame.new(-0.142453238, -1.03396463, -0.198824421, -0.998497248, 0.0548028648, 8.5413456e-05, 7.66813755e-05, -0.000161617994, 1, 0.0548028946, 0.998497188, 0.000157207251),Alpha)
  1850. end
  1851. Sound(torso,429400881,1.2,4,false,true,true)
  1852. target.Parent = oPar
  1853. local hum = target:FindFirstChildOfClass'Humanoid'
  1854. if(hum)then
  1855. hum.Health=hum.Health-hum.MaxHealth/3
  1856. end
  1857. for i = 0, 3, 0.1 do
  1858. swait()
  1859. local Alpha = .3
  1860. RJ.C0 = RJ.C0:lerp(CFrame.new(-0.00238382886, 0.00628662109, -0.00060180336, 0.896098733, 0, -0.443854868, 0, 1, 0, 0.443854868, 0, 0.896098733),Alpha)
  1861. LH.C0 = LH.C0:lerp(CFrame.new(-0.496673644, -0.990932465, 0.00768280122, 1.00000012, 0, 0, 0, 1, 0, 0, 0, 1.00000012),Alpha)
  1862. RH.C0 = RH.C0:lerp(CFrame.new(0.498329222, -0.991056442, 0.017009737, 1.00000012, 0, 0, 0, 1, 0, 0, 0, 1.00000012),Alpha)
  1863. LS.C0 = LS.C0:lerp(CFrame.new(-1.17789793, 0.575393677, -0.0879677832, 0.584696472, 0.754816532, -0.297291398, -0.179923102, -0.236678019, -0.95478332, -0.791048646, 0.61174798, -0.00257586688),Alpha)
  1864. RS.C0 = RS.C0:lerp(CFrame.new(1.05549359, 0.484450161, -0.690232515, 0.71294421, 0.397806346, -0.577460706, -0.424427927, -0.410723001, -0.806949615, -0.558185995, 0.820400417, -0.123982459),Alpha)
  1865. NK.C0 = NK.C0:lerp(CFrame.new(0.000124273589, 1.49900436, -0.00493157003, 0.896098733, 0, 0.443854868, 0, 1, 0, -0.443854868, 0, 0.896098733),Alpha)
  1866. HW.C0 = clerp(HW.C0,CFrame.new(0.0260544084, -1.07189536, -0.570477843, -0.998497128, 0.0523602702, -0.0161807239, 7.93784857e-05, 0.29663223, 0.954991877, 0.054803364, 0.953555346, -0.29619059),Alpha)
  1867. end
  1868. for i = 0, 3, 0.1 do
  1869. swait()
  1870. local Alpha = .3
  1871. RJ.C0 = RJ.C0:lerp(CFrame.new(-0.00238382886, 0.00628662109, -0.00060180336, 0.896098733, 0, -0.443854868, 0, 1, 0, 0.443854868, 0, 0.896098733),Alpha)
  1872. LH.C0 = LH.C0:lerp(CFrame.new(-0.496673644, -0.990932465, 0.00768280122, 1.00000012, 0, 0, 0, 1, 0, 0, 0, 1.00000012),Alpha)
  1873. RH.C0 = RH.C0:lerp(CFrame.new(0.498329222, -0.991056442, 0.017009737, 1.00000012, 0, 0, 0, 1, 0, 0, 0, 1.00000012),Alpha)
  1874. LS.C0 = LS.C0:lerp(CFrame.new(-1.17789793, 0.575393677, -0.0879677832, 0.584696472, 0.754816532, -0.297291398, -0.179923102, -0.236678019, -0.95478332, -0.791048646, 0.61174798, -0.00257586688),Alpha)
  1875. RS.C0 = RS.C0:lerp(CFrame.new(1.05549359, 0.484450161, -0.690232515, 0.71294421, 0.397806346, -0.577460706, -0.424427927, -0.410723001, -0.806949615, -0.558185995, 0.820400417, -0.123982459)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1876. NK.C0 = NK.C0:lerp(CFrame.new(0.000124273589, 1.49900436, -0.00493157003, 0.896098733, 0, 0.443854868, 0, 1, 0, -0.443854868, 0, 0.896098733),Alpha)
  1877. HW.C0 = clerp(HW.C0,CFrame.new(0.0260544084, -1.07189536, -0.570477843, -0.998497128, 0.0523602702, -0.0161807239, 7.93784857e-05, 0.29663223, 0.954991877, 0.054803364, 0.953555346, -0.29619059),Alpha)
  1878. end
  1879. Sound(torso,429400881,.7,4,false,true,true)
  1880. if(hum)then
  1881. hum.Health=hum.Health-hum.MaxHealth/3
  1882. end
  1883. coroutine.wrap(function()
  1884. local hum = target:FindFirstChildOfClass'Humanoid'
  1885. if(hum)then
  1886. repeat swait()
  1887. hum.Health=hum.Health-.5
  1888. until hum.Health <= 1
  1889. Kill(target)
  1890. knife:destroy()
  1891. end
  1892. end)()
  1893. for i = 0, 3, 0.1 do
  1894. swait()
  1895. local Alpha = .3
  1896. RJ.C0 = RJ.C0:lerp(CFrame.new(0.000169749488, 0.00628662109, -6.61667073e-05, 0.999548376, 0, 0.0300540105, 0, 1, 0, -0.0300540105, 0, 0.999548376),Alpha)
  1897. LH.C0 = LH.C0:lerp(CFrame.new(-0.444387794, -0.990932465, -0.227554411, 0.882354379, 0, -0.470585763, 0, 1, 0, 0.470585763, 0, 0.882354379),Alpha)
  1898. RH.C0 = RH.C0:lerp(CFrame.new(0.495574117, -0.991056442, 0.0314709544, 0.97812444, 0, -0.208021611, 0, 1, 0, 0.208021611, 0, 0.97812444),Alpha)
  1899. LS.C0 = LS.C0:lerp(CFrame.new(-1.00046349, 0.575390875, -0.63252908, 0.888165712, 0.3781358, -0.261104196, -0.179923102, -0.236678019, -0.95478332, -0.42283538, 0.894984365, -0.142173931),Alpha)
  1900. RS.C0 = RS.C0:lerp(CFrame.new(1.35260987, 0.74367249, -0.148820311, 0.373968333, 0.469723582, -0.799692273, -0.757211864, -0.343237787, -0.555714011, -0.53551662, 0.813355863, 0.227320194),Alpha)
  1901. NK.C0 = NK.C0:lerp(CFrame.new(-0.000104449631, 1.49900436, -0.00490342593, 0.999548376, 0, -0.0300540105, 0, 1, 0, 0.0300540105, 0, 0.999548376),Alpha)
  1902. HW.C0 = clerp(HW.C0,CFrame.new(-0.315003902, -0.881822228, -0.534994423, -0.905889809, 0.289212197, -0.309386551, -0.423450023, -0.631175756, 0.649851799, -0.00733225048, 0.719703913, 0.694242597),Alpha)
  1903. end
  1904.  
  1905.  
  1906. HW.Part0 = target:FindFirstChild'Head'
  1907. HW.C0 = CFrame.new(0.976348281, 0.254784644, 0.639342666, -0.527396142, -0.778684974, -0.339857459, 0.83536917, -0.402301013, -0.374582857, 0.154957026, -0.481460005, 0.862661362)
  1908. delay(2, function()
  1909. Kill(target)
  1910. knife:destroy()
  1911. end)
  1912. WalkSpeed = oWS
  1913. Hum.JumpPower = 50
  1914. Hum.AutoRotate = true
  1915. Root.CFrame = originalpos
  1916. Sound(Core2,847061203,1,2.5,false,true,true)
  1917. for i = 0, 9 do
  1918. NoobySphere(3,.25,'Multiply',Root.CFrame*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(1,1,10),-.01,Core2.BrickColor)
  1919. end
  1920. for i = 1, 24 do
  1921. NoobyBlock(1,M.RNG(4,8),'Multiply',Root.CFrame*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(3,3,3),.06,Core2.BrickColor,0)
  1922. end
  1923. NoobySphere2(3,'Multiply',Root.CFrame,V3.N(),.25,Core2.BrickColor)
  1924.  
  1925. Root.Anchored = false
  1926. torso.Anchored = false
  1927. Attack = false
  1928. NeutralAnims = true
  1929. end
  1930. end
  1931. end
  1932.  
  1933. function MobileMurder()
  1934. Attack = true
  1935. local oWS = WalkSpeed
  1936. WalkSpeed = 0
  1937. local what;
  1938. what = Mouse.Button1Down:connect(function()
  1939. what:disconnect();
  1940. local target = (Mouse.Target and Mouse.Target.Parent)
  1941. if(target)then
  1942. local torso = GetTorso(target)
  1943. local hum = target:FindFirstChildOfClass'Humanoid'
  1944. local hed = target:FindFirstChild'Head'
  1945. if(torso and hum and hum.Health > 0 and hed)then
  1946. WalkSpeed = oWS
  1947. MurderNigger(target)
  1948. else
  1949. WalkSpeed = oWS
  1950. Attack = false
  1951. end
  1952. else
  1953. WalkSpeed = oWS
  1954. Attack = false
  1955. end
  1956. end)
  1957. end
  1958.  
  1959.  
  1960. function NeckSnap(target)
  1961. if(target)then
  1962. local torso = GetTorso(target)
  1963. local hum = target:FindFirstChildOfClass'Humanoid'
  1964. local hed = target:FindFirstChild'Head'
  1965. if(torso and hum and hum.Health > 0 and hed)then
  1966. local oWS = WalkSpeed
  1967. local oPar = target.Parent
  1968. local originalpos = Root.CFrame
  1969. WalkSpeed = 0
  1970. Hum.JumpPower = 0
  1971. Attack = true
  1972. NeutralAnims = false
  1973. Root.Anchored = true
  1974. torso.Anchored = true
  1975. target.Parent = Char
  1976. Hum.AutoRotate = false
  1977. Root.CFrame = torso.CFrame*CF.N(-0.54454422, 0, 0.987496376)
  1978. for _,v in next, torso:children() do
  1979. if(v:IsA'JointInstance' and (v.Part0 == hed or v.Part1 == hed))then
  1980. v:destroy()
  1981. end
  1982. end
  1983. hed:breakJoints()
  1984. local weld = NewInstance('Motor',torso,{Part0=hed,Part1=torso,C0=CF.N(0,-1.5,0)})
  1985. for i = 0, 1, 0.1 do
  1986. swait()
  1987. local Alpha = .3
  1988. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674263, 4.19029675e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  1989. LH.C0 = clerp(LH.C0,CFrame.new(-0.49648428, -0.990816116, 0.0216189735, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  1990. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990978718, 0.0154631268, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  1991. LS.C0 = clerp(LS.C0,CFrame.new(-0.763917506, 0.783056259, -0.756683111, 0.675138593, -0.737685442, 0.00284584239, 0.140656561, 0.124941669, -0.982143223, 0.724157274, 0.663483143, 0.188113257),Alpha)
  1992. RS.C0 = clerp(RS.C0,CFrame.new(1.23871374, 1.09544897, -0.196351975, 0.766011953, 0.365654767, -0.528698623, -0.105766296, -0.739559352, -0.664729595, -0.634065628, 0.565109432, -0.527837396),Alpha)
  1993. NK.C0 = clerp(NK.C0,CFrame.new(1.00737725e-05, 1.4989512, -0.0144016817, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799),Alpha)
  1994. end
  1995. Sound(hed,1093102664,1,5,false,true,true)
  1996. for i = 0, 1.3, 0.1 do
  1997. swait()
  1998. local Alpha = .3
  1999. weld.C0 = weld.C0:lerp(CF.N(0,-1.5,0)*CF.A(0,M.R(-90),0),Alpha)
  2000. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674263, 4.19029675e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  2001. LH.C0 = clerp(LH.C0,CFrame.new(-0.49648428, -0.990818024, 0.0216189846, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2002. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990980625, 0.0154631399, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2003. LS.C0 = clerp(LS.C0,CFrame.new(-1.38228214, 0.484847993, -0.0603635609, 0.424681932, 0.905338109, 0.00285495515, -0.169125155, 0.0824314952, -0.982141495, -0.889405489, 0.41661495, 0.18812263),Alpha)
  2004. RS.C0 = clerp(RS.C0,CFrame.new(1.40680802, 0.48904568, -0.02736184, 0.441890627, -0.897064447, 0.00284484075, 0.169923306, 0.0805888921, -0.982156575, 0.8808285, 0.43448925, 0.188043654),Alpha)
  2005. NK.C0 = clerp(NK.C0,CFrame.new(1.00737716e-05, 1.49894726, -0.014402397, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799),Alpha)
  2006. end
  2007. target.Parent = oPar
  2008. target:breakJoints()
  2009. WalkSpeed = oWS
  2010. Hum.JumpPower = 50
  2011. Hum.AutoRotate = true
  2012. Root.Anchored = false
  2013. torso.Anchored = false
  2014. Attack = false
  2015. NeutralAnims = true
  2016. end
  2017. end
  2018. end
  2019.  
  2020. function MobileNeckSnap()
  2021. Attack = true
  2022. local oWS = WalkSpeed
  2023. WalkSpeed = 0
  2024. local what;
  2025. what = Mouse.Button1Down:connect(function()
  2026. what:disconnect();
  2027. local target = (Mouse.Target and Mouse.Target.Parent)
  2028. if(target)then
  2029. local torso = GetTorso(target)
  2030. local hum = target:FindFirstChildOfClass'Humanoid'
  2031. local hed = target:FindFirstChild'Head'
  2032. if(torso and hum and hum.Health > 0 and hed)then
  2033. WalkSpeed = oWS
  2034. NeckSnap(target)
  2035. else
  2036. WalkSpeed = oWS
  2037. Attack = false
  2038. end
  2039. else
  2040. WalkSpeed = oWS
  2041. Attack = false
  2042. end
  2043. end)
  2044. end
  2045.  
  2046. function SongSmash()
  2047. Attack = true
  2048. NeutralAnims = false
  2049. for i = 0, 3, 0.1 do
  2050. swait()
  2051. NoobySphere(5,.3,"Multiply",LArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(.1,.1,.1),0,Core2.Color,0,1088207)
  2052. NoobyBlock(2,.04,'Multiply',LArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),.004,Core2.Color,0,true)
  2053. local Alpha = .1
  2054. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.001753752, 0.00628927909, -0.000408248976, 0.942081869, -0.00210913899, -0.335376531, 7.21194738e-07, 0.99998033, -0.00628671842, 0.335383177, 0.00592236174, 0.942063153),Alpha)
  2055. LH.C0 = clerp(LH.C0,CFrame.new(-0.496480286, -0.990816116, 0.0216198936, 0.9367311, 0, 0.350050032, -0.00220137485, 0.99998033, 0.00589086255, -0.350043088, -0.00628874451, 0.936712503),Alpha)
  2056. RH.C0 = clerp(RH.C0,CFrame.new(0.498543233, -0.990978837, 0.0154619068, 0.975587726, 0, -0.219610512, 0.00138107454, 0.99998033, 0.00613522204, 0.219606131, -0.00628874451, 0.975568414),Alpha)
  2057. LS.C0 = clerp(LS.C0,CFrame.new(-1.40567565, 0.408012271, -0.00104653835, 0.958351374, 0.285325468, -0.0123402029, 0.2337396, -0.758791327, 0.607948899, 0.164099574, -0.585512877, -0.793880343),Alpha)
  2058. RS.C0 = clerp(RS.C0,CFrame.new(1.42242038, 0.493699282, -0.0249331407, 0.987734318, -0.155363053, 0.0156076849, 0.155282006, 0.987850249, 0.0062857219, -0.0163946152, -0.00378503278, 0.999858558),Alpha)
  2059. NK.C0 = clerp(NK.C0,CFrame.new(1.16258161e-05, 1.49894369, -0.0144085325, 0.9367311, 0, 0.350050032, -0.00220137485, 0.99998033, 0.00589086255, -0.350043088, -0.00628874451, 0.936712503),Alpha)
  2060. end
  2061. local pl = GetClientProperty(Music,'PlaybackLoudness')
  2062. AOEDamage(Root.CFrame.p,110,{MinimumDamage=pl/15,MaximumDamage=pl/5})
  2063. NoobySphere2(3,"Multiply",Root.CFrame*CF.N(0,-2.9,0),V3.N(110,0.1,110),0.01,Core2.Color)
  2064. for i = 1, 20 do
  2065. NoobySphere(3,0.5,"Multiply",Root.CFrame*CF.N(M.RNG(-42.5,42.5),-5,M.RNG(-42.5,42.5))*CF.A(M.R(90)+M.RRNG(-45,45),M.RRNG(-45,45),M.RRNG(-45,45)),V3.N(.5,.5,.5),0,Core2.Color,0,1088207)
  2066. NoobySphere(3,0.5,"Multiply",Root.CFrame*CF.N(M.RNG(-42.5,42.5),-5,M.RNG(-42.5,42.5))*CF.A(M.R(90)+M.RRNG(-45,45),M.RRNG(-45,45),M.RRNG(-45,45)),V3.N(.5,.5,.5),0,Core2.Color,0,1088207)
  2067. end
  2068. for i = 0, 3, 0.1 do
  2069. swait()
  2070. local Alpha = .4
  2071. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0056809783, -1.84688139, -0.363832742, 0.999853492, -0.0143729132, -0.00929748639, 0.0143199814, 0.40471217, 0.914332032, -0.00937880948, -0.914331198, 0.404858679),Alpha)
  2072. LH.C0 = clerp(LH.C0,CFrame.new(-0.498466104, -0.621809721, -0.107522458, 0.999878109, -0.00381839275, 0.0151433209, -9.67067026e-05, 0.968117595, 0.250496507, -0.0156170065, -0.25046742, 0.967999101),Alpha)
  2073. RH.C0 = clerp(RH.C0,CFrame.new(0.49715057, -0.612025738, -0.0758087933, 0.999878109, -0.00322529091, 0.0152806351, -9.67067026e-05, 0.977144957, 0.212574452, -0.0156170065, -0.212549999, 0.977025449),Alpha)
  2074. LS.C0 = clerp(LS.C0,CFrame.new(-1.46437562, 0.573429823, -0.135539591, 0.995870709, 0.090780057, 0.000750792213, -0.0041781459, 0.0540931821, -0.998527229, -0.090686962, 0.99440074, 0.054249078),Alpha)
  2075. RS.C0 = clerp(RS.C0,CFrame.new(1.46732497, 0.668299794, -0.164544582, 0.998940408, -0.0457421541, -0.00509791775, -0.000265741721, 0.105029136, -0.994469225, 0.0460245833, 0.993416667, 0.104905695),Alpha)
  2076. NK.C0 = clerp(NK.C0,CFrame.new(7.62883064e-06, 1.49891925, -0.0144104436, 1.00000012, -4.65661287e-10, 1.62981451e-09, 4.65661287e-10, 0.997964621, 0.0637715757, 6.98491931e-10, -0.0637715459, 0.997964621),Alpha)
  2077. end
  2078. Attack = false
  2079. NeutralAnims = true
  2080. end
  2081.  
  2082. function AttackOne()
  2083. Attack = true
  2084. NeutralAnims = false
  2085. for i = 0, .7, 0.1 do
  2086. swait()
  2087. local Alpha = .3
  2088. RJ.C0 = clerp(RJ.C0,CFrame.new(0.054845117, 0.00628340431, 0.0621978641, 0.574560821, -0.00514742406, -0.818445683, 1.76018864e-06, 0.99998033, -0.00628790678, 0.818461895, 0.00361134461, 0.574549437),Alpha)
  2089. LH.C0 = clerp(LH.C0,CFrame.new(-0.525948346, -0.994591057, 0.0135081597, 0.989666939, 0.0856333151, 0.115006924, -0.0869238526, 0.996195495, 0.00624422729, -0.114034653, -0.0161765479, 0.993345082),Alpha)
  2090. RH.C0 = clerp(RH.C0,CFrame.new(0.487148911, -0.967346072, -0.0260838568, 0.964277864, -0.0686885938, 0.255832553, -0.00166595122, 0.964203477, 0.265158683, -0.264888048, -0.256112814, 0.92964536),Alpha)
  2091. LS.C0 = clerp(LS.C0,CFrame.new(-1.38879275, 0.498546124, -0.255748421, 0.692717075, 0.721134841, 0.0103802728, 0.00202227081, 0.0124506345, -0.999920607, -0.721206725, 0.692682922, 0.00716643687),Alpha)
  2092. RS.C0 = clerp(RS.C0,CFrame.new(1.27866459, 0.504911065, -0.181807131, 0.763874948, -0.645362377, -0.00163397193, -0.0634241104, -0.0725510716, -0.995346248, 0.642240286, 0.760423601, -0.0963514596),Alpha)
  2093. NK.C0 = clerp(NK.C0,CFrame.new(-0.0864869878, 1.49901688, -0.00313834194, 0.57456094, -0.0470548049, 0.817108035, -0.00514778076, 0.998118699, 0.0610983856, -0.818445623, -0.0393110402, 0.573237658),Alpha)
  2094. end
  2095. Sound(RArm,200632136,1.1,5,false,true,true)
  2096. for i = 0, .9, 0.1 do
  2097. swait()
  2098. local Alpha = .3
  2099. AOEDamage(RArm.CFrame.p,2,{MinimumDamage=10,MaximumDamage=30})
  2100. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0895246193, 0.00628795894, -0.0240665041, 0.667355478, 0.00468144845, 0.744724631, -1.60177922e-06, 0.99998033, -0.00628458662, -0.744739354, 0.0041928608, 0.667342305),Alpha)
  2101. LH.C0 = clerp(LH.C0,CFrame.new(-0.525933743, -0.994594276, 0.0135074947, 0.995298743, 0.0856334865, -0.0452488065, -0.0847965032, 0.996195495, 0.0201073457, 0.0467984378, -0.0161758773, 0.998773336),Alpha)
  2102. RH.C0 = clerp(RH.C0,CFrame.new(0.490905643, -0.74434638, -0.358290195, 0.993401766, -0.0489627272, -0.103709608, 0.0897386894, 0.894942641, 0.437063992, 0.0714142919, -0.443486929, 0.893431306),Alpha)
  2103. LS.C0 = clerp(LS.C0,CFrame.new(-1.34781098, 0.451429009, 0.184345022, 0.920896769, 0.211902812, 0.327179492, -0.00245033321, 0.842468321, -0.538740575, -0.389798939, 0.495322734, 0.776345491),Alpha)
  2104. RS.C0 = clerp(RS.C0,CFrame.new(1.33741677, 0.579409122, -0.335710943, 0.71467489, -0.698394477, 0.0385371894, -0.0347292982, -0.0904589221, -0.995294571, 0.698594153, 0.709973574, -0.0889034569),Alpha)
  2105. NK.C0 = clerp(NK.C0,CFrame.new(0.0455316827, 1.49947691, 0.069996126, 0.667355359, 0.0428168029, -0.743507743, 0.00468109129, 0.99808526, 0.0616789386, 0.744724751, -0.0446421988, 0.665876985),Alpha)
  2106. end
  2107. Combo = 2
  2108. Attack = false
  2109. NeutralAnims = true
  2110. end
  2111.  
  2112. function AttackTwo()
  2113. Attack = true
  2114. NeutralAnims = false
  2115. for i = 0, 1, 0.1 do
  2116. swait()
  2117. local Alpha = .3
  2118. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00337019563, 0.00628272956, -0.00105122454, 0.788301051, 0.00386909139, 0.615277588, -1.32338778e-06, 0.99998033, -0.00628654705, -0.615289807, 0.00495487731, 0.788285434),Alpha)
  2119. LH.C0 = clerp(LH.C0,CFrame.new(-0.370244205, -1.06356883, -0.0345072895, 0.88316524, 0.227487147, 0.41020599, -0.259257317, 0.965541184, 0.0227174684, -0.390902787, -0.126412138, 0.911709964),Alpha)
  2120. RH.C0 = clerp(RH.C0,CFrame.new(0.39778316, -1.07560706, -0.0971514285, 0.900898933, -0.0766149312, -0.427213579, 0.151964575, 0.977673352, 0.145127282, 0.406556368, -0.195666283, 0.892427385),Alpha)
  2121. LS.C0 = clerp(LS.C0,CFrame.new(-1.47616029, 0.512279212, 0.0670655966, 0.904187679, -0.427135438, 0.00023345463, 0.00958644785, 0.0197467823, -0.999759197, 0.427027881, 0.903972089, 0.0219495054),Alpha)
  2122. RS.C0 = clerp(RS.C0,CFrame.new(1.33361411, 0.488021076, -0.300545812, 0.00661067665, -0.543416262, 0.839437485, 0.976997852, -0.175422177, -0.121254832, 0.213147745, 0.820930004, 0.529756606)*CF.A(0,M.R(-90),0),Alpha)
  2123. NK.C0 = clerp(NK.C0,CFrame.new(-0.000233855098, 1.49894583, -0.0145844966, 0.788300931, 0.0353745371, -0.614272296, 0.0038687347, 0.998041451, 0.062439695, 0.615277767, -0.0515977256, 0.786619961),Alpha)
  2124. end
  2125. Sound(LArm,200632136,.9,5,false,true,true)
  2126. for i = 0, 1, 0.1 do
  2127. swait()
  2128. local Alpha = .3
  2129. AOEDamage(LArm.CFrame.p,2,{MinimumDamage=10,MaximumDamage=30})
  2130. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0139055764, 0.00628619827, -0.0431878939, 0.736094832, -0.0042554969, -0.676865041, 1.4556681e-06, 0.99998033, -0.00628536195, 0.676878333, 0.00462563755, 0.736080408),Alpha)
  2131. LH.C0 = clerp(LH.C0,CFrame.new(-0.370245337, -1.06356549, -0.0345049649, 0.883166075, 0.227488101, 0.410203636, -0.25925675, 0.965541363, 0.0227144919, -0.390901268, -0.126408711, 0.911711276),Alpha)
  2132. RH.C0 = clerp(RH.C0,CFrame.new(0.397780299, -1.07560635, -0.0971318483, 0.900898337, -0.076615192, -0.427214652, 0.151964024, 0.977673769, 0.145124823, 0.406557709, -0.195663959, 0.892427325),Alpha)
  2133. LS.C0 = clerp(LS.C0,CFrame.new(-1.54785693, 0.502721965, -0.369121343, 0.640384734, 0.768054307, 9.36477445e-05, -0.0167029109, 0.0140483743, -0.999761999, -0.767872751, 0.640230715, 0.0218251087),Alpha)
  2134. RS.C0 = clerp(RS.C0,CFrame.new(1.41005266, 0.394677043, -0.101526827, 0.621816397, -0.730075538, 0.283432782, 0.783004642, 0.586830258, -0.206238553, -0.0157571733, 0.350171626, 0.93655318)*CF.A(0,M.R(-90),0),Alpha)
  2135. NK.C0 = clerp(NK.C0,CFrame.new(0.0361058414, 1.49909592, 0.00928576291, 0.736094952, -0.0389148258, 0.67575866, -0.00425585406, 0.998060346, 0.0621110015, -0.676864862, -0.0485955328, 0.7345016),Alpha)
  2136. end
  2137. Combo = 3
  2138. Attack = false
  2139. NeutralAnims = true
  2140. end
  2141.  
  2142. function AttackThree()
  2143. Attack = true
  2144. NeutralAnims = false
  2145. for i = 0, 1, 0.1 do
  2146. swait()
  2147. local Alpha = .3
  2148. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674868, -5.34626452e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  2149. LH.C0 = clerp(LH.C0,CFrame.new(-0.496486187, -0.990816116, 0.0216190033, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2150. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990978718, 0.0154631268, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2151. LS.C0 = clerp(LS.C0,CFrame.new(-1.12213016, 0.47289753, -0.302224725, 0.912795186, -0.408417523, -7.55176477e-10, 0.00256825075, 0.00573992962, -0.999980211, 0.408409536, 0.912777245, 0.00628829934),Alpha)
  2152. RS.C0 = clerp(RS.C0,CFrame.new(1.11283636, 0.472678095, -0.337120384, 0.899599433, 0.436715961, -7.55176477e-10, -0.00274620112, 0.00565694971, -0.999980211, -0.436707377, 0.89958173, 0.00628829934),Alpha)
  2153. NK.C0 = clerp(NK.C0,CFrame.new(8.16642296e-06, 1.49894738, -0.0144004971, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799),Alpha)
  2154. end
  2155. --for a = 1, 3 do
  2156. local a = 2
  2157. coroutine.wrap(function()
  2158. for i = 5,45,10 do
  2159. local hite = Instance.new("Part",Char)
  2160. hite.Anchored = true
  2161. hite.CanCollide = false
  2162. hite.Material = "Neon"
  2163. hite.Size = V3.N(1, 1, 1)
  2164. hite.Transparency = 1
  2165. hite.CFrame = (Root.CFrame + Root.CFrame.lookVector)*CF.A(0,M.R(90+(a*45)),0)*CF.N(0,0,i)
  2166. CamShakeAOE(hite.CFrame.p,10,30,250)
  2167. NoobySphere2(3,'Multiply',hite.CFrame,V3.N(0,0,0),.15,Core2.Color)
  2168. NoobySphere2(6,'Multiply',hite.CFrame,V3.N(0,0,0),.3,Core2.Color)
  2169. for i = 1, 2 do
  2170. NoobySphere(2,.2,'Multiply',Root.CFrame*CF.N(0,-.5,-.5)*CF.A(M.RRNG(-20,20),M.RRNG(-20,20),M.RRNG(-20,20)),V3.N(.5,.5,5),-.005,Core2.Color,0)
  2171. end
  2172. for i = 1, 5 do
  2173. NoobySphere(2.25,.6,'Multiply',hite.CFrame*CF.N(0,0,0)*CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360)),V3.N(2,2,2),0,Core2.Color,0)
  2174. end
  2175. AOEDamage(hite.CFrame.p,10,{MinimumDamage=25,MaximumDamage=45})
  2176. Sound(hite,183763506,1,5,false,true,true)
  2177. S.Debris:AddItem(hite,2)
  2178. swait()
  2179. end
  2180. end)()
  2181. --end
  2182. for i = 0, 1, 0.1 do
  2183. swait()
  2184. local Alpha = .3
  2185. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00691798097, -0.0495741703, 0.443018734, 0.999998093, -0.00196288247, -0.000110176392, 0.00196200004, 0.992848635, 0.119364031, -0.000124909915, -0.119364008, 0.992850542),Alpha)
  2186. LH.C0 = clerp(LH.C0,CFrame.new(-0.497228384, -0.946920514, -0.0261252522, 0.999878228, 0.0041074818, 0.0150607219, -9.9174933e-05, 0.966415524, -0.256984442, -0.0156104742, 0.25695163, 0.966298223),Alpha)
  2187. RH.C0 = clerp(RH.C0,CFrame.new(0.497788221, -0.949530363, -0.0326310396, 0.999878228, 0.0041074818, 0.0150607219, -9.9174933e-05, 0.966415524, -0.256984442, -0.0156104742, 0.25695163, 0.966298223),Alpha)
  2188. LS.C0 = clerp(LS.C0,CFrame.new(-1.43487072, 0.476260573, 0.232709944, -0.586293817, 0.810098529, 9.3865674e-07, -0.00509618223, -0.00368710607, -0.999980271, -0.810082495, -0.586282253, 0.00629013777),Alpha)
  2189. RS.C0 = clerp(RS.C0,CFrame.new(1.44212484, 0.475975186, 0.187793851, -0.560718656, -0.828006506, -2.90002208e-06, 0.00520995259, -0.00352462381, -0.999980271, 0.827990055, -0.56070751, 0.00629019737),Alpha)
  2190. NK.C0 = clerp(NK.C0,CFrame.new(9.53681956e-06, 1.49895513, -0.0144005343, 1.00000012, 0, 9.31322575e-10, 1.16415322e-10, 0.99796474, 0.0637698025, -9.31322575e-10, -0.0637697875, 0.997964621),Alpha)
  2191. end
  2192. Combo = 1
  2193. Attack = false
  2194. NeutralAnims = true
  2195. end
  2196.  
  2197.  
  2198. local WingSine = 0
  2199. local WingChange = 1
  2200.  
  2201. function MurderMode()
  2202. Attack = true
  2203. NeutralAnims = false
  2204. local Sin = 0
  2205. MusicID = 407749940
  2206. Pitch = 1
  2207. WalkSpeed = 0
  2208. Sound(Core2,136007472,1.25,2.5,false,true,true)
  2209. for i = 0, 4, 0.1 do
  2210. swait()
  2211. NoobySphere(2.5,-1.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(3.5,3.5,45),-.035,Core2.Color,100)
  2212. Sin = Sin + 5
  2213. local Alpha = .1
  2214. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00700476859, 0.0667984039, -0.448462069, 0.999972343, -0.00723911775, -0.00172879919, 0.00722799823, 0.88917774, 0.457504779, -0.00177471992, -0.457504541, 0.889205575),Alpha)
  2215. LH.C0 = clerp(LH.C0,CFrame.new(-0.497889668, -1.14359522, -0.0677340925, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2216. RH.C0 = clerp(RH.C0,CFrame.new(0.497117043, -1.14809179, -0.0749855936, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2217. LS.C0 = clerp(LS.C0,CFrame.new(-1.20745349, 0.562693655, 0.156515986, 0.841866791, -0.539501786, -0.014077506, -0.490290582, -0.753652692, -0.43774724, 0.225555882, 0.375426948, -0.898987949)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2218. RS.C0 = clerp(RS.C0,CFrame.new(1.17680144, 0.613272369, 0.0997506529, 0.834507108, 0.550817847, -0.0140647329, 0.49015516, -0.753777146, -0.437684804, -0.251686275, 0.358357221, -0.899018526)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2219. NK.C0 = clerp(NK.C0,CFrame.new(6.50798393e-06, 1.53005648, -0.348988175, 1.00000012, 2.40840018e-06, -1.19656324e-05, 5.68898395e-06, 0.775360823, 0.631518543, 1.07986853e-05, -0.631518602, 0.775360942)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2220. end
  2221. for _,v in next, LWing:children() do
  2222. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Really red' end
  2223. end
  2224. for _,v in next, RWing:children() do
  2225. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Really red' end
  2226. end
  2227. for _,v in next, LWingEXT:children() do
  2228. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Really red' end
  2229. end
  2230. for _,v in next, RWingEXT:children() do
  2231. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Really red' end
  2232. end
  2233. for _,v in next, Halo:children() do
  2234. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Really red' end
  2235. end
  2236. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,0,0) end)
  2237. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,0,0) end)
  2238. WalkSpeed = 16
  2239. Mode = 1
  2240. Core2.BrickColor = BrickColor.new'Really red'
  2241. Core2.Material = Enum.Material.Neon
  2242. Sound(Root,"206082327",1,2.5,false,true,true)
  2243. Sound(Root,"847061203",1,5,false,true,true)
  2244. Sound(Root,"239000203",1,2.5,false,true,true)
  2245. Sound(Root,"579687077",.75,2.5,false,true,true)
  2246. RecolorTextAndRename("Murder",Color3.new(1,0,0),Color3.new(0,0,0))
  2247. NoobySphere2(2.5,'Multiply',Core2.CFrame,V3.N(0,0,0),1,Core2.BrickColor)
  2248. for i = 1, 24 do
  2249. NoobyBlock(1,M.RNG(20,100)/100,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(2,2,2),.04,Core2.Color,0,true)
  2250. end
  2251. for i = 0, 15 do
  2252. NoobySphere(3,-.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(.5,.5,25),-.04,Core2.Color,0)
  2253. end
  2254. for i = 0, 1.4, 0.1 do
  2255. swait()
  2256. local Alpha = .3
  2257. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0104959598, -0.113952652, 0.672263861, 0.999963522, 0.00820299331, -0.0023882892, -0.00821700692, 0.846846819, -0.531773448, -0.00233961921, 0.531773746, 0.846883237),Alpha)
  2258. LH.C0 = clerp(LH.C0,CFrame.new(-0.49749428, -1.06169748, -0.0426189601, 0.999878228, -0.00744201383, 0.013721575, -0.000100045589, 0.875963986, 0.482376754, -0.0156094572, -0.482319295, 0.875856459),Alpha)
  2259. RH.C0 = clerp(RH.C0,CFrame.new(0.498449236, -1.1497941, 0.0108022094, 0.999878228, -0.0120362351, 0.009939529, -0.000100045589, 0.631795883, 0.775134981, -0.0156094572, -0.775041461, 0.631717622),Alpha)
  2260. LS.C0 = clerp(LS.C0,CFrame.new(-1.12307608, 0.484921068, 0.092245549, 0.865161359, 0.501252413, -0.0155520458, 0.497926384, -0.862286389, -0.092366755, -0.059709385, 0.07216838, -0.995603561),Alpha)
  2261. RS.C0 = clerp(RS.C0,CFrame.new(1.37669122, 0.484069884, 0.0531393886, 0.866546988, -0.498853445, -0.0155524863, -0.49802509, -0.862227678, -0.0923835635, 0.032676056, 0.0878001451, -0.995602131),Alpha)
  2262. NK.C0 = clerp(NK.C0,CFrame.new(1.14440181e-05, 1.49895036, -0.0144141242, 1.00000012, 0, -9.31322575e-10, 0, 0.99796474, 0.0637694895, -9.31322575e-10, -0.0637694895, 0.99796468),Alpha)
  2263. end
  2264. Attack = false
  2265. NeutralAnims = true
  2266. end
  2267.  
  2268. function PureMode()
  2269. for _,v in next, LWing:children() do
  2270. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Pastel Blue' end
  2271. end
  2272. for _,v in next, RWing:children() do
  2273. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel Blue' end
  2274. end
  2275. for _,v in next, LWingEXT:children() do
  2276. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel Blue' end
  2277. end
  2278. for _,v in next, RWingEXT:children() do
  2279. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel Blue' end
  2280. end
  2281. for _,v in next, Halo:children() do
  2282. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Pastel Blue' end
  2283. end
  2284. WalkSpeed = 16
  2285. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(0,1,1) end)
  2286. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(0,1,1) end)
  2287. RecolorTextAndRename("Clarity",C3.N(1,1,1),BrickColor.new'Pastel Blue'.Color)
  2288. MusicID = 1539245059
  2289. Pitch = 1
  2290. Mode = 2
  2291. Core2.BrickColor = BrickColor.new'Pastel Blue'
  2292. Core2.Material = Enum.Material.Neon
  2293. end
  2294.  
  2295. function GlitchMode()
  2296. for _,v in next, LWing:children() do
  2297. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 0 v.BrickColor = BrickColor.new'White' end
  2298. end
  2299. for _,v in next, RWing:children() do
  2300. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 1 v.BrickColor = BrickColor.new'White' end
  2301. end
  2302. for _,v in next, LWingEXT:children() do
  2303. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 1 v.BrickColor = BrickColor.new'White' end
  2304. end
  2305. for _,v in next, RWingEXT:children() do
  2306. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 1 v.BrickColor = BrickColor.new'White' end
  2307. end
  2308. for _,v in next, Halo:children() do
  2309. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'White' end
  2310. end
  2311. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,1,1) end)
  2312. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,1,1) end)
  2313. WalkSpeed = 16
  2314. RecolorTextAndRename("Glitchy",C3.N(1,1,1),C3.N(1,1,1))
  2315. MusicID = 1470848774
  2316. Pitch = .93
  2317. Mode = 3
  2318. Core2.BrickColor = BrickColor.new'Dark stone grey'
  2319. Core2.Material = Enum.Material.DiamondPlate
  2320. end
  2321.  
  2322. function StressMode()
  2323. for _,v in next, LWing:children() do
  2324. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .25 v.BrickColor = BrickColor.new'Crimson' end
  2325. end
  2326. for _,v in next, RWing:children() do
  2327. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.Color = C3.RGB(16,16,16) end
  2328. end
  2329. for _,v in next, LWingEXT:children() do
  2330. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Crimson' end
  2331. end
  2332. for _,v in next, RWingEXT:children() do
  2333. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Crimson' end
  2334. end
  2335. for _,v in next, Halo:children() do
  2336. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Crimson' end
  2337. end
  2338. WalkSpeed = 14
  2339. RecolorTextAndRename("Stress",C3.N(.6,0,0),C3.N(0,0,0))
  2340. MusicID = 614032233
  2341. Pitch = 1
  2342. Mode = 4
  2343. Core2.BrickColor = BrickColor.new'Really red'
  2344. Core2.Material = Enum.Material.Neon
  2345. end
  2346.  
  2347. function JusticeMode()
  2348. for _,v in next, LWing:children() do
  2349. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Institutional white' end
  2350. end
  2351. for _,v in next, RWing:children() do
  2352. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Institutional white' end
  2353. end
  2354. for _,v in next, LWingEXT:children() do
  2355. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Institutional white' end
  2356. end
  2357. for _,v in next, RWingEXT:children() do
  2358. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Institutional white' end
  2359. end
  2360. for _,v in next, Halo:children() do
  2361. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Institutional white' end
  2362. end
  2363. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,1,1) end)
  2364. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,1,1) end)
  2365. WalkSpeed = 50
  2366. RecolorTextAndRename("Justice",C3.N(1,1,1),C3.N(0,0,0))
  2367. MusicID = 1102271169
  2368. Pitch = 1
  2369. Mode = 5
  2370. Core2.BrickColor = BrickColor.new'White'
  2371. Core2.Material = Enum.Material.Neon
  2372. end
  2373.  
  2374. function IceMode()
  2375. for _,v in next, LWing:children() do
  2376. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Pastel light blue' end
  2377. end
  2378. for _,v in next, RWing:children() do
  2379. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Pastel light blue' end
  2380. end
  2381. for _,v in next, LWingEXT:children() do
  2382. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel light blue' end
  2383. end
  2384. for _,v in next, RWingEXT:children() do
  2385. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel light blue' end
  2386. end
  2387. for _,v in next, Halo:children() do
  2388. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Pastel light blue' end
  2389. end
  2390. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(0,1,1) end)
  2391. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(0,1,1) end)
  2392. WalkSpeed = 8
  2393. RecolorTextAndRename("SubZero",C3.N(0,1,1),C3.N(1,1,1))
  2394. MusicID = 144121562
  2395. Pitch = 1
  2396. Mode = 7
  2397. Core2.BrickColor = BrickColor.new'Pastel light blue'
  2398. Core2.Material = Enum.Material.Neon
  2399. end
  2400.  
  2401. function LoveMode()
  2402. for _,v in next, LWing:children() do
  2403. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Pink' end
  2404. end
  2405. for _,v in next, RWing:children() do
  2406. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Pink' end
  2407. end
  2408. for _,v in next, LWingEXT:children() do
  2409. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pink' end
  2410. end
  2411. for _,v in next, RWingEXT:children() do
  2412. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pink' end
  2413. end
  2414. for _,v in next, Halo:children() do
  2415. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Pink' end
  2416. end
  2417. pcall(function() Char.ReaperShadowHead.Eye1.Color = BrickColor.new'Pink'.Color end)
  2418. pcall(function() Char.ReaperShadowHead.Eye2.Color = BrickColor.new'Pink'.Color end)
  2419. WalkSpeed = 16
  2420. RecolorTextAndRename("Love",BrickColor.new'Pink'.Color,C3.N(1,1,1))
  2421. MusicID = 1030177093
  2422. Pitch = 1
  2423. Mode = 8
  2424. Core2.BrickColor = BrickColor.new'Pink'
  2425. Core2.Material = Enum.Material.Neon
  2426. end
  2427.  
  2428.  
  2429.  
  2430. function VisMode()
  2431. for _,v in next, LWing:children() do
  2432. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Institutional white' end
  2433. end
  2434. for _,v in next, RWing:children() do
  2435. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Institutional white' end
  2436. end
  2437. for _,v in next, LWingEXT:children() do
  2438. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Institutional white' end
  2439. end
  2440. for _,v in next, RWingEXT:children() do
  2441. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Institutional white' end
  2442. end
  2443. for _,v in next, Halo:children() do
  2444. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Institutional white' end
  2445. end
  2446. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,1,1) end)
  2447. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,1,1) end)
  2448. WalkSpeed = 16
  2449. RecolorTextAndRename("Visualiser",C3.N(1,1,1),C3.N(0,0,0))
  2450. MusicID = VisSong
  2451. Pitch = 1
  2452. Mode = 6
  2453. Core2.BrickColor = BrickColor.new'White'
  2454. Core2.Material = Enum.Material.Neon
  2455. end
  2456.  
  2457. function ToxicMode()
  2458. for _,v in next, LWing:children() do
  2459. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Lime green' end
  2460. end
  2461. for _,v in next, RWing:children() do
  2462. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .85 v.BrickColor = BrickColor.new'Forest green' end
  2463. end
  2464. for _,v in next, LWingEXT:children() do
  2465. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .75 v.BrickColor = BrickColor.new'Forest green' end
  2466. end
  2467. for _,v in next, RWingEXT:children() do
  2468. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Forest green' end
  2469. end
  2470. for _,v in next, Halo:children() do
  2471. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Lime green' end
  2472. end
  2473. pcall(function() Char.ReaperShadowHead.Eye1.Color = BrickColor.new'Lime green'.Color end)
  2474. pcall(function() Char.ReaperShadowHead.Eye2.Color = BrickColor.new'Lime green'.Color end)
  2475. WalkSpeed = 14
  2476. RecolorTextAndRename("Nuclear",BrickColor.new'Lime green'.Color,C3.N(0,.6,0))
  2477. MusicID = 798163149
  2478. Pitch = 1
  2479. Mode = 9
  2480. Core2.BrickColor = BrickColor.new'Lime green'
  2481. Core2.Material = Enum.Material.Neon
  2482. end
  2483.  
  2484. function BarracudaMode()
  2485. for _,v in next, LWing:children() do
  2486. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'New Yeller' end
  2487. end
  2488. for _,v in next, RWing:children() do
  2489. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'New Yeller' end
  2490. end
  2491. for _,v in next, LWingEXT:children() do
  2492. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .5 v.BrickColor = BrickColor.new'New Yeller' end
  2493. end
  2494. for _,v in next, RWingEXT:children() do
  2495. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .5 v.BrickColor = BrickColor.new'New Yeller' end
  2496. end
  2497. for _,v in next, Halo:children() do
  2498. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'New Yeller' end
  2499. end
  2500. pcall(function() Char.ReaperShadowHead.Eye1.Color = BrickColor.new'Lime green'.Color end)
  2501. pcall(function() Char.ReaperShadowHead.Eye2.Color = BrickColor.new'Lime green'.Color end)
  2502. WalkSpeed = 24
  2503. RecolorTextAndRename("Ancient",BrickColor.new'New Yeller'.Color,C3.N(1,1,1))
  2504. MusicID = 256251217
  2505. Pitch = 1
  2506. Mode = 16
  2507. Core2.BrickColor = BrickColor.new'New Yeller'
  2508. Core2.Material = Enum.Material.Neon
  2509. end
  2510.  
  2511. function FluctuateMode()
  2512. for _,v in next, LWing:children() do
  2513. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Alder' end
  2514. end
  2515. for _,v in next, RWing:children() do
  2516. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Alder' end
  2517. end
  2518. for _,v in next, LWingEXT:children() do
  2519. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Alder' end
  2520. end
  2521. for _,v in next, RWingEXT:children() do
  2522. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Alder' end
  2523. end
  2524. for _,v in next, Halo:children() do
  2525. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Alder' end
  2526. end
  2527. pcall(function() Char.ReaperShadowHead.Eye1.Color = BrickColor.new'Alder'.Color end)
  2528. pcall(function() Char.ReaperShadowHead.Eye2.Color = BrickColor.new'Alder'.Color end)
  2529. WalkSpeed = 18
  2530. RecolorTextAndRename("FLUCTUATION",BrickColor.new'Alder'.Color,C3.N(1,1,1))
  2531. MusicID = 1047567668
  2532. Pitch = 1
  2533. Mode = 10
  2534. Core2.BrickColor = BrickColor.new'Alder'
  2535. Core2.Material = Enum.Material.Neon
  2536. end
  2537.  
  2538. function InsaneMode()
  2539. Attack = true
  2540. NeutralAnims = false
  2541. local Sin = 0
  2542. MusicID = 919231299
  2543. Pitch = 1
  2544. WalkSpeed = 0
  2545. Sound(Core2,136007472,1.25,2.5,false,true,true)
  2546. for i = 0, 4, 0.1 do
  2547. swait()
  2548. NoobySphere(2.5,-1.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(3.5,3.5,45),-.035,Core2.Color,100)
  2549. Sin = Sin + 5
  2550. local Alpha = .1
  2551. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00700476859, 0.0667984039, -0.448462069, 0.999972343, -0.00723911775, -0.00172879919, 0.00722799823, 0.88917774, 0.457504779, -0.00177471992, -0.457504541, 0.889205575),Alpha)
  2552. LH.C0 = clerp(LH.C0,CFrame.new(-0.497889668, -1.14359522, -0.0677340925, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2553. RH.C0 = clerp(RH.C0,CFrame.new(0.497117043, -1.14809179, -0.0749855936, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2554. LS.C0 = clerp(LS.C0,CFrame.new(-1.20745349, 0.562693655, 0.156515986, 0.841866791, -0.539501786, -0.014077506, -0.490290582, -0.753652692, -0.43774724, 0.225555882, 0.375426948, -0.898987949)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2555. RS.C0 = clerp(RS.C0,CFrame.new(1.17680144, 0.613272369, 0.0997506529, 0.834507108, 0.550817847, -0.0140647329, 0.49015516, -0.753777146, -0.437684804, -0.251686275, 0.358357221, -0.899018526)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2556. NK.C0 = clerp(NK.C0,CFrame.new(6.50798393e-06, 1.53005648, -0.348988175, 1.00000012, 2.40840018e-06, -1.19656324e-05, 5.68898395e-06, 0.775360823, 0.631518543, 1.07986853e-05, -0.631518602, 0.775360942)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2557. end
  2558. for i = 0, 8, 0.1 do
  2559. swait()
  2560. NoobySphere(2.5,-1.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(3.5,3.5,45),-.035,Core2.Color,100)
  2561. NoobySphere(2.5,1.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(3.5,3.5,45),.035,Core2.Color,0)
  2562. Sin = Sin + 5
  2563. local Alpha = .1
  2564. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00700476859, 0.0667984039, -0.448462069, 0.999972343, -0.00723911775, -0.00172879919, 0.00722799823, 0.88917774, 0.457504779, -0.00177471992, -0.457504541, 0.889205575),Alpha)
  2565. LH.C0 = clerp(LH.C0,CFrame.new(-0.497889668, -1.14359522, -0.0677340925, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2566. RH.C0 = clerp(RH.C0,CFrame.new(0.497117043, -1.14809179, -0.0749855936, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2567. LS.C0 = clerp(LS.C0,CFrame.new(-1.20745349, 0.562693655, 0.156515986, 0.841866791, -0.539501786, -0.014077506, -0.490290582, -0.753652692, -0.43774724, 0.225555882, 0.375426948, -0.898987949)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2568. RS.C0 = clerp(RS.C0,CFrame.new(1.17680144, 0.613272369, 0.0997506529, 0.834507108, 0.550817847, -0.0140647329, 0.49015516, -0.753777146, -0.437684804, -0.251686275, 0.358357221, -0.899018526)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2569. NK.C0 = clerp(NK.C0,CFrame.new(6.50798393e-06, 1.53005648, -0.348988175, 1.00000012, 2.40840018e-06, -1.19656324e-05, 5.68898395e-06, 0.775360823, 0.631518543, 1.07986853e-05, -0.631518602, 0.775360942)*CF.A(0,M.R(0+16*M.S(Sin)),0),Alpha)
  2570. end
  2571. for _,v in next, LWing:children() do
  2572. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Really black' end
  2573. end
  2574. for _,v in next, RWing:children() do
  2575. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Black' end
  2576. end
  2577. for _,v in next, LWingEXT:children() do
  2578. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .5 v.BrickColor = BrickColor.new'Really black' end
  2579. end
  2580. for _,v in next, RWingEXT:children() do
  2581. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .5 v.BrickColor = BrickColor.new'Black' end
  2582. end
  2583. for _,v in next, Halo:children() do
  2584. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Black' end
  2585. end
  2586. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,0,0) end)
  2587. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,0,0) end)
  2588. WalkSpeed = 12
  2589. Mode = 696969
  2590. Core2.BrickColor = BrickColor.new'Black'
  2591. Core2.Material = Enum.Material.Neon
  2592. Sound(Root,"206082327",1,2.5,false,true,true)
  2593. Sound(Root,"847061203",1,5,false,true,true)
  2594. Sound(Root,"239000203",1,2.5,false,true,true)
  2595. Sound(Root,"579687077",.75,2.5,false,true,true)
  2596. RecolorTextAndRename("INSANITY",Color3.new(0,0,0),Color3.new(1,1,1))
  2597. NoobySphere2(2.5,'Multiply',Core2.CFrame,V3.N(0,0,0),1,Core2.BrickColor)
  2598. for i = 1, 24 do
  2599. NoobyBlock(1,M.RNG(20,100)/100,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(2,2,2),.04,Core2.Color,0,true)
  2600. end
  2601. for i = 0, 15 do
  2602. NoobySphere(3,-.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(.5,.5,25),-.04,Core2.Color,0)
  2603. end
  2604. for i = 0, 1.4, 0.1 do
  2605. swait()
  2606. local Alpha = .3
  2607. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0104959598, -0.113952652, 0.672263861, 0.999963522, 0.00820299331, -0.0023882892, -0.00821700692, 0.846846819, -0.531773448, -0.00233961921, 0.531773746, 0.846883237),Alpha)
  2608. LH.C0 = clerp(LH.C0,CFrame.new(-0.49749428, -1.06169748, -0.0426189601, 0.999878228, -0.00744201383, 0.013721575, -0.000100045589, 0.875963986, 0.482376754, -0.0156094572, -0.482319295, 0.875856459),Alpha)
  2609. RH.C0 = clerp(RH.C0,CFrame.new(0.498449236, -1.1497941, 0.0108022094, 0.999878228, -0.0120362351, 0.009939529, -0.000100045589, 0.631795883, 0.775134981, -0.0156094572, -0.775041461, 0.631717622),Alpha)
  2610. LS.C0 = clerp(LS.C0,CFrame.new(-1.12307608, 0.484921068, 0.092245549, 0.865161359, 0.501252413, -0.0155520458, 0.497926384, -0.862286389, -0.092366755, -0.059709385, 0.07216838, -0.995603561),Alpha)
  2611. RS.C0 = clerp(RS.C0,CFrame.new(1.37669122, 0.484069884, 0.0531393886, 0.866546988, -0.498853445, -0.0155524863, -0.49802509, -0.862227678, -0.0923835635, 0.032676056, 0.0878001451, -0.995602131),Alpha)
  2612. NK.C0 = clerp(NK.C0,CFrame.new(1.14440181e-05, 1.49895036, -0.0144141242, 1.00000012, 0, -9.31322575e-10, 0, 0.99796474, 0.0637694895, -9.31322575e-10, -0.0637694895, 0.99796468),Alpha)
  2613. end
  2614. Attack = false
  2615. NeutralAnims = true
  2616. end
  2617.  
  2618. function RiddleMeThis()
  2619. Attack = true
  2620. NeutralAnims = false
  2621. WalkSpeed = 0
  2622. MusicID = 1420353940
  2623. Pitch = 1
  2624. Muted = true
  2625. repeat swait() until Music.IsLoaded
  2626. Muted = false
  2627. Music.TimePosition = 0
  2628. Chat('Riddle me this..')
  2629. for i = 0,14,.1 do
  2630. local Alpha = .1
  2631. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674263, 4.19029675e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  2632. LH.C0 = clerp(LH.C0,CFrame.new(-0.496486187, -0.990816116, 0.0216199569, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2633. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990978718, 0.0154640805, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2634. LS.C0 = clerp(LS.C0,CFrame.new(-1.15619826, 0.410764694, 0.308931053, 0.862226903, -0.506325424, 0.0141164251, 0.451236814, 0.780479908, 0.432708263, -0.230108798, -0.366722882, 0.901423633),Alpha)
  2635. RS.C0 = clerp(RS.C0,CFrame.new(1.48984146, 0.433965802, -0.137121022, 0.754978359, -0.655723989, -0.00581999123, -0.244246826, -0.272958666, -0.930503726, 0.608564973, 0.703931689, -0.366236359),Alpha)
  2636. NK.C0 = clerp(NK.C0,CFrame.new(8.11554492e-06, 1.49894369, -0.0144015253, 0.931422114, -1.17415329e-05, -0.363940746, 0.0232203864, 0.997964501, 0.0593950115, 0.363199264, -0.0637726635, 0.929526567),Alpha)
  2637. swait()
  2638. end
  2639. Chat('Riddle me that..')
  2640. for i = 0,12,.1 do
  2641. local Alpha = .1
  2642. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674868, -5.34626452e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  2643. LH.C0 = clerp(LH.C0,CFrame.new(-0.49648428, -0.990818024, 0.0216189846, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2644. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990980625, 0.0154631399, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  2645. LS.C0 = clerp(LS.C0,CFrame.new(-1.25402236, 0.431008309, 0.117451549, 0.884577334, 0.388638854, 0.257842481, 0.312682211, -0.0839776248, -0.946138322, -0.346053123, 0.917555273, -0.195805177),Alpha)
  2646. RS.C0 = clerp(RS.C0,CFrame.new(1.22954941, 0.384757012, 0.168471783, 0.915931404, 0.401068091, 0.0146304797, -0.379809946, 0.85445267, 0.354478538, 0.129668966, -0.330234885, 0.934949815),Alpha)
  2647. NK.C0 = clerp(NK.C0,CFrame.new(8.37445259e-06, 1.49894357, -0.0144015923, 0.920970619, 2.08709389e-06, 0.389632136, -0.0248486493, 0.99796474, 0.058729209, -0.388839096, -0.063769713, 0.919096231),Alpha)
  2648. swait()
  2649. end
  2650. Chat("Who's afraid of the big black..")
  2651. for i = 0,16,.1 do
  2652. local Alpha = .1
  2653. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00438984111, 0.0221795738, -0.281239897, 0.999988556, -0.00473595224, -0.000703255646, 0.00473099947, 0.954816878, 0.297157228, -0.000735841691, -0.297157168, 0.954828322),Alpha)
  2654. LH.C0 = clerp(LH.C0,CFrame.new(-0.497070849, -1.04715037, -0.0156083405, 0.999878228, 0.00473099947, 0.0148762148, -9.61141777e-05, 0.954816878, -0.297194898, -0.0156100877, 0.297157228, 0.954700947),Alpha)
  2655. RH.C0 = clerp(RH.C0,CFrame.new(0.49794969, -1.05015182, -0.0222227573, 0.999878228, 0.00473099947, 0.0148762148, -9.61141777e-05, 0.954816878, -0.297194898, -0.0156100877, 0.297157228, 0.954700947),Alpha)
  2656. LS.C0 = clerp(LS.C0,CFrame.new(-1.32246351, 0.253595859, 0.199904889, 0.862232804, -0.506315708, 0.0141151678, 0.451225579, 0.780480325, 0.432719588, -0.230109304, -0.366735876, 0.90141809),Alpha)
  2657. RS.C0 = clerp(RS.C0,CFrame.new(1.33073413, 0.290129036, 0.183640629, 0.915928423, 0.401075214, 0.0146333817, -0.379820168, 0.854456067, 0.354459614, 0.129661351, -0.330217659, 0.934956849),Alpha)
  2658. NK.C0 = clerp(NK.C0,CFrame.new(1.58162902e-06, 1.5248462, -0.171738505, 1.00000012, -7.59866089e-06, 1.38636678e-05, -3.15252692e-07, 0.867144346, 0.498057216, -1.58054754e-05, -0.498057246, 0.867144227),Alpha)
  2659. swait()
  2660. end
  2661. for i = 0, .7, 0.1 do
  2662. swait()
  2663. local Alpha = .3
  2664. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00700476859, 0.0667984039, -0.448462069, 0.999972343, -0.00723911775, -0.00172879919, 0.00722799823, 0.88917774, 0.457504779, -0.00177471992, -0.457504541, 0.889205575),Alpha)
  2665. LH.C0 = clerp(LH.C0,CFrame.new(-0.497889668, -1.14359522, -0.0677340925, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2666. RH.C0 = clerp(RH.C0,CFrame.new(0.497117043, -1.14809179, -0.0749855936, 0.999878228, 0.00722799823, 0.0138372099, -9.56082804e-05, 0.88917774, -0.457561791, -0.0156109957, 0.457504779, 0.889070213),Alpha)
  2667. LS.C0 = clerp(LS.C0,CFrame.new(-1.20745349, 0.562693655, 0.156515986, 0.841866791, -0.539501786, -0.014077506, -0.490290582, -0.753652692, -0.43774724, 0.225555882, 0.375426948, -0.898987949),Alpha)
  2668. RS.C0 = clerp(RS.C0,CFrame.new(1.17680144, 0.613272369, 0.0997506529, 0.834507108, 0.550817847, -0.0140647329, 0.49015516, -0.753777146, -0.437684804, -0.251686275, 0.358357221, -0.899018526),Alpha)
  2669. NK.C0 = clerp(NK.C0,CFrame.new(6.50798393e-06, 1.53005648, -0.348988175, 1.00000012, 2.40840018e-06, -1.19656324e-05, 5.68898395e-06, 0.775360823, 0.631518543, 1.07986853e-05, -0.631518602, 0.775360942),Alpha)
  2670. end
  2671.  
  2672. for _,v in next, LWing:children() do
  2673. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = 0 v.BrickColor = BrickColor.new'Really black' end
  2674. end
  2675. for _,v in next, RWing:children() do
  2676. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = 0 v.BrickColor = BrickColor.new'Really black' end
  2677. end
  2678. for _,v in next, LWingEXT:children() do
  2679. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = .25 v.BrickColor = BrickColor.new'Medium stone grey' end
  2680. end
  2681. for _,v in next, RWingEXT:children() do
  2682. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = .25 v.BrickColor = BrickColor.new'Medium stone grey' end
  2683. end
  2684. for _,v in next, Halo:children() do
  2685. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.BrickColor = BrickColor.new'Really black' end
  2686. end
  2687. pcall(function() Char.ReaperShadowHead.Eye1.Color = BrickColor.new'Black'.Color end)
  2688. pcall(function() Char.ReaperShadowHead.Eye2.Color = BrickColor.new'Black'.Color end)
  2689. WalkSpeed = 50
  2690. RecolorTextAndRename("The Big Black",BrickColor.new'Really black'.Color,C3.N(1,1,1))
  2691. Core2.BrickColor = BrickColor.new'Really black'
  2692. Core2.Material = Enum.Material.Glass
  2693. Mode = 666666666666
  2694. Sound(Root,"206082327",1,2.5,false,true,true)
  2695. Sound(Root,"847061203",1,5,false,true,true)
  2696. Sound(Root,"239000203",1,2.5,false,true,true)
  2697. Sound(Root,"579687077",.75,2.5,false,true,true)
  2698. NoobySphere2(2.5,'Multiply',Core2.CFrame,V3.N(0,0,0),1,Core2.BrickColor)
  2699. for i = 1, 24 do
  2700. NoobyBlock(1,M.RNG(20,100)/100,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(2,2,2),.04,Core2.Color,0,true)
  2701. end
  2702. for i = 0, 15 do
  2703. NoobySphere(3,-.5,'Multiply',Core2.CFrame*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(.5,.5,25),-.04,Core2.Color,0)
  2704. end
  2705. for i = 0, .7, 0.1 do
  2706. swait()
  2707. local Alpha = .3
  2708. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0104959598, -0.113952652, 0.672263861, 0.999963522, 0.00820299331, -0.0023882892, -0.00821700692, 0.846846819, -0.531773448, -0.00233961921, 0.531773746, 0.846883237),Alpha)
  2709. LH.C0 = clerp(LH.C0,CFrame.new(-0.49749428, -1.06169748, -0.0426189601, 0.999878228, -0.00744201383, 0.013721575, -0.000100045589, 0.875963986, 0.482376754, -0.0156094572, -0.482319295, 0.875856459),Alpha)
  2710. RH.C0 = clerp(RH.C0,CFrame.new(0.498449236, -1.1497941, 0.0108022094, 0.999878228, -0.0120362351, 0.009939529, -0.000100045589, 0.631795883, 0.775134981, -0.0156094572, -0.775041461, 0.631717622),Alpha)
  2711. LS.C0 = clerp(LS.C0,CFrame.new(-1.12307608, 0.484921068, 0.092245549, 0.865161359, 0.501252413, -0.0155520458, 0.497926384, -0.862286389, -0.092366755, -0.059709385, 0.07216838, -0.995603561),Alpha)
  2712. RS.C0 = clerp(RS.C0,CFrame.new(1.37669122, 0.484069884, 0.0531393886, 0.866546988, -0.498853445, -0.0155524863, -0.49802509, -0.862227678, -0.0923835635, 0.032676056, 0.0878001451, -0.995602131),Alpha)
  2713. NK.C0 = clerp(NK.C0,CFrame.new(1.14440181e-05, 1.49895036, -0.0144141242, 1.00000012, 0, -9.31322575e-10, 0, 0.99796474, 0.0637694895, -9.31322575e-10, -0.0637694895, 0.99796468),Alpha)
  2714. end
  2715. Attack = false
  2716. NeutralAnims = true
  2717. end
  2718.  
  2719. function L_O_S_T()
  2720. for _,v in next, LWing:children() do
  2721. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = 0 v.Color = C3.N(.4,0,0) end
  2722. end
  2723. for _,v in next, RWing:children() do
  2724. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = 0 v.Color = C3.N(.4,0,0) end
  2725. end
  2726. for _,v in next, LWingEXT:children() do
  2727. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = 0 v.Color = C3.N(.4,0,0) end
  2728. end
  2729. for _,v in next, RWingEXT:children() do
  2730. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Transparency = 0 v.Color = C3.N(.4,0,0) end
  2731. end
  2732. for _,v in next, Halo:children() do
  2733. if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Glass v.Color = C3.N(.4,0,0) end
  2734. end
  2735. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(.4,0,0) end)
  2736. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(.4,0,0) end)
  2737. WalkSpeed = 24
  2738. RecolorTextAndRename("L O S T S O U L",BrickColor.new'Crimson'.Color,C3.N(0,0,0))
  2739. MusicID = 343860759
  2740. Pitch = .9
  2741. Mode = 666
  2742. Core2.Color = C3.N(.4,0,0)
  2743. Core2.Material = Enum.Material.Neon
  2744. end
  2745.  
  2746. --// Wrap it all up \\--
  2747.  
  2748. Plr.Chatted:connect(function(msg)
  2749. if(msg:sub(1,5) == "play/" and Mode == 6)then
  2750. local info = game.MarketplaceService:GetProductInfo(tonumber(msg:sub(6)))
  2751. if(info and info.Name)then
  2752. Chat("Playing: "..info.Name,'rainbow')
  2753. end
  2754. MusicID = msg:sub(6)
  2755. VisSong = msg:sub(6)
  2756. elseif(msg:sub(1,5) == 'tpos/' and Mode == 6)then
  2757. Music.TimePosition = tonumber(msg:sub(6))
  2758. end
  2759. end)
  2760.  
  2761. function KeyPress(code)
  2762. if(code == Enum.KeyCode.One and Mode ~= 1)then
  2763. MurderMode()
  2764. elseif(code == Enum.KeyCode.Two and Mode ~= 2)then
  2765. PureMode()
  2766. elseif(code == Enum.KeyCode.Three and Mode ~= 3)then
  2767. GlitchMode()
  2768. elseif(code == Enum.KeyCode.Four and Mode ~= 4)then
  2769. StressMode()
  2770. elseif(code == Enum.KeyCode.Five and Mode ~= 5)then
  2771. JusticeMode()
  2772. elseif(code == Enum.KeyCode.Six and Mode ~= 6)then
  2773. VisMode()
  2774. elseif(code == Enum.KeyCode.Seven and Mode ~= 7)then
  2775. IceMode()
  2776. elseif(code == Enum.KeyCode.Eight and Mode ~= 8)then
  2777. LoveMode()
  2778. elseif(code == Enum.KeyCode.Nine and Mode ~= 9)then
  2779. ToxicMode()
  2780. elseif(code == Enum.KeyCode.Zero and Mode ~= 10)then
  2781. FluctuateMode()
  2782. -- Transformations
  2783. elseif(code == Enum.KeyCode.T)then
  2784. if(Mode == 1)then
  2785. RiddleMeThis()
  2786. elseif(Mode == 4)then
  2787. InsaneMode()
  2788. elseif(Mode == 666666666666)then
  2789. L_O_S_T()
  2790. elseif(Mode == 666)then
  2791. MurderMode()
  2792. elseif(Mode == 696969)then
  2793. StressMode()
  2794. elseif(Mode == 10)then
  2795. BarracudaMode()
  2796. end
  2797. -- Toggle player attacking
  2798. elseif(code == Enum.KeyCode.Semicolon)then
  2799. DontAttackPlayers = not DontAttackPlayers
  2800. Chat(DontAttackPlayers and "You can no longer attack players" or "You can now attack players")
  2801. -- Attacks
  2802. elseif(code == Enum.KeyCode.Z)then
  2803. if(Mode == 1)then
  2804. if(not UIS.TouchEnabled)then MurderNigger((Mouse.Target and Mouse.Target.Parent)) else Output("Note","Tap someone, to murder them") MobileMurder() end
  2805. elseif(Mode == 666666666666)then
  2806. if(not UIS.TouchEnabled)then NeckSnap((Mouse.Target and Mouse.Target.Parent)) else Output("Note","Tap someone, to snap their neck") MobileNeckSnap() end
  2807.  
  2808. elseif(Mode == 2)then
  2809. PureBomb()
  2810. elseif(Mode == 3)then
  2811. ClickGlitch()
  2812. elseif(Mode == 4)then
  2813. Shrek()
  2814. elseif(Mode == 5)then
  2815. Aeroplane()
  2816. elseif(Mode == 6)then
  2817. SongSmash()
  2818. end
  2819. end
  2820. end
  2821.  
  2822. function AttackCombo()
  2823. if(Combo == 1)then AttackOne() elseif(Combo == 2)then AttackTwo() elseif(Combo == 3)then AttackThree() end
  2824. end
  2825.  
  2826. -- Mode Changing Keys
  2827.  
  2828. function BuildButton(name,pos,act,image)
  2829. if(UIS.TouchEnabled)then
  2830. local func = function()
  2831. if(not Attack)then
  2832. act()
  2833. end
  2834. end
  2835. local downID = 97166756;
  2836. local upID = 97166444;
  2837. local bPos = UDim2.new(.72,-pos.x,.20,-pos.y)
  2838.  
  2839. local button = MobileButton:Clone();
  2840. button.Parent = MobileGUI
  2841. button.ActionTitle.Text = name
  2842. button.MouseButton1Down:connect(function()
  2843. button.Image = 'rbxassetid://'..downID
  2844. func()
  2845. end)
  2846. button.MouseButton1Up:connect(function()
  2847. button.Image = 'rbxassetid://'..upID
  2848. end)
  2849. button.MouseLeave:connect(function()
  2850. button.Image = 'rbxassetid://'..upID
  2851. end)
  2852. button.Position = bPos
  2853. if(image)then
  2854. button.ActionTitle:destroy()
  2855. button.ActionIcon.Image = 'rbxassetid://'..image
  2856. end
  2857. return button;
  2858. end
  2859. end
  2860. local keys = {"One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Zero"}
  2861.  
  2862. function BuildModeButton(name,pos,act,number)
  2863. if(UIS.TouchEnabled)then
  2864. local func = function()
  2865. if(not Attack and Mode ~= number)then
  2866. act()
  2867. end
  2868. end
  2869. local downID = 97166756;
  2870. local upID = 97166444;
  2871. local bPos = UDim2.new(.72,-pos.x,.20,-pos.y)
  2872.  
  2873. local button = MobileButton:Clone();
  2874. button.Parent = MobileGUI
  2875. button.ActionTitle.Text = name
  2876. button.MouseButton1Down:connect(function()
  2877. button.Image = 'rbxassetid://'..downID
  2878. func()
  2879. end)
  2880. button.MouseButton1Up:connect(function()
  2881. button.Image = 'rbxassetid://'..upID
  2882. end)
  2883. button.MouseLeave:connect(function()
  2884. button.Image = 'rbxassetid://'..upID
  2885. end)
  2886. button.Position = bPos
  2887. return button;
  2888. end
  2889. end
  2890.  
  2891. if(UIS.TouchEnabled)then
  2892. Output("Warn","FYI, not all moves will be mobile supporting in the future.")
  2893. local ModeButtons = {}
  2894.  
  2895. table.insert(ModeButtons,BuildModeButton("Murder",Vector2.new(500,205),MurderMode,1))
  2896. table.insert(ModeButtons,BuildModeButton("Clarity",Vector2.new(500,155),PureMode,2))
  2897. table.insert(ModeButtons,BuildModeButton("Glitchy",Vector2.new(500,105),GlitchMode,3))
  2898. table.insert(ModeButtons,BuildModeButton("Stress",Vector2.new(500,55),StressMode,4))
  2899. table.insert(ModeButtons,BuildModeButton("Justice",Vector2.new(500,5),JusticeMode,5))
  2900. table.insert(ModeButtons,BuildModeButton("Visual",Vector2.new(450,205),VisMode,6))
  2901. table.insert(ModeButtons,BuildModeButton("SubZero",Vector2.new(450,155),IceMode,7))
  2902. table.insert(ModeButtons,BuildModeButton("Love",Vector2.new(450,105),LoveMode,8))
  2903. table.insert(ModeButtons,BuildModeButton("Nuclear",Vector2.new(450,55),ToxicMode,9))
  2904. table.insert(ModeButtons,BuildModeButton("FLUCTUATE",Vector2.new(450,5),FluctuateMode,10))
  2905.  
  2906. local HideB;
  2907. local Hiding = false;
  2908. HideB = BuildButton("Hide",Vector2.new(550,205),function() Hiding = not Hiding; for _,v in next, ModeButtons do v.Visible = not Hiding; end HideB.ActionTitle.Text = (Hiding and 'Show' or 'Hide') end)
  2909.  
  2910. BuildButton("Attack",Vector2.new(0,0),AttackCombo,1826947151)
  2911.  
  2912. BuildButton("Z",Vector2.new(25,100),function() KeyPress(Enum.KeyCode.Z) end)
  2913. BuildButton("X",Vector2.new(75,50),function() KeyPress(Enum.KeyCode.X) end)
  2914. BuildButton("C",Vector2.new(75,150),function() KeyPress(Enum.KeyCode.C) end)
  2915. BuildButton("V",Vector2.new(125,100),function() KeyPress(Enum.KeyCode.V) end)
  2916. end
  2917.  
  2918. UIS.InputBegan:connect(function(io,gpe)
  2919. if(Attack)then return end
  2920. if(not gpe)then
  2921. local code = io.KeyCode;
  2922. if(io.UserInputType == Enum.UserInputType.Keyboard)then
  2923. KeyPress(code)
  2924. elseif(io.UserInputType == Enum.UserInputType.MouseButton1)then
  2925. AttackCombo()
  2926. end
  2927. end
  2928. end)
  2929.  
  2930.  
  2931. coroutine.wrap(function()
  2932. -- AURAS
  2933. while true do
  2934. if(Mode == 5)then
  2935. NoobySphere(5,0.15,"Multiply",Root.CFrame*CF.N(M.RNG(-5,5),-6,M.RNG(-5,5))*CF.A(M.R(90),0,0),V3.N(1.5,1.5,10),-0.015,BrickColor.new'White',0)
  2936. elseif(Mode == 10 or Mode == 666666666666)then
  2937. NoobySphere(5,math.random(25,75)/100,"Multiply",Root.CFrame*CF.N(M.RNG(-15,15),-10,M.RNG(-15,15))*CF.A(M.R(90),0,0)*CF.A(M.RRNG(-25,25),M.RRNG(-25,25),M.RRNG(-25,25)),V3.N(.75,.75,15),.005,Core2.BrickColor,0)
  2938. end
  2939. if(Mode == 666666666666)then
  2940. NoobySphere(5,math.random(75,150)/100,"Multiply",Root.CFrame*CF.N(M.RNG(-35,35),-10,M.RNG(-35,35))*CF.A(M.R(90),0,0)*CF.A(M.RRNG(-25,25),M.RRNG(-25,25),M.RRNG(-25,25)),V3.N(.75,.75,25),.005,Core2.BrickColor,0)
  2941. end
  2942. swait(1)
  2943. end
  2944. end)()
  2945.  
  2946. coroutine.resume(coroutine.create(function() -- Burning Damge Loop
  2947. while true do
  2948. swait(1)
  2949. for who,data in next, Radioactive do
  2950. local lastBurn, burnMaxTime = unpack(data)
  2951. if(time()-lastBurn >= BurnInterval)then
  2952. data[1] = time()
  2953. for _,v in next, who:children() do if(v.Name == 'Health' and v:IsA'Script')then v.Disabled = true end end
  2954. local hum = who:FindFirstChildOfClass'Humanoid'
  2955. local tors = GetTorso(who)
  2956. if(hum and tors and hum.Health >= 0)then
  2957. local BurnDamage = {4,12}
  2958. local c = Instance.new("ObjectValue",hum)
  2959. c.Name = "creator"
  2960. c.Value = Player
  2961. game:service'Debris':AddItem(c,0.35)
  2962. local DoneDamage = M.RNG(unpack(BurnDamage))
  2963. Droplet{Size=.5,Color=BrickColor.new'Lime green',Direction=-(tors.CFrame.upVector*2000),Origin=tors.CFrame}
  2964. local c = Instance.new("ObjectValue",Hum)
  2965. c.Name = "creator"
  2966. c.Value = Player
  2967. S.Debris:AddItem(c,0.35)
  2968. if(Hits >= MaxHits/4)then
  2969. local Mult = (DoneDamage*(Hits/MaxHits))*4
  2970. DoneDamage = DoneDamage + Mult
  2971. end
  2972. if(hum.Health > 0)then
  2973. Hits = math.min(Hits + 1,MaxHits)
  2974. HitTime = HitTime + .1
  2975. if(who:FindFirstChild'Head')then
  2976. 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))), math.floor(DoneDamage), 1.5, BrickColor.new'Forest green'.Color)
  2977. end
  2978. if(hum.Health-DoneDamage <= 0)then print'Got kill' end
  2979. hum.MaxHealth = hum.MaxHealth - DoneDamage
  2980. end
  2981. end
  2982. if(time() >= burnMaxTime or hum and hum.Health <= 0)then
  2983. Radioactive[who] = nil;
  2984. for _,v in next, who:children() do if(v.Name == 'Health' and v:IsA'Script')then v.Disabled = false end end
  2985. end
  2986. end
  2987. end
  2988. end
  2989. end))
  2990.  
  2991. while true do
  2992. swait()
  2993. Sine = Sine + Change
  2994. WingSine = WingSine + WingChange
  2995. if(Hue > 360)then Hue = 0 end
  2996. Hue = Hue + 1
  2997.  
  2998. if(not Music or not Music.Parent)then
  2999. local tPos = 0;
  3000. if(Music)then tPos = Music.TimePosition; Music:Stop(); Music:Destroy(); end
  3001. Music = Sound(Char,MusicID,1,3,true,false,true)
  3002. Music.Name = 'Music'
  3003. Music.TimePosition = tPos;
  3004. GetClientProperty('RegSound',Music)
  3005. end
  3006. Music.SoundId = "rbxassetid://"..MusicID
  3007. Music.Parent = Char
  3008. Music.Pitch = Pitch
  3009. Music.Volume = 2
  3010. if(not Muted)then
  3011. Music:Resume()
  3012. else
  3013. Music:Pause()
  3014. end
  3015.  
  3016. if(God)then
  3017. Hum.MaxHealth = 1e100
  3018. Hum.Health = 1e100
  3019. if(not Char:FindFirstChildOfClass'ForceField')then IN("ForceField",Char).Visible = false end
  3020. Hum.Name = M.RNG()*100
  3021. end
  3022.  
  3023. local hitfloor,posfloor,norm = workspace:FindPartOnRay(Ray.new(Root.CFrame.p,((CFrame.new(Root.Position,Root.Position - Vector3.new(0,1,0))).lookVector).unit * (4*PlayerSize)), Char)
  3024.  
  3025. if(Mode == 3)then
  3026. for _,v in next, LWing:children() do
  3027. local what = M.RNG()
  3028. if(v:IsA'BasePart')then
  3029. v.Color = C3.N(what,what,what)
  3030. end
  3031. end
  3032. for _,v in next, RWing:children() do
  3033. local what = M.RNG()
  3034. if(v:IsA'BasePart')then
  3035. v.Color = C3.N(what,what,what)
  3036. end
  3037. end
  3038. for _,v in next, LWingEXT:children() do
  3039. local what = M.RNG()
  3040. if(v:IsA'BasePart')then
  3041. v.Color = C3.N(what,what,what)
  3042. end
  3043. end
  3044. for _,v in next, RWingEXT:children() do
  3045. local what = M.RNG()
  3046. if(v:IsA'BasePart')then
  3047. v.Color = C3.N(what,what,what)
  3048. end
  3049. end
  3050.  
  3051. local what1 = M.RNG()
  3052. local what2 = M.RNG()
  3053. local what3 = M.RNG()
  3054. local what4 = M.RNG()
  3055. Core2.Color = C3.N(what1,what1,what1)
  3056.  
  3057. for _,v in next, Halo:children() do
  3058. if(v:IsA'BasePart')then
  3059. v.Color = C3.N(what1,what1,what1)
  3060. end
  3061. end
  3062.  
  3063. text.TextStrokeColor3 = C3.N(what2,what2,what2)
  3064. text.TextColor3 = C3.N(what3,what3,what3)
  3065. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(what4,what4,what4) end)
  3066. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(what4,what4,what4) end)
  3067. elseif(Mode == 4)then
  3068. for _,v in next, LWing:children() do
  3069. local what = M.RNG()*.5
  3070. if(v:IsA'BasePart')then
  3071. v.Color = C3.N(what,0,0)
  3072. end
  3073. end
  3074. for _,v in next, LWingEXT:children() do
  3075. local what = M.RNG()*.5
  3076. if(v:IsA'BasePart')then
  3077. v.Color = C3.N(what,0,0)
  3078. end
  3079. end
  3080.  
  3081. local what1 = M.RNG()*.5
  3082. local what2 = M.RNG()*.5
  3083. local what3 = M.RNG()*.5
  3084. local what4 = M.RNG()*.5
  3085. Core2.Color = C3.N(what1,0,0)
  3086.  
  3087. for _,v in next, Halo:children() do
  3088. if(v:IsA'BasePart')then
  3089. v.Color = C3.N(what1,0,0)
  3090. end
  3091. end
  3092.  
  3093. text.TextStrokeColor3 = C3.N(what2,0,0)
  3094. text.TextColor3 = C3.N(what3,0,0)
  3095. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(what4,0,0) end)
  3096. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(what4,0,0) end)
  3097. elseif(Mode == 696969)then
  3098. for _,v in next, LWing:children() do
  3099. if(v:IsA'BasePart')then
  3100. v.Color = C3.N(M.RNG()*.35,0,0)
  3101. end
  3102. end
  3103. for _,v in next, LWingEXT:children() do
  3104. if(v:IsA'BasePart')then
  3105. v.Color = C3.N(M.RNG()*.35,0,0)
  3106. end
  3107. end
  3108.  
  3109. Core2.Color = C3.N(M.RNG()*.35,0,0)
  3110.  
  3111. for _,v in next, Halo:children() do
  3112. if(v:IsA'BasePart')then
  3113. v.Color = Core2.Color
  3114. end
  3115. end
  3116.  
  3117. text.TextStrokeColor3 = C3.N(M.RNG()*.35,0,0)
  3118. text.TextColor3 = C3.N(M.RNG()*.35,0,0)
  3119. pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(M.RNG()*.35,0,0) end)
  3120. pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(M.RNG()*.35,0,0)end)
  3121. elseif(Mode == 6)then
  3122. local pl = GetClientProperty(Music,'PlaybackLoudness')
  3123. local color = C3.HSV(Hue/360,1,math.min(pl/1000,1))
  3124. local color2 = C3.HSV(Hue/360,1,math.min(pl/500,1))
  3125. for _,v in next, LWing:children() do
  3126. if(v:IsA'BasePart')then
  3127. v.Color = v.Color:lerp(color,.3)
  3128. end
  3129. end
  3130. for _,v in next, RWing:children() do
  3131. if(v:IsA'BasePart')then
  3132. v.Color = v.Color:lerp(color,.3)
  3133. end
  3134. end
  3135. for _,v in next, LWingEXT:children() do
  3136. if(v:IsA'BasePart')then
  3137. v.Color = v.Color:lerp(color,.3)
  3138. end
  3139. end
  3140. for _,v in next, RWingEXT:children() do
  3141. if(v:IsA'BasePart')then
  3142. v.Color = v.Color:lerp(color,.3)
  3143. end
  3144. end
  3145. Core2.Color = Core2.Color:lerp(color,.3)
  3146.  
  3147. for _,v in next, Halo:children() do
  3148. if(v:IsA'BasePart')then
  3149. v.Color = v.Color:lerp(color,.3)
  3150. end
  3151. end
  3152.  
  3153. text.TextStrokeColor3 = text.TextStrokeColor3:lerp(color2,.3)
  3154. text.TextColor3 = text.TextColor3:lerp(color2,.3)
  3155. pcall(function() Char.ReaperShadowHead.Eye1.Color = Char.ReaperShadowHead.Eye1.Color:lerp(color,.3) end)
  3156. pcall(function() Char.ReaperShadowHead.Eye2.Color = Char.ReaperShadowHead.Eye2.Color:lerp(color,.3) end)
  3157. end
  3158.  
  3159. LWingWelds[1].C0 = LWingWelds[1].C0:lerp(CF.N(0,0,2.25)*CF.A(0,M.R(-90),0)*CF.A(M.R(5+10*M.C(WingSine/32)),0,M.R(12.5+5*M.C(WingSine/32))),.1)
  3160. LWingWelds[2].C0 = LWingWelds[2].C0:lerp(CF.N(0,1,3.5)*CF.A(0,M.R(-90),0)*CF.A(M.R(10+15*M.C(WingSine/32)),0,M.R(25+7.5*M.C(WingSine/32))),.1)
  3161. LWingWelds[3].C0 = LWingWelds[3].C0:lerp(CF.N(0,2,4.5)*CF.A(0,M.R(-90),0)*CF.A(M.R(15+20*M.C(WingSine/32)),0,M.R(37.5+10*M.C(WingSine/32))),.1)
  3162. LWingWelds[4].C0 = LWingWelds[4].C0:lerp(CF.N(0,3,5.75)*CF.A(0,M.R(-90),0)*CF.A(M.R(20+25*M.C(WingSine/32)),0,M.R(50+12.5*M.C(WingSine/32))),.1)
  3163. LWingWelds[5].C0 = LWingWelds[5].C0:lerp(CF.N(0,4,6.75)*CF.A(0,M.R(-90),0)*CF.A(M.R(25+30*M.C(WingSine/32)),0,M.R(62.5+15*M.C(WingSine/32))),.1)
  3164. LWingWelds[6].C0 = LWingWelds[6].C0:lerp(CF.N(0,5,7.75)*CF.A(0,M.R(-90),0)*CF.A(M.R(35+40*M.C(WingSine/32)),0,M.R(75+17.5*M.C(WingSine/32))),.1)
  3165.  
  3166. RWingWelds[1].C0 = RWingWelds[1].C0:lerp(CF.N(0,0,-2.25)*CF.A(0,M.R(-90),0)*CF.A(M.R(5+10*M.C(WingSine/32)),0,-M.R(12.5+5*M.C(WingSine/32))),.1)
  3167. RWingWelds[2].C0 = RWingWelds[2].C0:lerp(CF.N(0,1,-3.5)*CF.A(0,M.R(-90),0)*CF.A(M.R(10+15*M.C(WingSine/32)),0,-M.R(25+7.5*M.C(WingSine/32))),.1)
  3168. RWingWelds[3].C0 = RWingWelds[3].C0:lerp(CF.N(0,2,-4.5)*CF.A(0,M.R(-90),0)*CF.A(M.R(15+20*M.C(WingSine/32)),0,-M.R(37.5+10*M.C(WingSine/32))),.1)
  3169. RWingWelds[4].C0 = RWingWelds[4].C0:lerp(CF.N(0,3,-5.75)*CF.A(0,M.R(-90),0)*CF.A(M.R(20+25*M.C(WingSine/32)),0,-M.R(50+12.5*M.C(WingSine/32))),.1)
  3170. RWingWelds[5].C0 = RWingWelds[5].C0:lerp(CF.N(0,4,-6.75)*CF.A(0,M.R(-90),0)*CF.A(M.R(25+30*M.C(WingSine/32)),0,-M.R(62.5+15*M.C(WingSine/32))),.1)
  3171. RWingWelds[6].C0 = RWingWelds[6].C0:lerp(CF.N(0,5,-7.75)*CF.A(0,M.R(-90),0)*CF.A(M.R(35+40*M.C(WingSine/32)),0,-M.R(75+17.5*M.C(WingSine/32))),.1)
  3172.  
  3173. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  3174. local State = (Hum.PlatformStand and 'Paralyzed' or Hum.Sit and 'Sit' or not hitfloor and Root.Velocity.y < -1 and "Fall" or not hitfloor and Root.Velocity.y > 1 and "Jump" or hitfloor and Walking and (Hum.WalkSpeed < 24 and "Walk" or "Run") or hitfloor and "Idle")
  3175. if(not Effects or not Effects.Parent)then
  3176. Effects = IN("Model",Char)
  3177. Effects.Name = "Effects"
  3178. end
  3179. if(State == 'Run' and Mode ~= 5 and Mode ~= 10 and Mode ~= 666666666666 and Mode ~= 666)then
  3180. local wsVal = 7 / (Hum.WalkSpeed/16)
  3181. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  3182. Change = 1
  3183.  
  3184. elseif(State == 'Walk' and Mode ~= 5 and Mode ~= 10 and Mode ~= 666666666666 and Mode ~= 666)then
  3185. local wsVal = 7 / (Hum.WalkSpeed/16)
  3186. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  3187. Change = 1
  3188. if(Mode == 7)then
  3189. RH.C1 = RH.C1:lerp(CF.N(0,1-.05*M.C(Sine/wsVal),0+.1*M.C(Sine/wsVal))*CF.A(M.R(8-0*M.C(Sine/wsVal))+-M.S(Sine/wsVal)/3,0,0),Alpha)
  3190. LH.C1 = LH.C1:lerp(CF.N(0,1+.05*M.C(Sine/wsVal),0-.1*M.C(Sine/wsVal))*CF.A(M.R(8+0*M.C(Sine/wsVal))+M.S(Sine/wsVal)/3,0,0),Alpha)
  3191. else
  3192. RH.C1 = RH.C1:lerp(CF.N(0,1-.1*M.C(Sine/wsVal),0+.2*M.C(Sine/wsVal))*CF.A(M.R(16-0*M.C(Sine/wsVal))+-M.S(Sine/wsVal)/1.75,0,0),Alpha)
  3193. LH.C1 = LH.C1:lerp(CF.N(0,1+.1*M.C(Sine/wsVal),0-.2*M.C(Sine/wsVal))*CF.A(M.R(16+0*M.C(Sine/wsVal))+M.S(Sine/wsVal)/1.75,0,0),Alpha)
  3194. end
  3195. else
  3196. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.2)
  3197. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.2)
  3198. end
  3199.  
  3200.  
  3201.  
  3202.  
  3203. Hum.WalkSpeed = WalkSpeed
  3204. if(NeutralAnims)then
  3205. if(State == 'Idle')then
  3206. local Alpha = .1
  3207. if(Mode == 1)then
  3208. Change = 1
  3209. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00779043138, -0.0846293643+.1*M.C(Sine/32), -0.204210758, 0.912902117, -0.00691865245, -0.408120036, 0.117574908, 0.961935759, 0.246689886, 0.390878439, -0.273188382, 0.87896657),Alpha)
  3210. LH.C0 = clerp(LH.C0,CFrame.new(-0.587742627, -1.00122428-.1*M.C(Sine/32), -0.165018916, 0.860076427, 0.294745922, 0.416405559, -0.252913684, 0.955196917, -0.15373303, -0.443061411, 0.0269074962, 0.896087468),Alpha)
  3211. RH.C0 = clerp(RH.C0,CFrame.new(0.343915284, -1.07833397-.1*M.C(Sine/32), -0.0402937233, 0.964631855, -0.173768938, -0.198217094, 0.117325157, 0.956397653, -0.26746732, 0.236051857, 0.234751642, 0.942958832),Alpha)
  3212. LS.C0 = clerp(LS.C0,CFrame.new(-1.39700282, 0.545769572, -0.00181379914, 0.907886505, 0.355485201, -0.222199559, -0.405204862, 0.880023003, -0.247727305, 0.107477367, 0.314944565, 0.943005204)*CF.A(0,M.R(16-8*M.C(Sine/32)),M.R(0+12*M.C(Sine/32)))*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.476125))),Alpha)
  3213. RS.C0 = clerp(RS.C0,CFrame.new(0.903979659, 0.624733686, -0.396169931, 0.827836394, 0.560810268, -0.013374418, 0.472599089, -0.7100721, -0.521965444, -0.302220345, 0.42578119, -0.852861941)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3214. NK.C0 = clerp(NK.C0,CFrame.new(-0.0470906645, 1.53467083, -0.115898043, 0.906688511, -0.16142872, 0.389688164, -0.00265284558, 0.921666741, 0.387973785, -0.421792656, -0.352805078, 0.835236311)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3215. elseif(Mode == 2)then
  3216. Change = 1
  3217. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674868+.1*M.C(Sine/32), -5.34626452e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  3218. LH.C0 = clerp(LH.C0,CFrame.new(-0.496485978, -0.990816116-.1*M.C(Sine/32), 0.0216165781, 0.970629156, 7.27576055e-11, 0.240580648, -0.00151285366, 0.999980211, 0.00610364834, -0.240575925, -0.00628834311, 0.970610023),Alpha)
  3219. RH.C0 = clerp(RH.C0,CFrame.new(0.491330802, -1.06821454-.1*M.C(Sine/32), 0.0589520633, 0.986244023, 0.0538565964, -0.156276181, 0.00103943795, 0.943392873, 0.331676066, 0.165292785, -0.327276021, 0.930359602),Alpha)
  3220. LS.C0 = clerp(LS.C0,CFrame.new(-0.787155986, 0.248306945, -0.683226228, 0.0398273654, -0.999169707, 0.00859495346, 0.554963291, 0.0149663882, -0.831740201, 0.830920994, 0.0378959104, 0.555098593)*CF.A(M.R(0+5*M.C(Sine/32)),0,0),Alpha)
  3221. RS.C0 = clerp(RS.C0,CFrame.new(0.787632346, 0.574486911, -0.794373989, 0.0789790228, 0.995851278, 0.0451963581, 0.631366551, -0.0148838377, -0.775341749, -0.771452367, 0.0897712111, -0.629922688)*CF.A(M.R(0+5*M.C(Sine/32)),0,0),Alpha)
  3222. NK.C0 = clerp(NK.C0,CFrame.new(8.16642296e-06, 1.49894726, -0.014402397, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799),Alpha)
  3223. elseif(Mode == 3)then
  3224. Change = 1
  3225. RJ.C0 = clerp(RJ.C0,CFrame.new(0.022457514, 0.0062841149, -0.00324006379, 0.982301593, 0.00117789698, 0.187302738, -4.02951969e-07, 0.999980211, -0.00628649723, -0.187306449, 0.00617515948, 0.982282162),Alpha)
  3226. LH.C0 = clerp(LH.C0,CFrame.new(-0.539962769, -1.00525093, -0.13583532, 0.998935044, -0.0434875898, 0.0154168755, 0.040365234, 0.985544145, 0.164539278, -0.0223494321, -0.163741738, 0.986250162),Alpha)
  3227. RH.C0 = clerp(RH.C0,CFrame.new(0.498531163, -0.990978718, 0.01546143, 0.985106111, 0, -0.171948016, 0.00108131359, 0.999980211, 0.00619494682, 0.171944603, -0.00628860993, 0.98508662),Alpha)
  3228. LS.C0 = clerp(LS.C0,CFrame.new(-1.42806315, 0.51039964, -0.00658199936, 0.990103781, 0.139778674, -0.0125195384, -0.139578417, 0.97154665, -0.191350713, -0.0145834237, 0.191204533, 0.981441915)*CF.A(0,0,M.R(0+6*M.C(Sine/32)))*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3229. RS.C0 = clerp(RS.C0,CFrame.new(1.42666709, 0.532186806, -0.134510398, 0.990944147, -0.126525059, 0.0449620783, 0.133282125, 0.967499852, -0.214895189, -0.0163111985, 0.218941733, 0.975601614)*CF.A(0,0,M.R(0-6*M.C(Sine/32)))*CF.A(0,M.R(0+4*M.C(Sine/0.012802)),M.R(0-15*M.S(Sine/0.716246))),Alpha)
  3230. NK.C0 = clerp(NK.C0,CFrame.new(2.28285789e-05, 1.49894154, -0.0143941939, 0.984171331, -0.0497024879, -0.170107797, 0.0760453045, 0.985445082, 0.152036116, 0.160075322, -0.162565485, 0.973626494)*CF.A(M.R(0+3*M.C(Sine/32)),0,M.R(0+6*M.C(Sine/32)))*CF.A(0,M.R(0+16*M.C(Sine/0.98172)),M.R(0+15*M.S(Sine/0.65142))),Alpha)
  3231. elseif(Mode == 4)then
  3232. Change = 1
  3233. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00847404078, -0.131645858+.1*M.C(Sine/16), -0.542845488, 0.999965072, -0.00807052851, -0.00218774565, 0.00805599708, 0.85972774, 0.510689199, -0.00224066619, -0.51068902, 0.859762609),Alpha)
  3234. LH.C0 = clerp(LH.C0,CFrame.new(-0.496114701, -1.0144912-.1*M.C(Sine/16), 0.0453964472, 0.976583362, 0.00805600174, 0.214989081, 0.103035107, 0.859728813, -0.50025022, -0.188862324, 0.510687351, 0.838766694),Alpha)
  3235. RH.C0 = clerp(RH.C0,CFrame.new(0.498885572, -1.01948476-.1*M.C(Sine/16), 0.0378640294, 0.997592449, 0.00805600174, -0.0688822865, -0.0420893468, 0.859728813, -0.509013772, 0.055119466, 0.510687351, 0.857997894),Alpha)
  3236. LS.C0 = clerp(LS.C0,CFrame.new(-1.42592692, 0.493003547, -0.129623473, 0.987043619, 0.159894824, 0.0133710029, -0.130732149, 0.849730968, -0.51075089, -0.0930281729, 0.502385318, 0.859624803)*CF.A(0,0,M.R(0+6*M.C(Sine/32)))*CF.A(0,M.R(0+4*M.C(Sine/0.817272)),M.R(0+15*M.S(Sine/0.9872346))),Alpha)
  3237. RS.C0 = clerp(RS.C0,CFrame.new(1.1449033, 0.691183329, -0.239056498, 0.899715602, 0.434673697, 0.0396348648, 0.435808241, -0.899650335, -0.0264700353, 0.024151668, 0.0410887003, -0.998863578)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3238. NK.C0 = clerp(NK.C0,CFrame.new(7.87388399e-06, 1.43020797, -0.212884247, 1, -8.72649252e-07, -4.02983278e-06, 2.92807817e-06, 0.838354766, 0.545125127, 2.90293247e-06, -0.545125067, 0.838354826)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3239. elseif(Mode == 5)then
  3240. Change = 1
  3241. RJ.C0 = clerp(RJ.C0,CFrame.new(5.48791013e-11+.2*M.S(Sine/30), 1.2571125+.5*M.C(Sine/32), -3.51015478e-06+.2*M.S(Sine/32), 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  3242. LH.C0 = clerp(LH.C0,CFrame.new(-0.436587602, -0.992619872, 0.0206923336, 0.99808234, 0.0599006973, 0.0156119233, -0.0600048117, 0.998178363, 0.00628757617, -0.0152068557, -0.0072123101, 0.999858439),Alpha)
  3243. RH.C0 = clerp(RH.C0,CFrame.new(0.481217712, -0.504008591, -0.8678087, 0.997120202, -0.0733773932, -0.0191624481, 0.0741236135, 0.889526427, 0.450830936, -0.0160352942, -0.450953096, 0.892403722),Alpha)
  3244. LS.C0 = clerp(LS.C0,CFrame.new(-1.49673307, 0.593781948+.1*M.C(Sine/32), 0.0200225115, 0.966687799, 0.25548178, 0.0156119233, -0.255602777, 0.96676141, 0.00628757617, -0.0134866452, -0.0100685749, 0.999858439)*CF.A(0,0,M.R(0+5*M.C(Sine/32))),Alpha)
  3245. RS.C0 = clerp(RS.C0,CFrame.new(1.50987279, 0.675035477+.1*M.C(Sine/32), -0.0274340063, 0.943747699, -0.330297619, 0.0156119233, 0.33023873, 0.943876505, 0.00628757617, -0.0168125015, -0.000778224785, 0.999858439)*CF.A(0,0,M.R(0-5*M.C(Sine/32))),Alpha)
  3246. NK.C0 = clerp(NK.C0,CFrame.new(4.35172478e-06, 1.49894357, -0.0144011974, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799),Alpha)
  3247. elseif(Mode == 6)then
  3248. local pl = GetClientProperty(Music,'PlaybackLoudness')
  3249. Change = 3
  3250. RJ.C0 = clerp(RJ.C0,CFrame.new(2.74447132e-13, 0.00628674263-(pl/3000), 4.19029675e-07, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  3251. LH.C0 = clerp(LH.C0,CFrame.new(-0.50538516, -1.00439715+.2*M.C(Sine/16)+(pl/3000), -0.54824096, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  3252. RH.C0 = clerp(RH.C0,CFrame.new(0.498537898, -0.990978718+(pl/3000), 0.0154631268, 0.999878109, -9.59694546e-11, 0.015612145, -9.81408521e-05, 0.999980211, 0.00628542574, -0.0156118376, -0.00628619269, 0.999858439),Alpha)
  3253. LS.C0 = clerp(LS.C0,CFrame.new(-1.42332602, 0.626581013-(pl/3000), -0.328449368, 0.922103286, 0.304182172, -0.239162698, -0.178854272, -0.213036552, -0.960534513, -0.343127936, 0.92848742, -0.142037436)*CF.A(-M.R(pl/36),0,0),Alpha)
  3254. RS.C0 = clerp(RS.C0,CFrame.new(1.0793153, 0.434256732-(pl/3000), 0.60275507, 0.650267124, 0.696277916, -0.303891033, -0.505378187, 0.695125222, 0.511267006, 0.567226231, -0.178880244, 0.803900838),Alpha)
  3255. NK.C0 = clerp(NK.C0,CFrame.new(7.8920275e-06, 1.49894428, -0.0144027323, 0.983284235, 0.010468211, -0.181776017, 0.00114496367, 0.9979707, 0.0636651218, 0.182073623, -0.0628090426, 0.981276989)*CF.A(M.R(pl/36),0,0),Alpha)
  3256. elseif(Mode == 7)then
  3257. Change = 1
  3258. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0101235649, -1.07766318+.1*M.C(Sine/16), 0.648248792, 0.999971092, -0.00739747565, -0.00181146339, 0.00738599803, 0.883920729, 0.467578471, -0.00185771007, -0.467578262, 0.883949816)*CF.A(0,M.R(0+2*M.C(Sine/0.12512)),M.R(0+2*M.S(Sine/0.0512412))),Alpha)
  3259. LH.C0 = clerp(LH.C0,CFrame.new(-0.504728794, 0.381877124-.1*M.C(Sine/16), -0.515005529, 0.999878228, 0.00738599803, 0.0137542095, -9.66741936e-05, 0.883920729, -0.467636794, -0.0156115945, 0.467578471, 0.883813798)*CF.A(0,-M.R(0+2*M.C(Sine/0.12512)),-M.R(0+2*M.S(Sine/0.0512412)))*CF.A(M.R(0+1*M.S(Sine/0.283547)),M.R(0+1*M.C(Sine/0.356723)),0),Alpha)
  3260. RH.C0 = clerp(RH.C0,CFrame.new(0.491205901, 0.34564203-.1*M.C(Sine/16), -0.462503195, 0.999878228, 0.00738599803, 0.0137542095, -9.66741936e-05, 0.883920729, -0.467636794, -0.0156115945, 0.467578471, 0.883813798)*CF.A(0,-M.R(0+2*M.C(Sine/0.12512)),-M.R(0+2*M.S(Sine/0.0512412)))*CF.A(M.R(0+1*M.S(Sine/0.283547)),M.R(0+1*M.C(Sine/0.356723)),0),Alpha)
  3261. LS.C0 = clerp(LS.C0,CFrame.new(-0.80868268, 0.497842163, -0.14479053, 0.744864702, -0.66721499, -0.00102781132, -0.0409338176, -0.0441599488, -0.998185575, 0.665959001, 0.743555188, -0.0602048337)*CF.A(0,M.R(0+2*M.C(Sine/0.134561367)),M.R(0+5*M.S(Sine/0.127347))),Alpha)
  3262. RS.C0 = clerp(RS.C0,CFrame.new(0.754446983, 0.405229449, -0.406160057, 0.458563089, 0.88866204, -0.000157270115, 0.00361818075, -0.00204397738, -0.999991417, -0.88865459, 0.45855853, -0.00415253639)*CF.A(0,M.R(0+2*M.C(Sine/0.12543152)),M.R(0+5*M.S(Sine/0.273456123))),Alpha)
  3263. NK.C0 = clerp(NK.C0,CFrame.new(3.87876844e-06, 1.54665208, -0.105986834, 1.00000012, 2.60770321e-06, 2.79070809e-05, -1.28485262e-05, 0.927553773, 0.373690069, -2.49119475e-05, -0.373690099, 0.927553654)*CF.A(0,M.R(0+2*M.C(Sine/0.25432)),M.R(0+5*M.S(Sine/0.421342134))),Alpha)
  3264. elseif(Mode == 8)then
  3265. Change = 1
  3266. RJ.C0 = RJ.C0:lerp(CF.N(0,0,0)*CF.A(0,0,M.R(0+5*M.C(Sine/16))),Alpha)
  3267. NK.C0 = NK.C0:lerp(NKC0*CF.A(0,0,-M.R(0+5*M.C(Sine/16))),Alpha)
  3268. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,-M.R(0+5*M.C(Sine/16)))*CF.A(M.R(-15),M.R(25),0),Alpha)
  3269. RH.C0 = RH.C0:lerp(RHC0*CF.A(0,0,-M.R(0+5*M.C(Sine/16))),Alpha)
  3270. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,-.15,0)*CF.A(M.R(15),0,M.R(20)),Alpha)
  3271. RS.C0 = RS.C0:lerp(RSC0*CF.A(0,0,M.R(5+5*M.S(Sine/16))),Alpha)
  3272. elseif(Mode == 9)then
  3273. Change = 1
  3274. if(hitfloor and Mode == 9)then OEffect{Material=Enum.Material.Neon,Effect='Fade',Mesh={MeshType=Enum.MeshType.Cylinder},Size=V3.N(.1,5,5),Frames=120,Color=BrickColor.new'Forest green',CFrame=CF.N(posfloor,posfloor+norm)*CF.A(0,M.R(90),0)} end
  3275. local Colors = {"Forest green","Lime green","Earth green"}
  3276. NoobyBlock(4,.025,"Multiply",LArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),.012,BrickColor.new(Colors[M.RNG(1,#Colors)]),0,true)
  3277. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00763900485, 0.0576088727+.1*M.C(Sine/32), -0.489215493, 0.999976635, -0.00668978505, -0.00145753659, 0.00667999825, 0.906569779, 0.422003359, -0.00150175206, -0.422003239, 0.906593204),Alpha)
  3278. LH.C0 = clerp(LH.C0,CFrame.new(-0.508842707, -1.12272382-.1*M.C(Sine/32), -0.0245408416, 0.973195612, 0.0299689136, 0.228018239, 0.0911211073, 0.860081792, -0.501952767, -0.211157292, 0.509275496, 0.834296942),Alpha)
  3279. RH.C0 = clerp(RH.C0,CFrame.new(0.505672514, -1.12652683-.1*M.C(Sine/32), -0.0664639771, 0.908796906, 0.0139010083, -0.417007297, -0.155455723, 0.938765347, -0.307495654, 0.387197405, 0.344277233, 0.855307937),Alpha)
  3280. LS.C0 = clerp(LS.C0,CFrame.new(-1.45529008, 0.399098635+.1*M.C(Sine/32), -0.00237059593, 0.9937765, 0.103129238, -0.0421066694, -0.0848314539, 0.45566994, -0.88609755, -0.0721958056, 0.884154797, 0.461582631)*CF.A(0,0,M.R(0-10*M.C(Sine/32)))*CF.A(0,M.R(0+6*M.C(Sine/0.1872634)),M.R(0+12*M.S(Sine/0.0124723465))),Alpha)
  3281. RS.C0 = clerp(RS.C0,CFrame.new(1.25761306, 0.482083619+.1*M.C(Sine/32), -0.434745401, 0.42843774, 0.695737422, -0.576533496, 0.754532933, -0.626516104, -0.195340306, -0.497112989, -0.351322293, -0.793379903)*CF.A(0,M.R(0+6*M.C(Sine/0.1872634)),M.R(0+12*M.S(Sine/0.0124723465))),Alpha)
  3282. NK.C0 = clerp(NK.C0,CFrame.new(1.26473606e-05, 1.49894953, -0.0143971443, 0.998992383, 0.0431914814, 0.0122066746, -0.03513439, 0.921768486, -0.386146128, -0.0279299468, 0.385328114, 0.922357082)*CF.A(M.R(0+10*M.C(Sine/32)),0,0)*CF.A(0,M.R(0+6*M.C(Sine/0.1872634)),M.R(0+12*M.S(Sine/0.0124723465))),Alpha)
  3283. elseif(Mode == 10)then
  3284. NoobyBlock(4,.025,"Multiply",LArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(1,1,1),.012,BrickColor.new'Alder',0,true)
  3285. Change = 1
  3286. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20710125e-11+.2*M.S(Sine/32), 0.881578624+.5*M.C(Sine/32), -9.84873623e-07+.2*M.C(Sine/24), 0.999999821, 3.63797881e-11, 0, -4.58300065e-11, 0.999980092, -0.00628619455, 9.31322575e-10, 0.00628619082, 0.999980509),Alpha)
  3287. LH.C0 = clerp(LH.C0,CFrame.new(-0.507622898, -0.617543876, -0.694063663, 0.999877989, -0.00717858272, 0.0138636231, -9.81731864e-05, 0.885106385, 0.465388477, -0.0156116197, -0.465333343, 0.884998262),Alpha)
  3288. RH.C0 = clerp(RH.C0,CFrame.new(0.499199599, -0.96504283, 0.0578122139, 0.999877989, -0.00369151891, 0.0151692061, -9.81731864e-05, 0.970136404, 0.242559701, -0.0156116197, -0.242531747, 0.970018268),Alpha)
  3289. LS.C0 = clerp(LS.C0,CFrame.new(-1.40968728, 0.491904348, 0.019305028, 0.895423353, 0.179754242, 0.407314837, -0.16739957, 0.983670354, -0.0661047474, -0.412546366, -0.00899259746, 0.910892725)*CF.A(0,0,M.R(0+10*M.C(Sine/32))),Alpha)
  3290. RS.C0 = clerp(RS.C0,CFrame.new(0.648883045, 0.459784538, -0.511239171, -0.133737907, 0.979713619, 0.149248496, 0.396290839, 0.190905675, -0.898058236, -0.908332765, -0.0609586462, -0.413783163)*CF.A(M.R(0+4*M.C(Sine/32)),M.R(0+4*M.C(Sine/32)),0),Alpha)
  3291. NK.C0 = clerp(NK.C0,CFrame.new(7.21290917e-06, 1.49894142, -0.0144039318, 0.999999821, 3.67581379e-07, -1.60187483e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.0637688339, 0.997965097),Alpha)
  3292. elseif(Mode == 16)then
  3293. Change = 1
  3294. RJ.C0 = RJ.C0:lerp(CF.N(0+.2*M.S(Sine/32),1.3-.5*M.C(Sine/32),0+.2*M.C(Sine/24))*CF.A(M.R(0+1.5*M.S(Sine/32)),M.R(0+5*M.S(Sine/36)),0),Alpha)
  3295. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,0)*CF.A(M.R(0+5*M.C(Sine/32)),0,0),Alpha)
  3296. LS.C0 = LS.C0:lerp(LSC0*CF.N(.75,0+.1*M.C(Sine/32),-.5)*CF.A(M.R(-25-5*M.C(Sine/32)),M.R(15),M.R(80+10*M.C(Sine/32))),Alpha)
  3297. RS.C0 = RS.C0:lerp(RSC0*CF.N(-.5,0+.1*M.C(Sine/32),-.5)*CF.A(M.R(25+5*M.C(Sine/32)),M.R(-15),M.R(-85-5*M.C(Sine/32))),Alpha)
  3298. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,.4,-.5)*CF.A(M.R(-15-2.5*M.S(Sine/32)),M.R(25-5*M.C(Sine/32)),M.R(-5)),Alpha)
  3299. RH.C0 = RH.C0:lerp(RHC0*CF.A(M.R(-15-5*M.C(Sine/32)),M.R(-25),M.R(5)),Alpha)
  3300. elseif(Mode == 696969)then
  3301. Change = 1
  3302. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00497054448, 0.0384125113+.1*M.C(Sine/32), -0.318240643, 0.999985576, -0.00531026162, -0.000893360935, 0.00530399941, 0.942669153, 0.333686858, -0.00092981942, -0.333686769, 0.942683578),Alpha)
  3303. LH.C0 = clerp(LH.C0,CFrame.new(-0.497181207, -1.07329571-.1*M.C(Sine/32), -0.0259589553, 0.991927385, 0.00536903273, 0.126693994, 0.0373182632, 0.942499518, -0.332117736, -0.12119215, 0.334164649, 0.934690654),Alpha)
  3304. RH.C0 = clerp(RH.C0,CFrame.new(0.508173347, -1.05517495-.1*M.C(Sine/32), -0.101279587, 0.989477396, 0.015710555, -0.143832386, -0.0531964861, 0.963962197, -0.260666966, 0.13455373, 0.265575409, 0.954654515),Alpha)
  3305. LS.C0 = clerp(LS.C0,CFrame.new(-1.3136189, 0.462844551+.1*M.C(Sine/32), 0.00274867564, 0.929629087, -0.368184805, -0.015158236, -0.360420376, -0.899919868, -0.245441884, 0.0767267719, 0.23363328, -0.969292879)*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.01278125))),Alpha)
  3306. RS.C0 = clerp(RS.C0,CFrame.new(1.25962329, 0.543387234+.1*M.C(Sine/32), 0.0906403661, 0.898135066, 0.439483941, -0.0144048491, 0.399390757, -0.829028964, -0.391405523, -0.183958456, 0.345781803, -0.920105577)*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.01278125))),Alpha)
  3307. NK.C0 = clerp(NK.C0,CFrame.new(-0.00269337045, 1.48585653, -0.187648922, 0.999991715, -0.00401760591, -0.00077160541, 0.00405273447, 0.94710511, 0.320898026, -0.000558450818, -0.320898473, 0.947113574)*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+7.5*M.S(Sine/0.01278125))),Alpha)
  3308. elseif(Mode == 666666666666)then
  3309. Change = 1
  3310. NoobySphere(4,.025,"Multiply",RArm.CFrame*CF.N(0,-1.25,0)*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),V3.N(.5,.5,.5),0,BrickColor.new'Black',0)
  3311. RJ.C0 = clerp(RJ.C0,CFrame.new(7.0558559e-11, 1.61628103+.5*M.C(Sine/32), -3.05566937e-06, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271),Alpha)
  3312. LH.C0 = clerp(LH.C0,CFrame.new(-0.473465502, -1.00430846, 0.0547358543, 0.996436775, 0.0789096355, 0.0297838245, -0.0829922184, 0.980262518, 0.179437637, -0.0150366053, -0.181270093, 0.983318448),Alpha)
  3313. RH.C0 = clerp(RH.C0,CFrame.new(0.500664473, -0.996896267, 0.0722374618, 0.994860828, -0.10125193, 0.00038037356, 0.0999543592, 0.982697129, 0.155934408, -0.0161624532, -0.155095011, 0.987767398),Alpha)
  3314. LS.C0 = clerp(LS.C0,CFrame.new(-1.29428089, 0.420441031, 0.493041277, 0.816086888, -0.538787425, 0.209070042, 0.381859779, 0.774240494, 0.504712522, -0.43380329, -0.33205387, 0.837588906)*CF.A(0,0,M.R(0-5*M.C(Sine/32)))*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.01278125))),Alpha)
  3315. RS.C0 = clerp(RS.C0,CFrame.new(1.36178303, 0.535555065, 0.0481818169, 0.959323943, -0.276642442, -0.0562722012, -0.281998605, -0.948367953, -0.145173192, -0.0132056763, 0.155136824, -0.98780489)*CF.A(0,0,M.R(0+5*M.C(Sine/32)))*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.01278125))),Alpha)
  3316. NK.C0 = clerp(NK.C0,CFrame.new(0.0176411867, 1.49121404, -0.0637010336, 0.942441404, 0.0288463272, -0.333124816, 0.0213407781, 0.989051461, 0.146020114, 0.333689809, -0.144724563, 0.931507409)*CF.A(0,M.R(0+32*M.C(Sine/0.025345)),M.R(0+24*M.S(Sine/0.0245987638))),Alpha)
  3317. elseif(Mode == 666)then
  3318. Change = 1
  3319. RJ.C0 = RJ.C0:lerp(CF.N(0+.2*M.S(Sine/30),1.6+.2*M.C(Sine/32),0+.2*M.C(Sine/26))*CF.A(0,M.RRNG(-5,5),0),Alpha)
  3320. if(M.RNG(1,30) == 1)then
  3321. NK.C0 = NK.C0:lerp(NKC0*CF.A(M.RRNG(0,45),M.RRNG(-45,45),M.RRNG(-45,45)),1)
  3322. else
  3323. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,-.35)*CF.A(M.R(-45+5*M.C(Sine/32)),0,0)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3324. end
  3325. LS.C0 = LS.C0:lerp(LSC0*CF.N(.75,0+.1*M.C(Sine/32),-.5)*CF.A(0,M.R(15),M.R(80+5*M.C(Sine/32)))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3326. RS.C0 = RS.C0:lerp(RSC0*CF.N(-.5,0+.1*M.C(Sine/32),-.5)*CF.A(0,M.R(-15),M.R(-85-5*M.C(Sine/32)))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3327. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,.4,-.5)*CF.A(M.R(-15-2.5*M.S(Sine/32)),M.R(25-5*M.C(Sine/32)),M.R(-5))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3328. RH.C0 = RH.C0:lerp(RHC0*CF.A(M.R(-15-5*M.C(Sine/32)),M.R(-25),M.R(5))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3329. else
  3330. Change = 1
  3331. RJ.C0 = RJ.C0:lerp(RJC0*CF.N(0,.2*M.C(Sine/6),0)*CF.A(M.R(-5+5*M.C(Sine/12)),M.R(-10),0),Alpha)
  3332. NK.C0 = NK.C0:lerp(NKC0*CF.A(M.R(-5+5*M.C(Sine/12)),0,0),Alpha)
  3333. LS.C0 = LS.C0:lerp(LSC0*CF.A(0,0,M.R(-7-5*M.C(Sine/12))),Alpha)
  3334. RS.C0 = RS.C0:lerp(RSC0*CF.A(0,0,M.R(7+5*M.C(Sine/12))),Alpha)
  3335. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,-.2*M.C(Sine/6),0)*CF.A(M.R(5-5*M.C(Sine/12)),M.R(10),0),Alpha)
  3336. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,-.2*M.C(Sine/6),0)*CF.A(M.R(5-5*M.C(Sine/12)),M.R(-10),0),Alpha)
  3337. end
  3338. -- idle
  3339. elseif(State == 'Run' and Mode ~= 5 and Mode ~= 10 and Mode ~= 666666666666 and Mode ~= 666 and Mode ~= 16)then
  3340. local wsVal = 7 / (Hum.WalkSpeed/16)
  3341. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  3342. RJ.C0 = RJ.C0:lerp(CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(-15+2.5*M.C(Sine/(wsVal/2))),M.R(8*M.C(Sine/wsVal)),0),Alpha)
  3343. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  3344. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,0-.3*M.S(Sine/wsVal))*CF.A(M.R(0+45*M.S(Sine/wsVal)),0,M.R(-5)),Alpha)
  3345. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,0,0+.3*M.S(Sine/wsVal))*CF.A(M.R(0-45*M.S(Sine/wsVal)),0,M.R(5)),Alpha)
  3346. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3347. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3348. elseif(State == 'Walk' and Mode ~= 5 and Mode ~= 7 and Mode ~= 10 and Mode ~= 666666666666 and Mode ~= 666 and Mode ~= 16)then
  3349. local wsVal = 7 / (Hum.WalkSpeed/16)
  3350. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  3351. if(Mode == 4)then
  3352. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00847404078, -0.131645858-.1*M.C(Sine/(wsVal)), -0.542845488, 0.999965072, -0.00807052851, -0.00218774565, 0.00805599708, 0.85972774, 0.510689199, -0.00224066619, -0.51068902, 0.859762609),Alpha)
  3353. LH.C0 = clerp(LH.C0,CFrame.new(-0.496114701, -1.0144912+.1*M.C(Sine/(wsVal)), 0.0453964472, 0.976583362, 0.00805600174, 0.214989081, 0.103035107, 0.859728813, -0.50025022, -0.188862324, 0.510687351, 0.838766694),Alpha)
  3354. RH.C0 = clerp(RH.C0,CFrame.new(0.498885572, -1.01948476+.1*M.C(Sine/(wsVal)), 0.0378640294, 0.997592449, 0.00805600174, -0.0688822865, -0.0420893468, 0.859728813, -0.509013772, 0.055119466, 0.510687351, 0.857997894),Alpha)
  3355. LS.C0 = clerp(LS.C0,CFrame.new(-1.42592692, 0.493003547, -0.129623473, 0.987043619, 0.159894824, 0.0133710029, -0.130732149, 0.849730968, -0.51075089, -0.0930281729, 0.502385318, 0.859624803)*CF.A(M.R(0+15*M.C(Sine/wsVal)),0,0)*CF.A(0,M.R(0+4*M.C(Sine/0.817272)),M.R(0+15*M.S(Sine/0.9872346))),Alpha)
  3356. RS.C0 = clerp(RS.C0,CFrame.new(1.1449033, 0.691183329, -0.239056498, 0.899715602, 0.434673697, 0.0396348648, 0.435808241, -0.899650335, -0.0264700353, 0.024151668, 0.0410887003, -0.998863578)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3357. NK.C0 = clerp(NK.C0,CFrame.new(7.87388399e-06, 1.43020797, -0.212884247, 1, -8.72649252e-07, -4.02983278e-06, 2.92807817e-06, 0.838354766, 0.545125127, 2.90293247e-06, -0.545125067, 0.838354826)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3358. elseif(Mode == 696969)then
  3359. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00847404078, -0.131645858-.1*M.C(Sine/(wsVal)), -0.542845488, 0.999965072, -0.00807052851, -0.00218774565, 0.00805599708, 0.85972774, 0.510689199, -0.00224066619, -0.51068902, 0.859762609),Alpha)
  3360. LH.C0 = clerp(LH.C0,CFrame.new(-0.496114701, -1.0144912+.1*M.C(Sine/(wsVal)), 0.0453964472, 0.976583362, 0.00805600174, 0.214989081, 0.103035107, 0.859728813, -0.50025022, -0.188862324, 0.510687351, 0.838766694),Alpha)
  3361. RH.C0 = clerp(RH.C0,CFrame.new(0.498885572, -1.01948476+.1*M.C(Sine/(wsVal)), 0.0378640294, 0.997592449, 0.00805600174, -0.0688822865, -0.0420893468, 0.859728813, -0.509013772, 0.055119466, 0.510687351, 0.857997894),Alpha)
  3362. LS.C0 = clerp(LS.C0,CFrame.new(-1.3136189, 0.462844551+.1*M.C(Sine/wsVal), 0.00274867564, 0.929629087, -0.368184805, -0.015158236, -0.360420376, -0.899919868, -0.245441884, 0.0767267719, 0.23363328, -0.969292879)*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.01278125))),Alpha)
  3363. RS.C0 = clerp(RS.C0,CFrame.new(1.25962329, 0.543387234+.1*M.C(Sine/wsVal), 0.0906403661, 0.898135066, 0.439483941, -0.0144048491, 0.399390757, -0.829028964, -0.391405523, -0.183958456, 0.345781803, -0.920105577)*CF.A(0,M.R(0+4*M.C(Sine/0.173278)),M.R(0+15*M.S(Sine/0.01278125))),Alpha)
  3364. NK.C0 = clerp(NK.C0,CFrame.new(7.87388399e-06, 1.43020797, -0.212884247, 1, -8.72649252e-07, -4.02983278e-06, 2.92807817e-06, 0.838354766, 0.545125127, 2.90293247e-06, -0.545125067, 0.838354826)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3365.  
  3366. elseif(Mode == 1)then
  3367. RJ.C0 = RJ.C0:lerp(CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(-5-2.5*M.C(Sine/(wsVal/2))),M.R(8*M.C(Sine/wsVal)),0),Alpha)
  3368. NK.C0 = NK.C0:lerp(NKC0*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3369. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,-.22*M.C(Sine/wsVal))*CF.A(M.R(0+37*M.C(Sine/wsVal)),0,M.R(-5+10*M.C(Sine/(wsVal/2))) ),Alpha)
  3370. RS.C0 = clerp(RS.C0,CFrame.new(1.2, 0.7, -0.396169931, 0.827836394, 0.560810268, -0.013374418, 0.472599089, -0.7100721, -0.521965444, -0.302220345, 0.42578119, -0.852861941)*CF.A(0,M.R(0+4*M.C(Sine/0.61237)),M.R(0+15*M.S(Sine/0.716246))),Alpha)
  3371. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3372. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3373. else
  3374. if(hitfloor and Mode == 9)then OEffect{Material=Enum.Material.Neon,Effect='Fade',Mesh={MeshType=Enum.MeshType.Cylinder},Size=V3.N(.1,5,5),Frames=120,Color=BrickColor.new'Forest green',CFrame=CF.N(posfloor,posfloor+norm)*CF.A(0,M.R(90),0)} end
  3375. RJ.C0 = RJ.C0:lerp(CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(-5-2.5*M.C(Sine/(wsVal/2))),M.R(8*M.C(Sine/wsVal)),0),Alpha)
  3376. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  3377. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,-.22*M.C(Sine/wsVal))*CF.A(M.R(37*M.C(Sine/wsVal)),0,M.R(-5+10*M.C(Sine/(wsVal/2))) ),Alpha)
  3378. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,0,.22*M.C(Sine/wsVal))*CF.A(M.R(-37*M.C(Sine/wsVal)),0,M.R(5-10*M.C(Sine/(wsVal/2))) ),Alpha)
  3379. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3380. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3381. end
  3382. elseif(State == 'Walk' and Mode == 7)then
  3383. local wsVal = 7 / (Hum.WalkSpeed/16)
  3384. local Alpha = math.min(.3 * (Hum.WalkSpeed/8),1)
  3385. RJ.C0 = RJ.C0:lerp(CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(-2.5-1.25*M.C(Sine/(wsVal/2))),M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3386. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  3387. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,-.11*M.C(Sine/wsVal))*CF.A(M.R(18.5*M.C(Sine/wsVal)),0,M.R(-2.5+5*M.C(Sine/(wsVal/2))) ),Alpha)
  3388. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,0,.11*M.C(Sine/wsVal))*CF.A(M.R(-18.5*M.C(Sine/wsVal)),0,M.R(2.5-5*M.C(Sine/(wsVal/2))) ),Alpha)
  3389. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3390. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  3391. elseif((State == 'Walk' or State == 'Run') and Mode == 10)then
  3392. Change = 1
  3393. local Alpha = .1
  3394. RJ.C0 = clerp(RJ.C0,CFrame.new(5.48791013e-11, 0.881578624+.5*M.C(Sine/32), -3.51015478e-06, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271)*CF.A(M.R(-45),0,0),Alpha)
  3395. LH.C0 = clerp(LH.C0,CFrame.new(-0.507622898, -0.617543876, -0.694063663, 0.999877989, -0.00717858272, 0.0138636231, -9.81731864e-05, 0.885106385, 0.465388477, -0.0156116197, -0.465333343, 0.884998262),Alpha)
  3396. RH.C0 = clerp(RH.C0,CFrame.new(0.499199599, -0.96504283, 0.0578122139, 0.999877989, -0.00369151891, 0.0151692061, -9.81731864e-05, 0.970136404, 0.242559701, -0.0156116197, -0.242531747, 0.970018268),Alpha)
  3397. LS.C0 = clerp(LS.C0,CFrame.new(-1.49673307, 0.593781948+.2*M.C(Sine/32), 0.0200225115, 0.966687799, 0.25548178, 0.0156119233, -0.255602777, 0.96676141, 0.00628757617, -0.0134866452, -0.0100685749, 0.999858439)*CF.A(M.R(-45),M.R(25),M.R(5+5*M.C(Sine/32))),Alpha)
  3398. RS.C0 = clerp(RS.C0,CFrame.new(1.50987279, 0.675035477+.2*M.C(Sine/32), -0.0274340063, 0.943747699, -0.330297619, 0.0156119233, 0.33023873, 0.943876505, 0.00628757617, -0.0168125015, -0.000778224785, 0.999858439)*CF.A(M.R(-45),M.R(-25),M.R(-5-5*M.C(Sine/32))),Alpha)
  3399. NK.C0 = clerp(NK.C0,CFrame.new(4.35172478e-06, 1.49894357, -0.0144011974, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799)*CF.A(M.R(45),0,0),Alpha)
  3400. elseif((State == 'Walk' or State == 'Run') and Mode == 666666666666)then
  3401. Change = 1
  3402. local Alpha = .1
  3403. RJ.C0 = clerp(RJ.C0,CFrame.new(5.48791013e-11, 1.61628103+.5*M.C(Sine/32), -3.51015478e-06, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271)*CF.A(M.R(-65),0,0),Alpha)
  3404. LH.C0 = clerp(LH.C0,CFrame.new(-0.507622898, -0.617543876, -0.694063663, 0.999877989, -0.00717858272, 0.0138636231, -9.81731864e-05, 0.885106385, 0.465388477, -0.0156116197, -0.465333343, 0.884998262),Alpha)
  3405. RH.C0 = clerp(RH.C0,CFrame.new(0.499199599, -0.96504283, 0.0578122139, 0.999877989, -0.00369151891, 0.0151692061, -9.81731864e-05, 0.970136404, 0.242559701, -0.0156116197, -0.242531747, 0.970018268),Alpha)
  3406. LS.C0 = clerp(LS.C0,CFrame.new(-1.49673307, 0.593781948+.2*M.C(Sine/32), 0.0200225115, 0.966687799, 0.25548178, 0.0156119233, -0.255602777, 0.96676141, 0.00628757617, -0.0134866452, -0.0100685749, 0.999858439)*CF.A(M.R(-55),M.R(25),M.R(5+5*M.C(Sine/32))),Alpha)
  3407. RS.C0 = clerp(RS.C0,CFrame.new(1.50987279, 0.675035477+.2*M.C(Sine/32), -0.0274340063, 0.943747699, -0.330297619, 0.0156119233, 0.33023873, 0.943876505, 0.00628757617, -0.0168125015, -0.000778224785, 0.999858439)*CF.A(M.R(-55),M.R(-25),M.R(-5-5*M.C(Sine/32))),Alpha)
  3408. NK.C0 = clerp(NK.C0,CFrame.new(4.35172478e-06, 1.49894357, -0.0144011974, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799)*CF.A(M.R(65),0,0),Alpha)
  3409. elseif((State == 'Walk' or State == 'Run') and Mode == 666)then
  3410. Change = 1
  3411. local Alpha = .1
  3412. RJ.C0 = RJ.C0:lerp(CF.N(0+.2*M.S(Sine/30),1.6+.2*M.C(Sine/32),0+.2*M.C(Sine/26))*CF.A(M.R(-45),M.RRNG(-5,5),0),Alpha)
  3413. if(M.RNG(1,30) == 1)then
  3414. NK.C0 = NK.C0:lerp(NKC0*CF.A(M.RRNG(0,45),M.RRNG(-45,45),M.RRNG(-45,45)),1)
  3415. else
  3416. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,-.35)*CF.A(M.R(-25+5*M.C(Sine/32)),0,0)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3417. end
  3418. LS.C0 = LS.C0:lerp(LSC0*CF.N(.75,0+.1*M.C(Sine/32),-.5)*CF.A(0,M.R(15),M.R(80+5*M.C(Sine/32)))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3419. RS.C0 = RS.C0:lerp(RSC0*CF.N(-.5,0+.1*M.C(Sine/32),-.5)*CF.A(0,M.R(-15),M.R(-85-5*M.C(Sine/32)))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3420. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,.4,-.5)*CF.A(M.R(-35-2.5*M.S(Sine/32)),M.R(25-5*M.C(Sine/32)),M.R(-5))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3421. RH.C0 = RH.C0:lerp(RHC0*CF.A(M.R(-35-5*M.C(Sine/32)),M.R(-25),M.R(5))*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  3422. elseif((State == 'Walk' or State == 'Run') and Mode == 16)then
  3423. local Alpha = .1
  3424. Change = 1
  3425. RJ.C0 = RJ.C0:lerp(CF.N(0+.2*M.S(Sine/32),1.3-.5*M.C(Sine/32),0+.2*M.C(Sine/24))*CF.A(M.R(-45+1.5*M.S(Sine/32)),M.R(0+5*M.S(Sine/36)),0),Alpha)
  3426. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,0)*CF.A(M.R(25+5*M.C(Sine/32)),0,0),Alpha)
  3427. LS.C0 = LS.C0:lerp(LSC0*CF.N(.75,0+.1*M.C(Sine/32),-.5)*CF.A(M.R(-25-5*M.C(Sine/32)),M.R(15),M.R(80+10*M.C(Sine/32))),Alpha)
  3428. RS.C0 = RS.C0:lerp(RSC0*CF.N(-.5,0+.1*M.C(Sine/32),-.5)*CF.A(M.R(25+5*M.C(Sine/32)),M.R(-15),M.R(-85-5*M.C(Sine/32))),Alpha)
  3429. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,.4,-.5)*CF.A(M.R(-35-2.5*M.S(Sine/32)),M.R(25-5*M.C(Sine/32)),M.R(-5)),Alpha)
  3430. RH.C0 = RH.C0:lerp(RHC0*CF.A(M.R(-35-5*M.C(Sine/32)),M.R(-25),M.R(5)),Alpha)
  3431. elseif((State == 'Walk' or State == 'Run'))then
  3432. Change = 1
  3433. local Alpha = .1
  3434. RJ.C0 = clerp(RJ.C0,CFrame.new(5.48791013e-11, 1.2571125+.5*M.C(Sine/32), -3.51015478e-06, 0.99999994, 4.36557457e-11, 0, -4.3652193e-11, 0.999980211, -0.00628619269, 9.31322575e-10, 0.00628619175, 0.999980271)*CF.A(M.R(-75),0,0),Alpha)
  3435. LH.C0 = clerp(LH.C0,CFrame.new(-0.436587602, -0.992619872, 0.0206923336, 0.99808234, 0.0599006973, 0.0156119233, -0.0600048117, 0.998178363, 0.00628757617, -0.0152068557, -0.0072123101, 0.999858439),Alpha)
  3436. RH.C0 = clerp(RH.C0,CFrame.new(0.481217712, -0.504008591, -0.8678087, 0.997120202, -0.0733773932, -0.0191624481, 0.0741236135, 0.889526427, 0.450830936, -0.0160352942, -0.450953096, 0.892403722),Alpha)
  3437. LS.C0 = clerp(LS.C0,CFrame.new(-1.49673307, 0.593781948+.2*M.C(Sine/32), 0.0200225115, 0.966687799, 0.25548178, 0.0156119233, -0.255602777, 0.96676141, 0.00628757617, -0.0134866452, -0.0100685749, 0.999858439)*CF.A(M.R(-15),M.R(25),M.R(5+5*M.C(Sine/32))),Alpha)
  3438. RS.C0 = clerp(RS.C0,CFrame.new(1.50987279, 0.675035477+.2*M.C(Sine/32), -0.0274340063, 0.943747699, -0.330297619, 0.0156119233, 0.33023873, 0.943876505, 0.00628757617, -0.0168125015, -0.000778224785, 0.999858439)*CF.A(M.R(-15),M.R(-25),M.R(-5-5*M.C(Sine/32))),Alpha)
  3439. NK.C0 = clerp(NK.C0,CFrame.new(4.35172478e-06, 1.49894357, -0.0144011974, 0.99999994, 3.67523171e-07, -1.61118805e-07, -3.56500095e-07, 0.997964799, 0.0637688041, 1.8440187e-07, -0.063768819, 0.997964799)*CF.A(M.R(75),0,0),Alpha)
  3440.  
  3441. elseif(State == 'Jump')then
  3442. local Alpha = .1
  3443. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  3444. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)),Alpha)
  3445. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)),Alpha)
  3446. RJ.C0 = RJ.C0:lerp(RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  3447. NK.C0 = NK.C0:lerp(NKC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  3448. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  3449. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  3450. elseif(State == 'Fall')then
  3451. local Alpha = .1
  3452. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  3453. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)+idk),Alpha)
  3454. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)-idk),Alpha)
  3455. RJ.C0 = RJ.C0:lerp(RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  3456. NK.C0 = NK.C0:lerp(NKC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  3457. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  3458. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  3459. elseif(State == 'Paralyzed')then
  3460. -- paralyzed
  3461. elseif(State == 'Sit')then
  3462. -- sit
  3463. end
  3464. end
  3465.  
  3466.  
  3467.  
  3468. for i,v in next, BloodPuddles do
  3469. local mesh = i:FindFirstChild'CylinderMesh'
  3470. BloodPuddles[i] = v + 1
  3471. if(not mesh or i.Transparency >= 1)then
  3472. i:destroy()
  3473. BloodPuddles[i] = nil
  3474. elseif(v >= Frame_Speed*4)then
  3475. local trans = (v-Frame_Speed*4)/(Frame_Speed*2)
  3476. i.Transparency = trans
  3477. if(mesh.Scale.Z > 0)then
  3478. mesh.Scale = mesh.Scale-V3.N(.05,0,.05)
  3479. end
  3480. else
  3481. i.Transparency = 0
  3482. end
  3483. end
  3484. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement