View difference between Paste ID: R7rz6GC6 and BnZqKNqe
SHOW: | | - or go back to the newest paste.
1-
print'i dont wanna be associated with SB anymore'
1+
-- Created by Nebula_Zorua --
2
-- Edit by petetheman23 --
3
-- PeteeeeGlitcheeee --
4
-- im stupid for making this lol --
5
-- Discord: Nebula the Zorua#6969
6
-- Youtube: https://www.youtube.com/channel/UCo9oU9dCw8jnuVLuy4_SATA
7
8
wait(1/60)
9
10
--// Shortcut Variables \\--
11
local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
12
local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
13
local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
14
local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
15
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}
16
local R3 = {N=Region3.new}
17
local De = S.Debris
18
local WS = workspace
19
local Lght = S.Lighting
20
local RepS = S.ReplicatedStorage
21
local IN = Instance.new
22
local Plrs = S.Players
23
local UIS = S.UserInputService
24
local CAS = S.ContextActionService
25
--// Initializing \\--
26
local Plr = Plrs.LocalPlayer
27
local Char = Plr.Character
28
local Hum = Char:FindFirstChildOfClass'Humanoid'
29
local RArm = Char["Right Arm"]
30
local LArm = Char["Left Arm"]
31
local RLeg = Char["Right Leg"]
32
local LLeg = Char["Left Leg"]	
33
local Root = Char:FindFirstChild'HumanoidRootPart'
34
local Torso = Char.Torso
35
local Head = Char.Head
36
local NeutralAnims = true
37
local Attack = false
38
local Debounces = {Debounces={}}
39
local Mouse = Plr:GetMouse()
40
local Hit = {}
41
local Sine = 0
42
local Change = 1
43
local PlrGui = Plr:FindFirstChildOfClass'PlayerGui'
44
local Hue = 0;
45
local Combo = 1
46
local BloodPuddles = {}
47
48
local DontAttackPlayers = false
49
50
local BurnInterval = .7
51
52
local Radioactive = {}
53
54
local Hits = 0;
55
local HitTime = time()
56
57
local MaxHits = 60;
58
		
59
local Effects = IN("Folder",Char)
60
Effects.Name = "Effects"
61
62
63
--// Output Stuff \\--
64
65
function Output(type,...)
66
	print(table.concat{...,"\t"})
67
end
68
69
warn("NEBULAGLITCHER DEMO")
70
warn("CONTROLS:")
71
warn("SOLITUDE - Z, T")
72
warn("THE BIG BLACK - Z (NOT FINISHED)")
73
warn("CLARITY - Z")
74
warn("GLITCHY - Z")
75
warn("STRESS - Z")
76
warn("JUSTICE - Z")
77
78
warn("The real NebulaGlitcher has more modes, and a combo system. This is just a demo.")
79
80
--// Debounce System \\--
81
82
function Debounces:New(name,cooldown)
83
	local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
84
	setmetatable(aaaaa,{__index = Debounces})
85
	Debounces.Debounces[name] = aaaaa
86
	return aaaaa
87
end
88
89
function Debounces:Use(overrideUsable)
90
	assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
91
	if(self.Usable or overrideUsable)then
92
		self.Usable = false
93
		self.CoolingDown = true
94
		local LastUse = time()
95
		self.LastUse = LastUse
96
		delay(self.Cooldown or 2,function()
97
			if(self.LastUse == LastUse)then
98
				self.CoolingDown = false
99
				self.Usable = true
100
			end
101
		end)
102
	end
103
end
104
105
function Debounces:Get(name)
106
	assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
107
	for i,v in next, Debounces.Debounces do
108
		if(i == name)then
109
			return v;
110
		end
111
	end
112
end
113
114
function Debounces:GetProgressPercentage()
115
	assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
116
	if(self.CoolingDown and not self.Usable)then
117
		return math.max(
118
			math.floor(
119
				(
120
					(time()-self.LastUse)/self.Cooldown or 2
121
				)*100
122
			)
123
		)
124
	else
125
		return 100
126
	end
127
end
128
129
--// Instance Creation Functions \\--
130
131
function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
132
	local Sound = IN("Sound")
133
	Sound.SoundId = "rbxassetid://".. tostring(id or 0)
134
	Sound.Pitch = pitch or 1
135
	Sound.Volume = volume or 1
136
	Sound.Looped = looped or false
137
	if(autoPlay)then
138
		coroutine.wrap(function()
139
			repeat wait() until Sound.IsLoaded
140
			Sound.Playing = autoPlay or false
141
		end)()
142
	end
143
	if(not looped and effect)then
144
		Sound.Stopped:connect(function()
145
			Sound.Volume = 0
146
			Sound:destroy()
147
		end)
148
	elseif(effect)then
149
		warn("Sound can't be looped and a sound effect!")
150
	end
151
	Sound.Parent =parent or Torso
152
	return Sound
153
end
154
function Part(parent,color,material,size,cframe,anchored,cancollide)
155
	local part = IN("Part")
156
	part.Parent = parent or Char
157
	part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
158
	part.Material = material or Enum.Material.SmoothPlastic
159
	part.TopSurface,part.BottomSurface=10,10
160
	part.Size = size or V3.N(1,1,1)
161
	part.CFrame = cframe or CF.N(0,0,0)
162
	part.CanCollide = cancollide or false
163
	part.Anchored = anchored or false
164
	return part
165
end
166
167
function Weld(part0,part1,c0,c1)
168
	local weld = IN("Weld")
169
	weld.Parent = part0
170
	weld.Part0 = part0
171
	weld.Part1 = part1
172
	weld.C0 = c0 or CF.N()
173
	weld.C1 = c1 or CF.N()
174
	return weld
175
end
176
177
function Mesh(parent,meshtype,meshid,textid,scale,offset)
178
	local part = IN("SpecialMesh")
179
	part.MeshId = meshid or ""
180
	part.TextureId = textid or ""
181
	part.Scale = scale or V3.N(1,1,1)
182
	part.Offset = offset or V3.N(0,0,0)
183
	part.MeshType = meshtype or Enum.MeshType.Sphere
184
	part.Parent = parent
185
	return part
186
end
187
188
NewInstance = function(instance,parent,properties)
189
	local inst = Instance.new(instance)
190
	inst.Parent = parent
191
	if(properties)then
192
		for i,v in next, properties do
193
			pcall(function() inst[i] = v end)
194
		end
195
	end
196
	return inst;
197
end
198
199
function Clone(instance,parent,properties)
200
	local inst = instance:Clone()
201
	inst.Parent = parent
202
	if(properties)then
203
		for i,v in next, properties do
204
			pcall(function() inst[i] = v end)
205
		end
206
	end
207
	return inst;
208
end
209
210
function SoundPart(id,pitch,volume,looped,effect,autoPlay,cf)
211
	local soundPart = NewInstance("Part",Effects,{Transparency=1,CFrame=cf or Torso.CFrame,Anchored=true,CanCollide=false,Size=V3.N()})
212
	local Sound = IN("Sound")
213
	Sound.SoundId = "rbxassetid://".. tostring(id or 0)
214
	Sound.Pitch = pitch or 1
215
	Sound.Volume = volume or 1
216
	Sound.Looped = looped or false
217
	if(autoPlay)then
218
		coroutine.wrap(function()
219
			repeat wait() until Sound.IsLoaded
220
			Sound.Playing = autoPlay or false
221
		end)()
222
	end
223
	if(not looped and effect)then
224
		Sound.Stopped:connect(function()
225
			Sound.Volume = 0
226
			soundPart:destroy()
227
		end)
228
	elseif(effect)then
229
		warn("Sound can't be looped and a sound effect!")
230
	end
231
	Sound.Parent = soundPart
232
	return Sound,soundPart
233
end
234
235
236
--// Extended ROBLOX tables \\--
237
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})
238
--// Require stuff \\--
239
function CamShake(who,times,intense,origin) 
240
	coroutine.wrap(function()
241
		if(script:FindFirstChild'CamShake')then
242
			local cam = script.CamShake:Clone()
243
			cam:WaitForChild'intensity'.Value = intense
244
			cam:WaitForChild'times'.Value = times
245
			
246
	 		if(origin)then NewInstance((typeof(origin) == 'Instance' and "ObjectValue" or typeof(origin) == 'Vector3' and 'Vector3Value'),cam,{Name='origin',Value=origin}) end
247
			cam.Parent = who
248
			wait()
249
			cam.Disabled = false
250
		elseif(who == Plr or who == Char or who:IsDescendantOf(Plr))then
251
			local intensity = intense
252
			local cam = workspace.CurrentCamera
253
			for i = 1, times do
254
				local camDistFromOrigin
255
				if(typeof(origin) == 'Instance' and origin:IsA'BasePart')then
256
					camDistFromOrigin = math.floor( (cam.CFrame.p-origin.Position).magnitude )/25
257
				elseif(typeof(origin) == 'Vector3')then
258
					camDistFromOrigin = math.floor( (cam.CFrame.p-origin).magnitude )/25
259
				end
260
				if(camDistFromOrigin)then
261
					intensity = math.min(intense, math.floor(intense/camDistFromOrigin))
262
				end
263
				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)
264
				swait()
265
			end
266
		end
267
	end)()
268
end
269
270
271
function CamShakeAll(times,intense,origin)
272
	for _,v in next, Plrs:players() do
273
		CamShake(v:FindFirstChildOfClass'PlayerGui' or v:FindFirstChildOfClass'Backpack' or v.Character,times,intense,origin)
274
	end
275
end
276
277
function CamShakeAOE(origin,range,times,intense,blacklist)
278
	local hit = {}
279
	for _,v in next, getRegion(origin,range,blacklist or {}) do
280
		if(S.Players:GetPlayerFromCharacter(v.Parent) and v.Parent and not hit[v.Parent] and v.Parent:FindFirstChildOfClass'Humanoid')then
281
			CamShake(v.Parent,times,intense,origin)
282
			hit[v.Parent] = true
283
		end
284
	end
285
end
286
287
function ServerScript(code)
288
	if(script:FindFirstChild'Loadstring')then
289
		local load = script.Loadstring:Clone()
290
		load:WaitForChild'Sauce'.Value = code
291
		load.Disabled = false
292
		load.Parent = workspace
293
	elseif(NS and typeof(NS) == 'function')then
294
		NS(code,workspace)
295
	else
296
		warn("no serverscripts lol")
297
	end	
298
end
299
300
function LocalOnPlayer(who,code)
301
	ServerScript([[
302
		wait()
303
		script.Parent=nil
304
		if(not _G.Http)then _G.Http = game:service'HttpService' end
305
		
306
		local Http = _G.Http or game:service'HttpService'
307
		
308
		local source = ]].."[["..code.."]]"..[[
309
		local link = "https://api.vorth.xyz/R_API/R.UPLOAD/NEW_LOCAL.php"
310
		local asd = Http:PostAsync(link,source)
311
		repeat wait() until asd and Http:JSONDecode(asd) and Http:JSONDecode(asd).Result and Http:JSONDecode(asd).Result.Require_ID
312
		local ID = Http:JSONDecode(asd).Result.Require_ID
313
		local vs = require(ID).VORTH_SCRIPT
314
		vs.Parent = game:service'Players'.]]..who.Name..[[.Character
315
	]])
316
end
317
318
--// Customization \\--
319
320
local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
321
local Remove_Hats = false
322
local Remove_Clothing = false
323
local PlayerSize = 1
324
local DamageColor = BrickColor.new'Toothpaste'
325
local MusicID = 1512916534
326
local Pitch = 1
327
local VisSong = 511924043;
328
329
local God = false
330
local Muted = false
331
332
local PrimaryParts = {}
333
local SecondaryParts = {}
334
335
local WalkSpeed = 16
336
337
local Mode = 1;
338
339
--// Weapon and GUI creation, and Character Customization \\--
340
341
pcall(function()Char.LeftWing:destroy()end)
342
pcall(function()Char.Halo:destroy()end)
343
local toggleTag = true
344
local txt = Instance.new("BillboardGui", PlrGui)
345
txt.Adornee = Head
346
txt.Name = "NameDetect"
347
txt.Size = UDim2.new(4, 0, 1.2, 0)
348
txt.StudsOffset = Vector3.new(-8, 8/1.5, 0)
349
local text = Instance.new("TextLabel", txt)
350
text.Size = UDim2.new(10/2, 0, 7/2, 0)
351
text.FontSize = "Size8"
352
text.TextScaled = true
353
text.TextTransparency = 0
354
text.BackgroundTransparency = 1 
355
text.TextTransparency = 0
356
text.TextStrokeTransparency = 0
357
text.Font = "Fantasy"
358
text.TextStrokeColor3 = Color3.new(1,1,1)
359
text.TextColor3 = Color3.new(0,0,0)
360
text.Text = "Oh look a splatoon fanboi"
361
362
pcall(function() Char.ReaperShadowHead.Eye1.BrickColor = BrickColor.new'Lime green' end)
363
pcall(function() Char.ReaperShadowHead.Eye2.BrickColor = BrickColor.new'Hot pink' end)
364
365
function RecolorTextAndRename(name,col1,col2)
366
	text.TextStrokeColor3 = col2
367
	text.TextColor3 = col1
368
	text.Text = name
369
end
370
371
New = function(Object, Parent, Name, Data)
372
	local Object = Instance.new(Object)
373
	for Index, Value in pairs(Data or {}) do
374
		Object[Index] = Value
375
	end
376
	Object.Parent = Parent
377
	Object.Name = Name
378
	return Object
379
end
380
381
local Feather = New("Model",nil,"Feather",{})
382
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,})
383
local Meshie = New("SpecialMesh",Main,"Mesh",{MeshType = Enum.MeshType.Brick,})
384
local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Really blue"),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),})
385
local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 12.3999977, 10.999999),MeshType = Enum.MeshType.Brick,})
386
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),})
387
local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Deep orange"),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),})
388
local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 12.3999977, 10.999999),MeshType = Enum.MeshType.Brick,})
389
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),})
390
local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Lime green"),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),})
391
local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 27.3999977, 10.999999),MeshType = Enum.MeshType.Wedge,})
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.994998932, 0.277985036, 1, 0, 0, 0, -1, 0, 0, 0, -1),})
393
local CrystalPart = New("Part",Feather,"CrystalPart",{BrickColor = BrickColor.new("Hot pink"),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),})
394
local Meshie = New("SpecialMesh",CrystalPart,"Mesh",{Scale = Vector3.new(1, 27.3999977, 10.999999),MeshType = Enum.MeshType.Wedge,})
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.994998932, -0.272017956, 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, 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),})
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,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, 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),})
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
403
for _,v in next, Feather:children() do v.CanCollide = false v.BrickColor = BrickColor.new'Black' v.Material = Enum.Material.Neon v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0) end
404
405
local Core = New("Model",Char,"Core",{})
406
407
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,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
408
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),})
409
410
local Core2 = New("Part",Core,"Core2",{BrickColor = BrickColor.new("Black"),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,Color = Color3.new(0.105882, 0.164706, 0.207843),})
411
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),})
412
413
local CoreH = NewInstance("Humanoid",Core,{MaxHealth=500,Health=500})
414
415
if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
416
if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
417
418
local Music = Sound(Char,MusicID,1,3,true,false,true)
419
Music.Name = 'Music'
420
421
if(PlayerSize ~= 1)then
422
	for _,v in next, Char:GetDescendants() do
423
		if(v:IsA'BasePart')then
424
			v.Size = v.Size * PlayerSize
425
		end
426
	end
427
end
428
429
local Halo = NewInstance("Model",Char,{Name='Halo'})
430
431
local LWing = NewInstance("Model",Char,{Name='LeftWing'})
432
local RWing = NewInstance("Model",Char,{Name='RightWing'})
433
434
local LWingEXT = NewInstance("Model",Char,{Name='LeftWingEXT'})
435
local RWingEXT = NewInstance("Model",Char,{Name='RightWingEXT'})
436
437
local LWingWelds = {}
438
local RWingWelds = {}
439
	
440
local LWingEWelds = {}
441
local RWingEWelds = {}
442
443
local HaloHandle = NewInstance("Part",Halo,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
444
local LWingHandle = NewInstance("Part",Char,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
445
local RWingHandle = NewInstance("Part",Char,{Size=V3.N(.05,.05,.05),Transparency=1,CanCollide=false,Anchored=false,Locked=true,})
446
447
for i = 1, 360,5 do
448
	local part = NewInstance("Part",Halo,{BrickColor=BrickColor.new"Black",Material=Enum.Material.Neon,Size=V3.N(0.25,0.1,0.1),Anchored=false,CanCollide=false,Locked=true})
449
	local weld = NewInstance("Weld",part,{Part0=HaloHandle,Part1=part,C0=CF.A(0,M.R(i),0)*CF.N(0,0,-1)})
450
	table.insert(PrimaryParts,part)
451
end
452
453
for i = 1, 6 do
454
	local cr = Part(Char,BrickColor.new'Black',Enum.Material.SmoothPlastic,V3.N(.05,.05,.05),CF.N(),false,false)
455
	cr.Transparency = 1
456
	local fuck = Feather:Clone();
457
	local men = fuck.Main
458
	--local mesh = Mesh(cr,Enum.MeshType.FileMesh,'rbxassetid://9756362','',V3.N(.75,2,.2),V3.N())
459
	local weld1 = Weld(cr,men)
460
	local weld = Weld(men,LWingHandle)
461
	if(i > 3)then
462
		for _,v in next, fuck:children() do v.Parent = LWingEXT v.Transparency = 1 end
463
	else
464
		for _,v in next, fuck:children() do v.Parent = LWing end
465
	end
466
	
467
	table.insert(LWingWelds,weld)
468
	table.insert(PrimaryParts,cr)
469
end
470
471
for i = 1, 6 do
472
	local cr = Part(Char,BrickColor.new'Black',Enum.Material.SmoothPlastic,V3.N(.05,.05,.05),CF.N(),false,false)
473
	cr.Transparency = 1
474
	local fuck = Feather:Clone();
475
	local men = fuck.Main
476
	--local mesh = Mesh(cr,Enum.MeshType.FileMesh,'rbxassetid://9756362','',V3.N(.75,2,.2),V3.N())
477
	local weld1 = Weld(cr,men)
478
	local weld = Weld(men,RWingHandle)
479
	
480
	if(i > 3)then
481
		for _,v in next, fuck:children() do v.Parent = RWingEXT if(v:IsA'BasePart')then v.Transparency = 1 end end
482
	else
483
		for _,v in next, fuck:children() do v.Parent = RWing if(v:IsA'BasePart')then v.Transparency = 1 end end
484
	end
485
	table.insert(RWingWelds,weld)
486
	table.insert(PrimaryParts,cr)
487
end
488
489
for _,v in next, PrimaryParts do
490
	if(v:IsA'BasePart')then
491
		v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
492
	end		
493
end
494
495
Core1.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
496
Core2.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
497
498
	
499
--// Stop animations \\--
500
for _,v in next, Hum:GetPlayingAnimationTracks() do
501
	v:Stop();
502
end
503
504
pcall(game.Destroy,Char:FindFirstChild'Animate')
505
pcall(game.Destroy,Hum:FindFirstChild'Animator')
506
507
--// Joints \\--
508
509
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)})
510
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)})
511
local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
512
local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
513
local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
514
local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
515
local HW = NewInstance('Motor',Char,{Part0=Torso,Part1=HaloHandle,C0=CF.N(0,1.5,1.5)*CF.A(M.R(90),0,0)}) 
516
local LWW = NewInstance('Motor',Char,{Part0=Torso,Part1=LWingHandle,C0=CF.N(0,0,1.5)}) 
517
local RWW = NewInstance('Motor',Char,{Part0=Torso,Part1=RWingHandle,C0=CF.N(0,0,1.5)}) 
518
519
local LSC0 = LS.C0
520
local RSC0 = RS.C0
521
local NKC0 = NK.C0
522
local LHC0 = LH.C0
523
local RHC0 = RH.C0
524
local RJC0 = RJ.C0
525
526
--// Artificial HB \\--
527
528
local ArtificialHB = IN("BindableEvent", script)
529
ArtificialHB.Name = "Heartbeat"
530
531
script:WaitForChild("Heartbeat")
532
533
local tf = 0
534
local allowframeloss = false
535
local tossremainder = false
536
local lastframe = tick()
537
local frame = 1/Frame_Speed
538
ArtificialHB:Fire()
539
540
game:GetService("RunService").Heartbeat:connect(function(s, p)
541
	tf = tf + s
542
	if tf >= frame then
543
		if allowframeloss then
544
			script.Heartbeat:Fire()
545
			lastframe = tick()
546
		else
547
			for i = 1, math.floor(tf / frame) do
548
				ArtificialHB:Fire()
549
			end
550
			lastframe = tick()
551
		end
552
		if tossremainder then
553
			tf = 0
554
		else
555
			tf = tf - frame * math.floor(tf / frame)
556
		end
557
	end
558
end)
559
560
function swait(num)
561
	if num == 0 or num == nil then
562
		ArtificialHB.Event:wait()
563
	else
564
		for i = 0, num do
565
			ArtificialHB.Event:wait()
566
		end
567
	end
568
end
569
570
571
--// Effect Function(s) \\--
572
573
function NoobySphere(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,MeshId)
574
	local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
575
	local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
576
	if(Mode == 6 or Mode == 4 or Mode == 696969)then
577
		fxP.Color = Core2.Color
578
	end
579
	local Scale = 1
580
	local speeder = Speed
581
	if(Type == "Multiply")then
582
		Scale = 1*Inc
583
	elseif(Type == "Divide")then
584
		Scale = 1/Inc
585
	end
586
	coroutine.wrap(function()
587
		for i = 0,10/Lifetime,.1 do
588
			if(Mode == 6 or Mode == 4 or Mode == 696969)then
589
				fxP.Color = Core2.Color
590
			end
591
			
592
			if(Type == "Multiply")then
593
				Scale = Scale - 0.01*Inc/Lifetime
594
			elseif(Type == "Divide")then
595
				Scale = Scale - 0.01/Inc*Lifetime
596
			end
597
			speeder = speeder - 0.01*Speed*Lifetime
598
			fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
599
			fxP.Transparency = fxP.Transparency + 0.01*Lifetime
600
			fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, 0)
601
			if(fxP.Transparency >= 1)then break end
602
			swait()
603
		end
604
		fxP:destroy()
605
	end)()
606
end
607
608
function NoobySphere2(Lifetime,Type,Pos,StartSize,Inc,Color,MeshId,NotAffect)
609
	local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos,true,false)
610
	local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
611
	if(not NotAffect and (Mode == 6 or Mode == 4 or Mode == 696969))then
612
		fxP.Color = Core2.Color
613
	end
614
	local Scale = 1
615
	if(Type == "Multiply")then
616
		Scale = 1*Inc
617
	elseif(Type == "Divide")then
618
		Scale = 1/Inc
619
	end
620
	coroutine.wrap(function()
621
		for i = 0,10/Lifetime,.1 do
622
		if(not NotAffect and (Mode == 6 or Mode == 4 or Mode == 696969))then
623
			fxP.Color = Core2.Color
624
		end
625
			
626
			if(Type == "Multiply")then
627
				Scale = Scale - 0.01*Inc/Lifetime
628
			elseif(Type == "Divide")then
629
				Scale = Scale - 0.01/Inc*Lifetime
630
			end
631
			fxP.Transparency = fxP.Transparency + 0.01*Lifetime
632
			fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
633
			swait()
634
		end
635
		fxP:destroy()
636
	end)()
637
	return fxP
638
end
639
640
function NoobyBlock(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,Fade,MeshId)
641
	local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
642
	local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Brick),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
643
	if(Mode == 6 or Mode == 4 or Mode == 696969)then
644
		fxP.Color = Core2.Color
645
	end
646
	local Scale = 1
647
	local speeder = Speed
648
	if(Type == "Multiply")then
649
		Scale = 1*Inc
650
	elseif(Type == "Divide")then
651
		Scale = 1/Inc
652
	end
653
	coroutine.wrap(function()
654
		for i = 0,10/Lifetime,.1 do
655
			if(Mode == 6 or Mode == 4 or Mode == 696969)then
656
				fxP.Color = Core2.Color
657
			end
658
			if(Type == "Multiply")then
659
				Scale = Scale - 0.01*Inc/Lifetime
660
			elseif(Type == "Divide")then
661
				Scale = Scale - 0.01/Inc*Lifetime
662
			end
663
			if(Fade)then
664
				fxP.Transparency = i/(10/Lifetime)
665
			end
666
			speeder = speeder - 0.01*Speed*Lifetime/10
667
			fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
668
			fxM.Scale = fxM.Scale - Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
669
			swait()
670
		end
671
		fxP:destroy()
672
	end)()
673
end
674
675
function Bezier(startpos, pos2, pos3, endpos, t)
676
	local A = startpos:lerp(pos2, t)
677
	local B  = pos2:lerp(pos3, t)
678
	local C = pos3:lerp(endpos, t)
679
	local lerp1 = A:lerp(B, t)
680
	local lerp2 = B:lerp(C, t)
681
	local cubic = lerp1:lerp(lerp2, t)
682
	return cubic
683
end
684
685
function SphereFX(duration,color,scale,pos,endScale,increment)
686
	return Effect{
687
		Effect='ResizeAndFade',
688
		Color=color,
689
		Size=scale,
690
		Mesh={MeshType=Enum.MeshType.Sphere},
691
		CFrame=pos,
692
		FXSettings={
693
			EndSize=endScale,
694
			EndIsIncrement=increment
695
		}
696
	}
697
end
698
699
function BlastFX(duration,color,scale,pos,endScale,increment)
700
	return Effect{
701
		Effect='ResizeAndFade',
702
		Color=color,
703
		Size=scale,
704
		Mesh={MeshType=Enum.MeshType.FileMesh,MeshId='rbxassetid://20329976'},
705
		CFrame=pos,
706
		FXSettings={
707
			EndSize=endScale,
708
			EndIsIncrement=increment
709
		}
710
	}
711
end
712
713
function BlockFX(duration,color,scale,pos,endScale,increment)
714
	return Effect{
715
		Effect='ResizeAndFade',
716
		Color=color,
717
		Size=scale,
718
		CFrame=pos,
719
		FXSettings={
720
			EndSize=endScale,
721
			EndIsIncrement=increment
722
		}
723
	}
724
end
725
726
function ShootBullet(data)
727
	--ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
728
	local Size = data.Size or V3.N(2,2,2)
729
	local Color = data.Color or BrickColor.new'Crimson'
730
	local StudsPerFrame = data.Speed or 10
731
	local Shape = data.Shape or 'Ball'
732
	local Frames = data.Frames or 160
733
	local Pos = data.Origin or Torso.CFrame
734
	local Direction = data.Direction or Mouse.Hit
735
	local Material = data.Material or Enum.Material.Neon
736
	local OnUpdate = data.Update or nil
737
	local OnHit = data.HitFunction or function(hit,pos)
738
		AOEDamage(pos,10,{MinimumDamage=25,MaximumDamage=60})
739
		Effect{
740
			Effect='ResizeAndFade',
741
			Color=Color,
742
			Size=V3.N(10,10,10),
743
			Material=Enum.Material.Neon,
744
			Mesh={MeshType=Enum.MeshType.Sphere},
745
			CFrame=CF.N(pos),
746
			FXSettings={
747
				EndSize=V3.N(.05,.05,.05),
748
				EndIsIncrement=true
749
			}
750
		}
751
		for i = 1, 5 do
752
			local angles = CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180))
753
			Effect{
754
				Effect='Fade',
755
				Frames=65,
756
				Size=V3.N(5,5,10),
757
				CFrame=CF.N(CF.N(pos)*angles*CF.N(0,0,-10).p,pos),
758
				Mesh = {MeshType=Enum.MeshType.Sphere},
759
				Material=Enum.Material.Neon,
760
				Color=Color,
761
				MoveDirection=CF.N(CF.N(pos)*angles*CF.N(0,0,-50).p,pos).p,
762
			}	
763
		end
764
	end	
765
	
766
	local Bullet = Part(Effects,Color,Material,Size,Pos,true,false)
767
	local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
768
	if(Shape == 'Ball')then
769
		BMesh.MeshType = Enum.MeshType.Sphere
770
	elseif(Shape == 'Head')then
771
		BMesh.MeshType = Enum.MeshType.Head
772
	elseif(Shape == 'Cylinder')then
773
		BMesh.MeshType = Enum.MeshType.Cylinder
774
	end
775
	
776
	coroutine.wrap(function()
777
		for i = 1, Frames+1 do
778
			if(OnUpdate and typeof(OnUpdate) == 'function')then
779
				OnUpdate(Bullet,BMesh,i)
780
			end
781
			local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame).p,StudsPerFrame)
782
			if(hit)then
783
				OnHit(hit,pos,norm,dist)
784
				break;
785
			else
786
				Bullet.CFrame = CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame)
787
			end
788
			swait()
789
		end
790
		Bullet:destroy()
791
	end)()
792
	
793
end
794
795
function Puddle(hit,pos,norm,data)
796
	local material = data.Material or Enum.Material.SmoothPlastic
797
	local color = data.Color or BrickColor.new'Crimson'
798
	local size = data.Size or 1
799
		
800
	if(hit.Name ~= 'BloodPuddle')then
801
		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'})
802
		local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
803
		BloodPuddles[Puddle] = 0
804
	else
805
		local cyl = hit:FindFirstChild'CylinderMesh'
806
		if(cyl)then
807
			BloodPuddles[hit] = 0
808
			cyl.Scale = cyl.Scale + V3.N(size,0,size)
809
			hit.Transparency = 0
810
		end
811
	end
812
end
813
814
function Droplet(data)
815
	--ShootBullet{Size=V3.N(3,3,3),Shape='Ball',Frames=160,Origin=data.Circle.CFrame,Speed=10}
816
	local Size = data.Size or 1
817
	local Color = data.Color or BrickColor.new'Crimson'
818
	local StudsPerFrame = data.Speed or 1
819
	local Shape = data.Shape or 'Ball'
820
	local Frames = (data.Frames or 160)+1
821
	local Pos = data.Origin or Root.CFrame
822
	local Direction = data.Direction or Root.CFrame.lookVector*100000
823
	local Material = data.Material or Enum.Material.SmoothPlastic
824
	local Drop = data.Drop or .05
825
	local Ignorelist = data.Ignorelist or nil
826
	
827
	local Bullet = Part(Effects,Color,Material,V3.N(Size,Size,Size),Pos,true,false)
828
	local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
829
	if(Shape == 'Ball')then
830
		BMesh.MeshType = Enum.MeshType.Sphere
831
	elseif(Shape == 'Head')then
832
		BMesh.MeshType = Enum.MeshType.Head
833
	elseif(Shape == 'Cylinder')then
834
		BMesh.MeshType = Enum.MeshType.Cylinder
835
	end
836
	
837
	coroutine.wrap(function()
838
		for i = 1, Frames do
839
			Pos = Pos * CF.N(0,-(Drop*i),0)
840
			local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i)).p,StudsPerFrame)
841
			if(hit and (not hit.Parent or not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent:IsA'Accessory'))then
842
				Puddle(hit,pos,norm,data)
843
				break;
844
			else
845
				Bullet.CFrame = CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i))
846
			end
847
			swait()
848
		end
849
		Bullet:destroy()
850
	end)()
851
end
852
853
function Zap(data)
854
	local sCF,eCF = data.StartCFrame,data.EndCFrame
855
	assert(sCF,"You need a start CFrame!")
856
	assert(eCF,"You need an end CFrame!")
857
	local parts = data.PartCount or 15
858
	local zapRot = data.ZapRotation or {-5,5}
859
	local startThick = data.StartSize or 3;
860
	local endThick = data.EndSize or startThick/2;
861
	local color = data.Color or BrickColor.new'Electric blue'
862
	local delay = data.Delay or 35
863
	local delayInc = data.DelayInc or 0
864
	local lastLightning;
865
	local MagZ = (sCF.p - eCF.p).magnitude
866
	local thick = startThick
867
	local inc = (startThick/parts)-(endThick/parts)
868
	
869
	for i = 1, parts do
870
		local pos = sCF.p
871
		if(lastLightning)then
872
			pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
873
		end
874
		delay = delay + delayInc
875
		local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
876
		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)))
877
		if(parts == i)then
878
			local MagZ = (pos-eCF.p).magnitude
879
			zapPart.Size = V3.N(endThick,endThick,MagZ)
880
			zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
881
			Effect{Effect='ResizeAndFade',Size=V3.N(thick,thick,thick),CFrame=eCF*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),Color=color,Frames=delay*2,FXSettings={EndSize=V3.N(thick*8,thick*8,thick*8)}}
882
		else
883
			zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
884
		end
885
		
886
		lastLightning = zapPart
887
		Effect{Effect='Fade',Manual=zapPart,Frames=delay}
888
		
889
		thick=thick-inc
890
		
891
	end
892
end
893
894
function Zap2(data)
895
	local Color = data.Color or BrickColor.new'Electric blue'
896
	local StartPos = data.Start or Torso.Position
897
	local EndPos = data.End or Mouse.Hit.p
898
	local SegLength = data.SegL or 2
899
	local Thicc = data.Thickness or 0.5
900
	local Fades = data.Fade or 45
901
	local Parent = data.Parent or Effects
902
	local MaxD = data.MaxDist or 200
903
	local Branch = data.Branches or false
904
	local Material = data.Material or Enum.Material.Neon
905
	local Raycasts = data.Raycasts or false
906
	local Offset = data.Offset or {0,360}
907
	local AddMesh = (data.Mesh == nil and true or data.Mesh)
908
	if((StartPos-EndPos).magnitude > MaxD)then
909
		EndPos = CF.N(StartPos,EndPos)*CF.N(0,0,-MaxD).p
910
	end
911
	local hit,pos,norm,dist=nil,EndPos,nil,(StartPos-EndPos).magnitude
912
	if(Raycasts)then
913
		hit,pos,norm,dist = CastRay(StartPos,EndPos,MaxD)	
914
	end
915
	local segments = dist/SegLength
916
	local model = IN("Model",Parent)
917
	model.Name = 'Lightning'
918
	local Last;
919
	for i = 1, segments do
920
		local size = (segments-i)/25
921
		local prt = Part(model,Color,Material,V3.N(Thicc+size,SegLength,Thicc+size),CF.N(),true,false)
922
		if(AddMesh)then IN("CylinderMesh",prt) end
923
		if(Last and math.floor(segments) == i)then
924
			local MagZ = (Last.CFrame*CF.N(0,-SegLength/2,0).p-EndPos).magnitude
925
			prt.Size = V3.N(Thicc+size,MagZ,Thicc+size)
926
			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)	
927
		elseif(not Last)then
928
			prt.CFrame = CF.N(StartPos,pos)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)	
929
		else
930
			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)
931
		end
932
		Last = prt
933
		if(Branch)then
934
			local choice = M.RNG(1,7+((segments-i)*2))
935
			if(choice == 1)then
936
				local LastB;
937
				for i2 = 1,M.RNG(2,5) do
938
					local size2 = ((segments-i)/35)/i2
939
					local prt = Part(model,Color,Material,V3.N(Thicc+size2,SegLength,Thicc+size2),CF.N(),true,false)
940
					if(AddMesh)then IN("CylinderMesh",prt) end
941
					if(not LastB)then
942
						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)
943
					else
944
						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)
945
					end
946
					LastB = prt
947
				end
948
			end
949
		end
950
	end
951
	if(Fades > 0)then
952
		coroutine.wrap(function()
953
			for i = 1, Fades do
954
				for _,v in next, model:children() do
955
					if(v:IsA'BasePart')then
956
						v.Transparency = (i/Fades)
957
					end
958
				end
959
				swait()
960
			end
961
			model:destroy()
962
		end)()
963
	else
964
		S.Debris:AddItem(model,.01)
965
	end
966
	return {End=(Last and Last.CFrame*CF.N(0,-Last.Size.Y/2,0).p),Last=Last,Model=model}
967
end
968
969
function Tween(obj,props,time,easing,direction,repeats,backwards)
970
	local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
971
	local tween = S.TweenService:Create(obj, info, props)
972
	
973
	tween:Play()
974
end
975
976
function Effect(data)
977
	local FX = data.Effect or 'ResizeAndFade'
978
	local Parent = data.Parent or Effects
979
	local Color = data.Color or C3.N(0,0,0)
980
	local Size = data.Size or V3.N(1,1,1)
981
	local MoveDir = data.MoveDirection or nil
982
	local MeshData = data.Mesh or nil
983
	local SndData = data.Sound or nil
984
	local Frames = data.Frames or 45
985
	local Manual = data.Manual or nil
986
	local Material = data.Material or nil
987
	local CFra = data.CFrame or Torso.CFrame
988
	local Settings = data.FXSettings or {}
989
	local Shape = data.Shape or Enum.PartType.Block
990
	local Snd,Prt,Msh;
991
	local RotInc = data.RotInc or {0,0,0}
992
	if(typeof(RotInc) == 'number')then
993
		RotInc = {RotInc,RotInc,RotInc}
994
	end
995
	coroutine.wrap(function()
996
		if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
997
			Prt = Manual
998
		else
999
			Prt = Part(Parent,Color,Material,Size,CFra,true,false)
1000
			Prt.Shape = Shape
1001
		end
1002
		if(typeof(MeshData) == 'table')then
1003
			Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
1004
		elseif(typeof(MeshData) == 'Instance')then
1005
			Msh = MeshData:Clone()
1006
			Msh.Parent = Prt
1007
		elseif(Shape == Enum.PartType.Block)then
1008
			Msh = Mesh(Prt,Enum.MeshType.Brick)
1009
		end
1010
		if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
1011
			Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
1012
		end
1013
		if(Snd)then
1014
			repeat swait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
1015
			Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
1016
		end
1017
		Size = (Msh and Msh.Scale or Size)
1018
		local grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
1019
		
1020
		local MoveSpeed = nil;
1021
		if(MoveDir)then
1022
			MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
1023
		end
1024
		if(FX ~= 'Arc')then
1025
			for Frame = 1, Frames do
1026
				if(FX == "Fade")then
1027
					Prt.Transparency  = (Frame/Frames)
1028
				elseif(FX == "Resize")then
1029
					if(not Settings.EndSize)then
1030
						Settings.EndSize = V3.N(0,0,0)
1031
					end
1032
					if(Settings.EndIsIncrement)then
1033
						if(Msh)then
1034
							Msh.Scale = Msh.Scale + Settings.EndSize
1035
						else
1036
							Prt.Size = Prt.Size + Settings.EndSize
1037
						end					
1038
					else
1039
						if(Msh)then
1040
							Msh.Scale = Msh.Scale - grow/Frames
1041
						else
1042
							Prt.Size = Prt.Size - grow/Frames
1043
						end
1044
					end 
1045
				elseif(FX == "ResizeAndFade")then
1046
					if(not Settings.EndSize)then
1047
						Settings.EndSize = V3.N(0,0,0)
1048
					end
1049
					if(Settings.EndIsIncrement)then
1050
						if(Msh)then
1051
							Msh.Scale = Msh.Scale + Settings.EndSize
1052
						else
1053
							Prt.Size = Prt.Size + Settings.EndSize
1054
						end					
1055
					else
1056
						if(Msh)then
1057
							Msh.Scale = Msh.Scale - grow/Frames
1058
						else
1059
							Prt.Size = Prt.Size - grow/Frames
1060
						end
1061
					end 
1062
					Prt.Transparency = (Frame/Frames)
1063
				end
1064
				if(Settings.RandomizeCFrame)then
1065
					Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
1066
				else
1067
					Prt.CFrame = Prt.CFrame * CF.A(unpack(RotInc))
1068
				end
1069
				if(MoveDir and MoveSpeed)then
1070
					local Orientation = Prt.Orientation
1071
					Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
1072
					Prt.Orientation = Orientation
1073
				end
1074
				swait()
1075
			end
1076
			Prt:destroy()
1077
		else
1078
			local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
1079
			if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
1080
			if(start and endP)then
1081
				local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
1082
				local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
1083
				for Frame = 0, 1, (Settings.Speed or 0.01) do
1084
					if(Settings.Home)then
1085
						endP = Settings.Home.CFrame
1086
					end
1087
					Prt.CFrame = Bezier(start, quarter, threequarter, endP, Frame)
1088
				end
1089
				if(Settings.RemoveOnGoal)then
1090
					Prt:destroy()
1091
				end
1092
			else
1093
				Prt:destroy()
1094
				assert(start,"You need a start position!")
1095
				assert(endP,"You need a start position!")
1096
			end
1097
		end
1098
	end)()
1099
	return Prt,Msh,Snd
1100
end
1101
1102
1103
function SoulSteal(whom)
1104
	local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
1105
	print(torso)
1106
	if(torso and torso:IsA'BasePart')then
1107
		local Model = Instance.new("Model",Effects)
1108
		Model.Name = whom.Name.."'s Soul"
1109
		whom:BreakJoints()
1110
		local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
1111
		Soul.Name = 'Head'
1112
		NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
1113
		Effect{
1114
			Effect="Arc",
1115
			Manual = Soul,
1116
			FXSettings={
1117
				Start=torso.CFrame,
1118
				Home = Torso,
1119
				RemoveOnGoal = true,
1120
			}
1121
		}
1122
		local lastPoint = Soul.CFrame.p
1123
	
1124
		for i = 0, 1, 0.01 do 
1125
				local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
1126
				local mag = (lastPoint - Soul.Position).magnitude
1127
				Effect{
1128
					Effect = "Fade",
1129
					CFrame = point * CF.N(0, mag/2, 0),
1130
					Size = V3.N(.5,mag+.5,.5),
1131
					Color = Soul.BrickColor
1132
				}
1133
				lastPoint = Soul.CFrame.p
1134
			swait()
1135
		end
1136
		for i = 1, 5 do
1137
			Effect{
1138
				Effect="Fade",
1139
				Color = BrickColor.new'Really red',
1140
				MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
1141
			}	
1142
		end
1143
	end
1144
end
1145
1146
--// Other Functions \\ --
1147
1148
function CastRay(startPos,endPos,range,ignoreList)
1149
	local ray = Ray.new(startPos,(endPos-startPos).unit*range)
1150
	local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
1151
	return part,pos,norm,(pos and (startPos-pos).magnitude)
1152
end
1153
1154
function getRegion(point,range,ignore)
1155
    return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
1156
end
1157
1158
function clerp(startCF,endCF,alpha)
1159
	return startCF:lerp(endCF, alpha)
1160
end
1161
1162
function GetTorso(char)
1163
	return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
1164
end
1165
1166
1167
function ShowDamage(Pos, Text, Time, Color)
1168
	coroutine.wrap(function()
1169
	local Rate = (1 / Frame_Speed)
1170
	local Pos = (Pos or Vector3.new(0, 0, 0))
1171
	local Text = (Text or "")
1172
	local Time = (Time or 2)
1173
	local Color = (Color or Color3.new(1, 0, 1))
1174
	local EffectPart = NewInstance("Part",Effects,{
1175
		Material=Enum.Material.SmoothPlastic,
1176
		Reflectance = 0,
1177
		Transparency = 1,
1178
		BrickColor = BrickColor.new(Color),
1179
		Name = "Effect",
1180
		Size = Vector3.new(0,0,0),
1181
		Anchored = true,
1182
		CFrame = CF.N(Pos)
1183
	})
1184
	local BillboardGui = NewInstance("BillboardGui",EffectPart,{
1185
		Size = UDim2.new(1.25, 0, 1.25, 0),
1186
		Adornee = EffectPart,
1187
	})
1188
	local TextLabel = NewInstance("TextLabel",BillboardGui,{
1189
		BackgroundTransparency = 1,
1190
		Size = UDim2.new(1, 0, 1, 0),
1191
		Text = Text,
1192
		Font = "Bodoni",
1193
		TextColor3 = Color,
1194
		TextStrokeColor3 = Color3.new(0,0,0),
1195
		TextStrokeTransparency=0,
1196
		TextScaled = true,
1197
	})
1198
	S.Debris:AddItem(EffectPart, (Time))
1199
	EffectPart.Parent = workspace
1200
	delay(0, function()
1201
		Tween(EffectPart,{CFrame=CF.N(Pos)*CF.N(0,3,0)},Time,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
1202
		local Frames = (Time / Rate)
1203
		for Frame = 1, Frames do
1204
			swait()
1205
			local Percent = (Frame / Frames)
1206
			TextLabel.TextTransparency = Percent
1207
			TextLabel.TextStrokeTransparency = Percent
1208
		end
1209
		if EffectPart and EffectPart.Parent then
1210
			EffectPart:Destroy()
1211
		end
1212
	end) end)()
1213
end
1214
1215
1216
function DealDamage(data)
1217
	local Who = data.Who;
1218
	local MinDam = data.MinimumDamage or 15;
1219
	local MaxDam = data.MaximumDamage or 30;
1220
	local MaxHP = data.MaxHP or 1e5; 
1221
	
1222
	local DB = data.Debounce or .2;
1223
	
1224
	local CritData = data.Crit or {}
1225
	local CritChance = CritData.Chance or 0;
1226
	local CritMultiplier = CritData.Multiplier or 1;
1227
	
1228
	local DamageEffects = data.DamageFX or {}
1229
	local DamageType = DamageEffects.Type or "Normal"
1230
	local DeathFunction = DamageEffects.DeathFunction
1231
	
1232
	assert(Who,"Specify someone to damage!")	
1233
	
1234
	local Humanoid = Who:FindFirstChildOfClass'Humanoid'
1235
	local DoneDamage = M.RNG(MinDam,MaxDam) * (M.RNG(1,100) <= CritChance and CritMultiplier or 1)
1236
	
1237
	local canHit = true
1238
	if(Humanoid)then
1239
		for _, p in pairs(Hit) do
1240
			if p[1] == Humanoid then
1241
				if(time() - p[2] <= DB) then
1242
					canHit = false
1243
				else
1244
					Hit[_] = nil
1245
				end
1246
			end
1247
		end
1248
		if(canHit)then
1249
			table.insert(Hit,{Humanoid,time()})
1250
			local HitTorso = GetTorso(Who)
1251
			local player = S.Players:GetPlayerFromCharacter(Who)
1252
			if(not player or not DontAttackPlayers and player.UserId ~= 5719877 and player.UserId ~= 61573184 and player.UserId ~= 19081129)then
1253
				if(Humanoid.MaxHealth >= MaxHP and Humanoid.Health > 0)then
1254
					print'Got kill'
1255
					Humanoid.Health = 0;
1256
					Who:BreakJoints();
1257
					if(DeathFunction)then DeathFunction(Who,Humanoid) end
1258
				else
1259
					local  c = Instance.new("ObjectValue",Hum)
1260
					c.Name = "creator"
1261
					c.Value = Plr
1262
					S.Debris:AddItem(c,0.35)
1263
					if(Humanoid.Health > 0)then	
1264
						if(Mode == 9 and not Radioactive[Who])then
1265
							Radioactive[Who] = {0,M.RNG(time()+4,time()+14)}
1266
						end
1267
						if(Who:FindFirstChild'Head')then
1268
							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)
1269
						end
1270
						if(Humanoid.Health-DoneDamage <= 0)then print'Got kill' if(DeathFunction)then DeathFunction(Who,Humanoid) end end
1271
						Humanoid.Health = Humanoid.Health - DoneDamage
1272
					end
1273
					
1274
					if(DamageType == 'Knockback' and HitTorso)then
1275
						local up = DamageEffects.KnockUp or 25
1276
						local back = DamageEffects.KnockBack or 25
1277
						local origin = DamageEffects.Origin or Root
1278
						local decay = DamageEffects.Decay or .5;
1279
						
1280
						local bfos = Instance.new("BodyVelocity",HitTorso)
1281
						bfos.P = 20000	
1282
						bfos.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
1283
						bfos.Velocity = Vector3.new(0,up,0) + (origin.CFrame.lookVector * back)
1284
						S.Debris:AddItem(bfos,decay)
1285
					end
1286
				end
1287
			end
1288
		end
1289
	end		
1290
end
1291
1292
function AOEDamage(where,range,options)
1293
	local hit = {}
1294
	for _,v in next, getRegion(where,range,{Char}) do
1295
		if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' and not hit[v.Parent])then
1296
			local callTable = {Who=v.Parent}
1297
			hit[v.Parent] = true
1298
			for _,v in next, options do callTable[_] = v end
1299
			DealDamage(callTable)
1300
		end
1301
	end
1302
	return hit
1303
end
1304
1305
function AOEHeal(where,range,amount)
1306
	local healed = {}
1307
	for _,v in next, getRegion(where,range,{Char}) do
1308
		local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
1309
		if(hum and not healed[hum])then
1310
			hum.Health = hum.Health + amount
1311
			if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
1312
				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)
1313
			end
1314
		end
1315
	end
1316
end
1317
1318
--// Chat Function \\--
1319
1320
function Chat(text,color)
1321
	coroutine.wrap(function()
1322
		if(Char:FindFirstChild'ChatGUI')then Char.ChatGUI:destroy() end
1323
		local BBG = NewInstance("BillboardGui",Char,{Name='ChatGUI',Size=UDim2.new(0,100,0,40),StudsOffset=V3.N(0,3,0),Adornee=Head})
1324
		local offset = 0;
1325
		local xsize = 0;
1326
		for i = 1, #text do
1327
			offset = offset - 16
1328
			xsize = xsize + 32 	
1329
			delay(i/25, function()
1330
				local Txt = NewInstance("TextLabel",BBG,{Text = text:sub(i,i),Position=UDim2.new(0,0,0,300),BackgroundTransparency=1,TextColor3=(typeof(color) == 'string' and color:lower() == 'rainbow' and C3.HSV(Hue/360,1,1)) or color or Core2.Color,BorderSizePixel=0,Font=Enum.Font.Garamond,TextSize=40,TextStrokeTransparency=1,Size=UDim2.new(1,0,.5,0)})
1331
				offset = offset + 32
1332
				if(Txt.Parent)then Txt:TweenPosition(UDim2.new(0,offset,0,0),Enum.EasingDirection.Out,Enum.EasingStyle.Elastic,1) end
1333
			end)
1334
		end
1335
		BBG.Size = UDim2.new(0,xsize,0,40)
1336
		delay((#text/25)+3, function()
1337
			for _,v in next, BBG:children() do
1338
				v:TweenPosition(UDim2.new(0,0,0,0),Enum.EasingDirection.In,Enum.EasingStyle.Linear,1)
1339
			end
1340
			wait(1.15)
1341
			BBG:destroy()
1342
		end)
1343
	end)()
1344
end
1345
1346
1347
--// Everything else \\--
1348
1349
function ClickGlitch()
1350
	Attack = true
1351
	NeutralAnims = false
1352
	local oWS = WalkSpeed
1353
	WalkSpeed = 0
1354
	Hum.JumpPower = 0
1355
	Hum.AutoRotate = false
1356
	Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
1357
	for i = 0, 2, 0.1 do
1358
		swait()
1359
		local Alpha = .3
1360
		Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
1361
		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)
1362
		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)
1363
		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)
1364
		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)
1365
		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)
1366
		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)
1367
	end
1368
	Sound(LArm,217767125,M.RNG(75,125)/100,10,false,true,true)
1369
	Effect{
1370
		Effect='Fade',
1371
		Size=V3.N(1,1,1),
1372
		CFrame=LArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(0,360),M.RRNG(0,360),M.RRNG(0,360)),
1373
		Color=Core2.Color,
1374
		Material=Enum.Material.Neon,
1375
		FXSettings = {
1376
			RandomizeCFrame=true
1377
		}
1378
	}
1379
	coroutine.wrap(function()
1380
		local MousePos = Mouse.Hit
1381
		local effect = Part(Effects,Core2.Color,Enum.Material.Neon,V3.N(2.5,2.5,2.5),MousePos,true,false)
1382
		for i = 0, 6, .1 do
1383
			effect.Color = Core2.Color
1384
			MousePos = MousePos * CF.N(M.RNG(-15,15)/100,M.RNG(-15,15)/100,M.RNG(-15,15)/100)
1385
			effect.CFrame = MousePos*CF.A(M.RRNG(0,360),M.RRNG(0,360),M.RRNG(0,360))
1386
			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)
1387
			swait()
1388
		end
1389
		AOEDamage(MousePos.p,30,{MinimumDamage=30,MaximumDamage=75})
1390
		for i = 0, 3, .1 do
1391
			effect.Color = Core2.Color
1392
			effect.CFrame = MousePos*CF.A(M.RRNG(0,360),M.RRNG(0,360),M.RRNG(0,360))
1393
			effect.Size = effect.Size + V3.N(1,1,1)
1394
			effect.Transparency = i/3
1395
			swait()
1396
		end
1397
		effect:destroy()
1398
		
1399
	end)()
1400
	for i = 0, 1, 0.1 do
1401
		swait()
1402
		local Alpha = .3
1403
		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)
1404
		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)
1405
		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)
1406
		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)
1407
		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)
1408
		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)
1409
	end
1410
	for i = 0, 1, 0.1 do
1411
		swait()
1412
		local Alpha = .3
1413
		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)
1414
		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)
1415
		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)
1416
		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)
1417
		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)
1418
		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)
1419
	end
1420
	WalkSpeed = oWS
1421
	Hum.JumpPower = 50
1422
	Hum.AutoRotate = true
1423
	Attack = false
1424
	NeutralAnims = true
1425
end
1426
1427
function PureBomb()
1428
	Attack = true
1429
	NeutralAnims = false
1430
	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)
1431
	local orbM = Mesh(orb,Enum.MeshType.Sphere,"","",V3.N(.1,.1,.1))
1432
	local Scale = 0.1
1433
	local Pos = 0
1434
	Hum.AutoRotate = false
1435
	Sound(orb,136007472,1,5,false,true,true)
1436
	for i = 0, 10, 0.1 do
1437
		Scale = Scale + .05
1438
		orb.CFrame = RArm.CFrame*CF.N(0,-0.5-(Scale/1.5),0)
1439
		Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
1440
		orbM.Scale = V3.N(Scale,Scale,Scale)
1441
		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)
1442
		swait()
1443
		local Alpha = .3
1444
		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)
1445
		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)
1446
		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)
1447
		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)
1448
		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)
1449
		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)
1450
	end
1451
	for i = 0, 2, 0.1 do
1452
		swait()
1453
		orb.CFrame = RArm.CFrame*CF.N(0,-0.5-(Scale/1.5),0)
1454
		Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
1455
		local Alpha = .3
1456
		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)
1457
		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)
1458
		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)
1459
		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)
1460
		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)
1461
		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)
1462
	end
1463
	Sound(Root,260433768,1,5.25,false,true,true)
1464
	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)
1465
		local snd, part = SoundPart(151304356,1,5.25,false,true,true,CF.N(pos))
1466
		AOEDamage(pos,Scale*4,{MinimumDamage=25,MaximumDamage=60})
1467
		Effect{
1468
			Effect='ResizeAndFade',
1469
			Color=BrickColor.new'Baby blue',
1470
			Size=V3.N(Scale*2,Scale*2,Scale*2),
1471
			Material=Enum.Material.Neon,
1472
			Mesh={MeshType=Enum.MeshType.Sphere},
1473
			CFrame=CF.N(pos),
1474
			FXSettings={
1475
				EndSize=V3.N(.1,.1,.1),
1476
				EndIsIncrement=true
1477
			}
1478
		}
1479
		Effect{
1480
			Effect='ResizeAndFade',
1481
			Color=BrickColor.new'Pastel light blue',
1482
			Size=V3.N(Scale*1.5,Scale*1.5,Scale*1.5),
1483
			Material=Enum.Material.Neon,
1484
			Mesh={MeshType=Enum.MeshType.Sphere},
1485
			CFrame=CF.N(pos),
1486
			FXSettings={
1487
				EndSize=V3.N(.1,.1,.1),
1488
				EndIsIncrement=true
1489
			}
1490
		}
1491
		for i = 0, 49 do
1492
			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)
1493
		end
1494
		for i = 0, 9 do
1495
			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)
1496
			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)
1497
		end
1498
	end}
1499
	orb:destroy()
1500
	for i = 0, 1, 0.1 do
1501
		swait()
1502
		Root.CFrame = CF.N(Root.CFrame.p,CF.N(Mouse.Hit.x,Root.CFrame.y,Mouse.Hit.z).p)
1503
		local Alpha = .3
1504
		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)
1505
		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)
1506
		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)
1507
		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)
1508
		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)
1509
		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)
1510
	end
1511
	
1512
	Hum.AutoRotate = true
1513
	
1514
	Attack = false
1515
	NeutralAnims = true
1516
end
1517
1518
function Aeroplane()
1519
	Attack = true
1520
	NeutralAnims = false
1521
	NoobySphere2(3,'Multiply',Root.CFrame,V3.N(2,2,2),.5,BrickColor.new'White')
1522
	local rad = 0
1523
	for i = 0, 3, 0.1 do
1524
		AOEDamage(Root.CFrame.p,4,{MinimumDamage=15,MaximumDamage=30})
1525
		swait()
1526
		Root.Velocity = Root.CFrame.lookVector*(350-(i*66))
1527
		local Alpha = .3
1528
		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)
1529
		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)
1530
		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)
1531
		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)
1532
		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)
1533
		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)
1534
	end
1535
	for i = 0, 18, 0.1 do
1536
		AOEDamage(Root.CFrame.p,4,{MinimumDamage=15,MaximumDamage=30})
1537
		swait()
1538
		rad = rad + .1
1539
		local Alpha = .3
1540
		Root.Velocity = Root.CFrame.lookVector*150
1541
		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)
1542
		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)
1543
		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)
1544
		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)
1545
		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)
1546
		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)
1547
	end
1548
	Attack = false
1549
	NeutralAnims = true
1550
end
1551
1552
function Shrek()
1553
	Attack = true
1554
	NeutralAnims = false
1555
	local oWS = WalkSpeed
1556
	for i = 0, 2, 0.1 do
1557
		swait()
1558
		local Alpha = .3
1559
		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)
1560
		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)
1561
		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)
1562
		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)
1563
		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)
1564
		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)
1565
	end
1566
	WalkSpeed = 0
1567
	Sound(Head,368794903,1.2,10,false,true,true)
1568
	local wo = IN("Model",Effects)
1569
	
1570
	for i = 1, 3 do
1571
		local wat = 12.5+(i*2)
1572
		local screamPart = Part(wo,BrickColor.new'Pearl',Enum.Material.Neon,V3.N(1,1,1),Head.CFrame,false,false)
1573
		screamPart.Transparency = .6+(i/10)
1574
		Mesh(screamPart,Enum.MeshType.Sphere,"","",V3.N(wat,wat,wat))
1575
		Weld(screamPart,Torso)
1576
	end
1577
	
1578
	for i = 0, 8, 0.1 do
1579
		swait()
1580
		AOEDamage(Torso.CFrame.p,20,{
1581
			MinimumDamage=5,
1582
			MaximumDamage=10
1583
		})
1584
		local Alpha = .3
1585
		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)
1586
		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)
1587
		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)
1588
		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)
1589
		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)
1590
		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)
1591
	end
1592
	wo:breakJoints()
1593
	wo:destroy()
1594
	WalkSpeed = oWS
1595
	Attack = false
1596
	NeutralAnims = true
1597
end
1598
1599
function NeckSnap(target)
1600
	if(target)then
1601
		local torso = GetTorso(target)
1602
		local hum = target:FindFirstChildOfClass'Humanoid'
1603
		local hed = target:FindFirstChild'Head'
1604
		if(torso and hum and hum.Health > 0 and hed)then
1605
			local oWS = WalkSpeed
1606
			local oPar = target.Parent
1607
			local originalpos = Root.CFrame
1608
			WalkSpeed = 0
1609
			Hum.JumpPower = 0
1610
			Attack = true
1611
			NeutralAnims = false
1612
			Root.Anchored = true
1613
			torso.Anchored = true
1614
			target.Parent = Char
1615
			Hum.AutoRotate = false
1616
			Root.CFrame = torso.CFrame*CF.N(-0.54454422, 0, 0.987496376)
1617
			for _,v in next, torso:children() do
1618
				if(v:IsA'JointInstance' and (v.Part0 == hed or v.Part1 == hed))then
1619
					v:destroy()
1620
				end
1621
			end
1622
			hed:breakJoints()
1623
			local weld = NewInstance('Motor',torso,{Part0=hed,Part1=torso,C0=CF.N(0,-1.5,0)})
1624
			for i = 0, 1, 0.1 do
1625
				swait()
1626
				local Alpha = .3
1627
				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)
1628
				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)
1629
				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)
1630
				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)
1631
				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)
1632
				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)
1633
			end
1634
			Sound(hed,1093102664,1,5,false,true,true)
1635
			for i = 0, 1.3, 0.1 do
1636
				swait()
1637
				local Alpha = .3
1638
				weld.C0 = weld.C0:lerp(CF.N(0,-1.5,0)*CF.A(0,M.R(-90),0),Alpha)
1639
				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)
1640
				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)
1641
				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)
1642
				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)
1643
				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)
1644
				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)
1645
			end
1646
			target.Parent = oPar
1647
			target:breakJoints()
1648
			WalkSpeed = oWS
1649
			Hum.JumpPower = 50
1650
			Hum.AutoRotate = true
1651
			Root.Anchored = false
1652
			torso.Anchored = false
1653
			Attack = false
1654
			NeutralAnims = true
1655
		end
1656
	end
1657
end
1658
1659
function AttackOne()
1660
	Attack = true
1661
	NeutralAnims = false
1662
	for i = 0, .7, 0.1 do
1663
		swait()
1664
		local Alpha = .3
1665
		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)
1666
		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)
1667
		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)
1668
		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)
1669
		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)
1670
		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)
1671
	end
1672
	Sound(RArm,200632136,1.1,5,false,true,true)
1673
	for i = 0, .9, 0.1 do
1674
		swait()
1675
		local Alpha = .3
1676
		AOEDamage(RArm.CFrame.p,2,{MinimumDamage=10,MaximumDamage=30})
1677
		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)
1678
		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)
1679
		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)
1680
		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)
1681
		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)
1682
		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)
1683
	end
1684
	Combo = 2
1685
	Attack = false
1686
	NeutralAnims = true
1687
end
1688
1689
function AttackTwo()
1690
	Attack = true
1691
	NeutralAnims = false
1692
	for i = 0, 1, 0.1 do
1693
		swait()
1694
		local Alpha = .3
1695
		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)
1696
		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)
1697
		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)
1698
		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)
1699
		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)
1700
		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)
1701
	end	
1702
	Sound(LArm,200632136,.9,5,false,true,true)
1703
	for i = 0, 1, 0.1 do
1704
		swait()
1705
		local Alpha = .3
1706
		AOEDamage(LArm.CFrame.p,2,{MinimumDamage=10,MaximumDamage=30})
1707
		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)
1708
		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)
1709
		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)
1710
		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)
1711
		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)
1712
		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)
1713
	end
1714
	Combo = 3
1715
	Attack = false
1716
	NeutralAnims = true
1717
end
1718
1719
function AttackThree()
1720
	Attack = true
1721
	NeutralAnims = false
1722
	for i = 0, 1, 0.1 do
1723
		swait()
1724
		local Alpha = .3
1725
		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)
1726
		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)
1727
		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)
1728
		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)
1729
		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)
1730
		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)
1731
	end
1732
	--for a = 1, 3 do
1733
	local a = 2
1734
	coroutine.wrap(function()
1735
		for i = 5,45,10 do
1736
			local hite = Instance.new("Part",Char)
1737
			hite.Anchored = true
1738
			hite.CanCollide = false
1739
			hite.Material = "Neon"
1740
			hite.Size = V3.N(1, 1, 1)
1741
			hite.Transparency = 1
1742
			hite.CFrame = (Root.CFrame + Root.CFrame.lookVector)*CF.A(0,M.R(90+(a*45)),0)*CF.N(0,0,i)
1743
			CamShakeAOE(hite.CFrame.p,10,30,250)
1744
			NoobySphere2(3,'Multiply',hite.CFrame,V3.N(0,0,0),.15,Core2.Color)
1745
			NoobySphere2(6,'Multiply',hite.CFrame,V3.N(0,0,0),.3,Core2.Color)
1746
			for i = 1, 2 do
1747
				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)			
1748
			end
1749
			for i = 1, 5 do
1750
				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)
1751
			end
1752
			AOEDamage(hite.CFrame.p,10,{MinimumDamage=25,MaximumDamage=45})
1753
			Sound(hite,183763506,1,5,false,true,true)
1754
			S.Debris:AddItem(hite,2)
1755
			swait()
1756
		end
1757
	end)()
1758
	--end
1759
	for i = 0, 1, 0.1 do
1760
		swait()
1761
		local Alpha = .3
1762
		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)
1763
		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)
1764
		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)
1765
		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)
1766
		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)
1767
		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)
1768
	end
1769
	Combo = 1
1770
	Attack = false
1771
	NeutralAnims = true
1772
end
1773
1774
1775
local WingSine = 0
1776
local WingChange = 1
1777
1778
function SolitudeMode()
1779
	Attack = true
1780
	NeutralAnims = false
1781
	local Sin = 0
1782
	MusicID = 1564523997
1783
	Pitch = 1
1784
	WalkSpeed = 0
1785
	Sound(Core2,136007472,1.25,2.5,false,true,true)
1786
	for i = 0, 4, 0.1 do
1787
		swait()
1788
		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)
1789
		Sin = Sin + 5
1790
		local Alpha = .1
1791
		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)
1792
		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)
1793
		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)
1794
		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)
1795
		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)
1796
		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)
1797
	end
1798
	for _,v in next, LWing:children() do
1799
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Black' end
1800
	end
1801
	for _,v in next, RWing:children() do
1802
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Black' end
1803
	end
1804
	for _,v in next, LWingEXT:children() do
1805
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Black' end
1806
	end
1807
	for _,v in next, RWingEXT:children() do
1808
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Black' end
1809
	end
1810
	for _,v in next, Halo:children() do
1811
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Black' end
1812
	end
1813
	pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,0,0) end)
1814
	pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,0,0) end)
1815
	WalkSpeed = 16
1816
	Mode = 1
1817
	Core2.BrickColor = BrickColor.new'Black'
1818
	Core2.Material = Enum.Material.Neon
1819
	Sound(Root,"206082327",1,2.5,false,true,true)
1820
	Sound(Root,"847061203",1,5,false,true,true)
1821
	Sound(Root,"239000203",1,2.5,false,true,true)
1822
	Sound(Root,"579687077",.75,2.5,false,true,true)
1823
	RecolorTextAndRename("Solitude",Color3.new(0,0,0),Color3.new(1,1,1))
1824
	NoobySphere2(2.5,'Multiply',Core2.CFrame,V3.N(0,0,0),1,Core2.BrickColor)
1825
	for i = 1, 24 do
1826
		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)
1827
	end
1828
	for i = 0, 15 do
1829
		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)
1830
	end
1831
	for i = 0, 1.4, 0.1 do
1832
		swait()
1833
		local Alpha = .3
1834
		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)
1835
		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)
1836
		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)
1837
		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)
1838
		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)
1839
		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)
1840
	end
1841
	Attack = false
1842
	NeutralAnims = true
1843
end
1844
1845
function PureMode()
1846
	for _,v in next, LWing:children() do
1847
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Pastel Blue' end
1848
	end
1849
	for _,v in next, RWing:children() do
1850
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel Blue' end
1851
	end
1852
	for _,v in next, LWingEXT:children() do
1853
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel Blue' end
1854
	end
1855
	for _,v in next, RWingEXT:children() do
1856
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Pastel Blue' end
1857
	end
1858
	for _,v in next, Halo:children() do
1859
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Pastel Blue' end
1860
	end
1861
	WalkSpeed = 16
1862
	pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(0,1,1) end)
1863
	pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(0,1,1) end)
1864
	RecolorTextAndRename("Clarity",C3.N(1,1,1),BrickColor.new'Pastel Blue'.Color)
1865
	MusicID = 1539245059
1866
	Pitch = 1
1867
	Mode = 2
1868
	Core2.BrickColor = BrickColor.new'Pastel Blue'	
1869
	Core2.Material = Enum.Material.Neon
1870
end
1871
1872
function GlitchMode()
1873
	for _,v in next, LWing:children() do
1874
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 0 v.BrickColor = BrickColor.new'White' end
1875
	end
1876
	for _,v in next, RWing:children() do
1877
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 1 v.BrickColor = BrickColor.new'White' end
1878
	end
1879
	for _,v in next, LWingEXT:children() do
1880
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 1 v.BrickColor = BrickColor.new'White' end
1881
	end
1882
	for _,v in next, RWingEXT:children() do
1883
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.DiamondPlate v.Transparency = 1 v.BrickColor = BrickColor.new'White' end
1884
	end
1885
	for _,v in next, Halo:children() do
1886
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'White' end
1887
	end
1888
	pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,1,1) end)
1889
	pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,1,1) end)
1890
	WalkSpeed = 16
1891
	RecolorTextAndRename("Glitchy",C3.N(1,1,1),C3.N(1,1,1))
1892
	MusicID = 1274310715
1893
	Pitch = .93
1894
	Mode = 3
1895
	Core2.BrickColor = BrickColor.new'Dark stone grey'
1896
	Core2.Material = Enum.Material.DiamondPlate	
1897
end	
1898
1899
function StressMode()
1900
	for _,v in next, LWing:children() do
1901
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .25 v.BrickColor = BrickColor.new'Crimson' end
1902
	end
1903
	for _,v in next, RWing:children() do
1904
		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
1905
	end
1906
	for _,v in next, LWingEXT:children() do
1907
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Crimson' end
1908
	end
1909
	for _,v in next, RWingEXT:children() do
1910
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Crimson' end
1911
	end
1912
	for _,v in next, Halo:children() do
1913
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Crimson' end
1914
	end
1915
	WalkSpeed = 14
1916
	RecolorTextAndRename("Stress",C3.N(.6,0,0),C3.N(0,0,0))
1917
	MusicID = 614032233
1918
	Pitch = 1
1919
	Mode = 4
1920
	Core2.BrickColor = BrickColor.new'Really red'
1921
	Core2.Material = Enum.Material.Neon	
1922
end	
1923
1924
function JusticeMode()
1925
	for _,v in next, LWing:children() do
1926
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Institutional white' end
1927
	end
1928
	for _,v in next, RWing:children() do
1929
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Institutional white' end
1930
	end
1931
	for _,v in next, LWingEXT:children() do
1932
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Institutional white' end
1933
	end
1934
	for _,v in next, RWingEXT:children() do
1935
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 1 v.BrickColor = BrickColor.new'Institutional white' end
1936
	end
1937
	for _,v in next, Halo:children() do
1938
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Institutional white' end
1939
	end
1940
	pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(1,1,1) end)
1941
	pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(1,1,1) end)
1942
	WalkSpeed = 50
1943
	RecolorTextAndRename("Justice",C3.N(1,1,1),C3.N(0,0,0))
1944
	MusicID = 1102271169
1945
	Pitch = 1
1946
	Mode = 5
1947
	Core2.BrickColor = BrickColor.new'White'
1948
	Core2.Material = Enum.Material.Neon	
1949
end	
1950
1951
function RiddleMeThis()
1952
	Attack = true
1953
	NeutralAnims = false
1954
	WalkSpeed = 0
1955
	MusicID = 1420353940
1956
	Pitch = 1
1957
	Muted = true
1958
	repeat swait() until Music.IsLoaded	
1959
	Muted = false
1960
	Music.TimePosition = 0
1961
	Chat('Riddle me this..')
1962
	for i = 0,14,.1 do
1963
		local Alpha = .1
1964
		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)
1965
		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)
1966
		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)
1967
		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)
1968
		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)
1969
		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)
1970
		swait()
1971
	end
1972
	Chat('Riddle me that..')
1973
	for i = 0,12,.1 do
1974
		local Alpha = .1
1975
		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)
1976
		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)
1977
		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)
1978
		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)
1979
		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)
1980
		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)
1981
		swait()	
1982
	end
1983
	Chat("Who's afraid of the big black..")
1984
	for i = 0,16,.1 do
1985
		local Alpha = .1
1986
		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)
1987
		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)
1988
		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)
1989
		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)
1990
		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)
1991
		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)
1992
		swait()
1993
	end
1994
	for i = 0, .7, 0.1 do
1995
		swait()
1996
		local Alpha = .3
1997
		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)
1998
		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)
1999
		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)
2000
		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)
2001
		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)
2002
		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)
2003
	end
2004
2005
	for _,v in next, LWing:children() do
2006
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Really black' end
2007
	end
2008
	for _,v in next, RWing:children() do
2009
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = 0 v.BrickColor = BrickColor.new'Really black' end
2010
	end
2011
	for _,v in next, LWingEXT:children() do
2012
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .5 v.BrickColor = BrickColor.new'Really black' end
2013
	end
2014
	for _,v in next, RWingEXT:children() do
2015
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.Transparency = .5 v.BrickColor = BrickColor.new'Really black' end
2016
	end
2017
	for _,v in next, Halo:children() do
2018
		if(v:IsA'BasePart' and v.Name ~= 'Main')then v.Material = Enum.Material.Neon v.BrickColor = BrickColor.new'Really black' end
2019
	end
2020
	pcall(function() Char.ReaperShadowHead.Eye1.Color = BrickColor.new'Black'.Color end)
2021
	pcall(function() Char.ReaperShadowHead.Eye2.Color = BrickColor.new'Black'.Color end)
2022
	WalkSpeed = 50
2023
	RecolorTextAndRename("The Big Black",BrickColor.new'Really black'.Color,C3.N(1,1,1))
2024
	Core2.BrickColor = BrickColor.new'Really black'
2025
	Core2.Material = Enum.Material.Neon	
2026
	Mode = 666666666666
2027
	Sound(Root,"206082327",1,2.5,false,true,true)
2028
	Sound(Root,"847061203",1,5,false,true,true)
2029
	Sound(Root,"239000203",1,2.5,false,true,true)
2030
	Sound(Root,"579687077",.75,2.5,false,true,true)
2031
	NoobySphere2(2.5,'Multiply',Core2.CFrame,V3.N(0,0,0),1,Core2.BrickColor)
2032
	for i = 1, 24 do
2033
		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)
2034
	end
2035
	for i = 0, 15 do
2036
		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)
2037
	end
2038
	for i = 0, .7, 0.1 do
2039
		swait()
2040
		local Alpha = .3
2041
		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)
2042
		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)
2043
		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)
2044
		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)
2045
		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)
2046
		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)
2047
	end
2048
	Attack = false
2049
	NeutralAnims = true
2050
end
2051
2052
--// Wrap it all up \\--
2053
2054
function KeyPress(code)
2055
	if(code == Enum.KeyCode.One and Mode ~= 1)then
2056
		SolitudeMode()
2057
	elseif(code == Enum.KeyCode.Two and Mode ~= 2)then
2058
		PureMode()
2059
	elseif(code == Enum.KeyCode.Three and Mode ~= 3)then
2060
		GlitchMode()
2061
	elseif(code == Enum.KeyCode.Four and Mode ~= 4)then
2062
		StressMode()
2063
	elseif(code == Enum.KeyCode.Five and Mode ~= 5)then
2064
		JusticeMode()
2065
	-- Transformations
2066
	elseif(code == Enum.KeyCode.T)then
2067
		if(Mode == 1)then
2068
			RiddleMeThis()
2069
		end
2070
	-- Toggle player attacking
2071
	elseif(code == Enum.KeyCode.Semicolon)then
2072
		DontAttackPlayers = not DontAttackPlayers
2073
		Chat(DontAttackPlayers and "You can no longer attack players" or "You can now attack players")
2074
	-- Attacks
2075
	elseif(code == Enum.KeyCode.Z)then
2076
		if(Mode == 1 or Mode == 666666666666)then
2077
			if(not UIS.TouchEnabled)then NeckSnap((Mouse.Target and Mouse.Target.Parent)) else warn("Tap someone, to snap their neck") MobileNeckSnap() end
2078
		elseif(Mode == 2)then
2079
			PureBomb()
2080
		elseif(Mode == 3)then
2081
			ClickGlitch()
2082
		elseif(Mode == 4)then
2083
			Shrek()
2084
		elseif(Mode == 5)then
2085
			Aeroplane()
2086
		end
2087
	end
2088
end
2089
2090
function AttackCombo()
2091
	if(Combo == 1)then AttackOne() elseif(Combo == 2)then AttackTwo() elseif(Combo == 3)then AttackThree() end
2092
end
2093
2094
UIS.InputBegan:connect(function(io,gpe)
2095
	if(Attack)then return end
2096
	if(not gpe)then
2097
		local code = io.KeyCode;
2098
		if(io.UserInputType == Enum.UserInputType.Keyboard)then
2099
			KeyPress(code)
2100
		elseif(io.UserInputType == Enum.UserInputType.MouseButton1)then
2101
			AttackCombo()
2102
		end
2103
	end
2104
end)
2105
2106
2107
coroutine.wrap(function()
2108
	-- AURAS
2109
	while true do		
2110
		if(Mode == 5)then
2111
			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)
2112
		elseif(Mode == 666666666666)then
2113
			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)			
2114
		end
2115
		if(Mode == 666666666666)then
2116
			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)					
2117
		end
2118
		
2119
		swait()
2120
	end	
2121
end)()
2122
2123
while true do
2124
	swait()
2125
	Sine = Sine + Change
2126
	WingSine = WingSine + WingChange
2127
	if(Hue > 360)then Hue = 0 end
2128
	Hue = Hue + 1
2129
	
2130
	if(not Music or not Music.Parent)then
2131
		local tPos = 0;
2132
		if(Music)then tPos = Music.TimePosition; Music:Stop(); Music:Destroy(); end
2133
		Music = Sound(Char,MusicID,1,3,true,false,true)
2134
		Music.Name = 'Music'
2135
		Music.TimePosition = tPos;
2136
	end
2137
	Music.SoundId = "rbxassetid://"..MusicID
2138
	Music.Parent = Char
2139
	Music.Pitch = Pitch
2140
	Music.Volume = 2
2141
	if(not Muted)then
2142
		Music:Resume()
2143
	else
2144
		Music:Pause()
2145
	end
2146
	
2147
	if(God)then
2148
		Hum.MaxHealth = 1e100
2149
		Hum.Health = 1e100
2150
		if(not Char:FindFirstChildOfClass'ForceField')then IN("ForceField",Char).Visible = false end
2151
		Hum.Name = M.RNG()*100
2152
	end
2153
	
2154
	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)
2155
	
2156
	if(Mode == 3)then
2157
		for _,v in next, LWing:children() do
2158
			local what = M.RNG()
2159
			if(v:IsA'BasePart')then
2160
				v.Color = C3.N(what,what,what)
2161
			end
2162
		end
2163
		for _,v in next, RWing:children() do
2164
			local what = M.RNG()
2165
			if(v:IsA'BasePart')then
2166
				v.Color = C3.N(what,what,what)
2167
			end
2168
		end
2169
		for _,v in next, LWingEXT:children() do
2170
			local what = M.RNG()
2171
			if(v:IsA'BasePart')then
2172
				v.Color = C3.N(what,what,what)
2173
			end
2174
		end
2175
		for _,v in next, RWingEXT:children() do
2176
			local what = M.RNG()
2177
			if(v:IsA'BasePart')then
2178
				v.Color = C3.N(what,what,what)
2179
			end
2180
		end
2181
2182
		local what1 = M.RNG()
2183
		local what2 = M.RNG()
2184
		local what3 = M.RNG()
2185
		local what4 = M.RNG()
2186
		Core2.Color = C3.N(what1,what1,what1)
2187
		
2188
		for _,v in next, Halo:children() do
2189
			if(v:IsA'BasePart')then
2190
				v.Color = C3.N(what1,what1,what1)
2191
			end
2192
		end
2193
		
2194
		text.TextStrokeColor3 = C3.N(what2,what2,what2)
2195
		text.TextColor3 = C3.N(what3,what3,what3)
2196
		pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(what4,what4,what4) end)
2197
		pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(what4,what4,what4) end)
2198
	elseif(Mode == 4)then
2199
		for _,v in next, LWing:children() do
2200
			local what = M.RNG()*.5
2201
			if(v:IsA'BasePart')then
2202
				v.Color = C3.N(what,0,0)
2203
			end
2204
		end
2205
		for _,v in next, LWingEXT:children() do
2206
			local what = M.RNG()*.5
2207
			if(v:IsA'BasePart')then
2208
				v.Color = C3.N(what,0,0)
2209
			end
2210
		end
2211
2212
		local what1 = M.RNG()*.5
2213
		local what2 = M.RNG()*.5
2214
		local what3 = M.RNG()*.5
2215
		local what4 = M.RNG()*.5
2216
		Core2.Color = C3.N(what1,0,0)
2217
		
2218
		for _,v in next, Halo:children() do
2219
			if(v:IsA'BasePart')then
2220
				v.Color = C3.N(what1,0,0)
2221
			end
2222
		end
2223
		
2224
		text.TextStrokeColor3 = C3.N(what2,0,0)
2225
		text.TextColor3 = C3.N(what3,0,0)
2226
		pcall(function() Char.ReaperShadowHead.Eye1.Color = C3.N(what4,0,0) end)
2227
		pcall(function() Char.ReaperShadowHead.Eye2.Color = C3.N(what4,0,0) end)
2228
	end
2229
	
2230
	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)
2231
	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)
2232
	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)
2233
	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)
2234
	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)
2235
	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)
2236
	
2237
	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)
2238
	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)
2239
	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)
2240
	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)
2241
	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)
2242
	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)
2243
	
2244
	local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
2245
	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")
2246
	if(not Effects or not Effects.Parent)then
2247
		Effects = IN("Model",Char)
2248
		Effects.Name = "Effects"
2249
	end																																																																																																		
2250
	if(State == 'Run' and Mode ~= 5 and Mode ~= 10 and Mode ~= 666666666666)then
2251
		local wsVal = 7 / (Hum.WalkSpeed/16)
2252
		local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
2253
		Change = 1
2254
			
2255
	elseif(State == 'Walk' and Mode ~= 5 and Mode ~= 10 and Mode ~= 666666666666)then
2256
		local wsVal = 7 / (Hum.WalkSpeed/16)
2257
		local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
2258
		Change = 1
2259
		if(Mode == 7)then
2260
			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)
2261
			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)
2262
		else
2263
			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)
2264
			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)
2265
		end
2266
	else
2267
		RH.C1 = RH.C1:lerp(CF.N(0,1,0),.2)
2268
		LH.C1 = LH.C1:lerp(CF.N(0,1,0),.2)
2269
	end	
2270
	
2271
	Hum.WalkSpeed = WalkSpeed
2272
	if(NeutralAnims)then	
2273
		if(State == 'Idle')then
2274
			local Alpha = .1
2275
			if(Mode == 1)then
2276
				Change = 1
2277
				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)
2278
				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)
2279
				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)
2280
				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)
2281
				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)
2282
				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)
2283
			elseif(Mode == 2)then
2284
				Change = 1
2285
				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)
2286
				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)
2287
				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)
2288
				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)
2289
				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)
2290
				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)
2291
			elseif(Mode == 3)then
2292
				Change = 1
2293
				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)
2294
				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)
2295
				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)
2296
				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)
2297
				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)
2298
				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)
2299
			elseif(Mode == 4)then
2300
				Change = 1 
2301
				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)
2302
				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)
2303
				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)
2304
				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)
2305
				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)
2306
				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)
2307
			elseif(Mode == 5)then
2308
				Change = 1
2309
				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),Alpha)
2310
				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)
2311
				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)
2312
				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)
2313
				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)
2314
				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)
2315
			elseif(Mode == 666666666666)then
2316
				Change = 1
2317
				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)
2318
				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)
2319
				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)
2320
				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)
2321
				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)
2322
				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)
2323
				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+4*M.C(Sine/0.173278)),M.R(0+7.5*M.S(Sine/0.01278125))),Alpha)
2324
			else			
2325
				Change = .75
2326
				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)
2327
				NK.C0 = NK.C0:lerp(NKC0*CF.A(M.R(-5+5*M.C(Sine/12)),0,0),Alpha)
2328
				LS.C0 = LS.C0:lerp(LSC0*CF.A(0,0,M.R(-7-5*M.C(Sine/12))),Alpha)
2329
				RS.C0 = RS.C0:lerp(RSC0*CF.A(0,0,M.R(7+5*M.C(Sine/12))),Alpha)
2330
				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)
2331
				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)
2332
			end
2333
			-- idle
2334
		elseif(State == 'Run' and Mode ~= 5 and Mode ~= 10 and Mode ~= 666666666666)then
2335
			local wsVal = 7 / (Hum.WalkSpeed/16)
2336
			local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
2337
			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)
2338
			NK.C0 = NK.C0:lerp(NKC0,Alpha)
2339
			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)
2340
			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)
2341
			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)
2342
			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)
2343
		elseif(State == 'Walk' and Mode ~= 5 and Mode ~= 7 and Mode ~= 10 and Mode ~= 666666666666)then
2344
			local wsVal = 7 / (Hum.WalkSpeed/16)
2345
			local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
2346
			if(Mode == 4)then
2347
				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)
2348
				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)
2349
				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)
2350
				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)
2351
				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)
2352
				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)
2353
			elseif(Mode == 696969)then
2354
				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)
2355
				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)
2356
				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)
2357
				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)
2358
				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)
2359
				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)
2360
			
2361
			elseif(Mode == 1)then
2362
				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)
2363
				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)
2364
				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)
2365
				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)
2366
				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)
2367
				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)
2368
			else 
2369
				if(hitfloor and Mode == 9)then Effect{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
2370
				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)
2371
				NK.C0 = NK.C0:lerp(NKC0,Alpha)
2372
				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)
2373
				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)
2374
				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)
2375
				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)
2376
			end
2377
		elseif(State == 'Walk' and Mode == 7)then
2378
			local wsVal = 7 / (Hum.WalkSpeed/16)
2379
			local Alpha = math.min(.3 * (Hum.WalkSpeed/8),1)
2380
			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)
2381
			NK.C0 = NK.C0:lerp(NKC0,Alpha)
2382
			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)
2383
			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)
2384
			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)
2385
			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)
2386
		elseif((State == 'Walk' or State == 'Run') and Mode == 10)then
2387
			Change = 1
2388
			local Alpha = .1
2389
			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)
2390
			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)
2391
			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)
2392
			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)
2393
			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)
2394
			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)
2395
		elseif((State == 'Walk' or State == 'Run') and Mode == 666666666666)then
2396
			Change = 1
2397
			local Alpha = .1
2398
			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)
2399
			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)
2400
			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)
2401
			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)
2402
			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)
2403
			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)
2404
		
2405
		elseif((State == 'Walk' or State == 'Run'))then
2406
			Change = 1
2407
			local Alpha = .1
2408
			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)
2409
			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)
2410
			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)
2411
			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)
2412
			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)
2413
			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)
2414
		
2415
		elseif(State == 'Jump')then
2416
			local Alpha = .1
2417
			local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
2418
			LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)),Alpha)
2419
			RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)),Alpha)
2420
			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)
2421
			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)
2422
			LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
2423
			RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
2424
		elseif(State == 'Fall')then
2425
			local Alpha = .1
2426
			local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
2427
			LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)+idk),Alpha)
2428
			RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)-idk),Alpha)
2429
			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)
2430
			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)
2431
			LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
2432
			RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
2433
		elseif(State == 'Paralyzed')then
2434
			-- paralyzed
2435
		elseif(State == 'Sit')then
2436
			-- sit
2437
		end
2438
	end
2439
	
2440
2441
	
2442
	for i,v in next, BloodPuddles do
2443
		local mesh = i:FindFirstChild'CylinderMesh'
2444
		BloodPuddles[i] = v + 1
2445
		if(not mesh or i.Transparency >= 1)then
2446
			i:destroy() 
2447
			BloodPuddles[i] = nil
2448
		elseif(v >= Frame_Speed*4)then
2449
			local trans = (v-Frame_Speed*4)/(Frame_Speed*2)
2450
			i.Transparency = trans
2451
	            if(mesh.Scale.Z > 0)then
2452
	                mesh.Scale = mesh.Scale-V3.N(.05,0,.05)
2453
	            end
2454
		else
2455
			i.Transparency = 0
2456
		end
2457
	end
2458
end