function GUI(seconds) local Player = game.Players.LocalPlayer.Character local on = false local clip = true local SP = Instance.new("ScreenGui") local OP = Instance.new("Frame") local cr = Instance.new("TextLabel") local TextLabel = Instance.new("TextLabel") local cr_2 = Instance.new("TextLabel") local TextLabel_2 = Instance.new("TextLabel") local CT = Instance.new("TextButton") local PAB = Instance.new("TextButton") local TTX = Instance.new("TextButton") local TTS = Instance.new("TextButton") local PT = Instance.new("TextButton") local LU = Instance.new("TextButton") local DEB = Instance.new("TextButton") local AF = Instance.new("TextButton") local WS = Instance.new("TextButton") local JP = Instance.new("TextButton") SP.Name = "SP" SP.Parent = game.CoreGui OP.Name = "OP" OP.Parent = SP OP.Active = true OP.BackgroundColor3 = Color3.new(1, 1, 1) OP.Position = UDim2.new(0.305954814, 0, 0.20071049, 0) OP.Size = UDim2.new(0, 299, 0, 336) OP.Style = Enum.FrameStyle.RobloxRound OP.Draggable = true cr.Name = "cr" cr.Parent = OP cr.BackgroundColor3 = Color3.new(1, 1, 1) cr.BackgroundTransparency = 1 cr.Position = UDim2.new(0, 0, -0.00342465937, 0) cr.Size = UDim2.new(0, 283, 0, 28) cr.Font = Enum.Font.SciFi cr.Text = "Flood Escape 2 Gui - By FunTrator" cr.TextColor3 = Color3.new(0.992157, 0, 0.129412) cr.TextSize = 16 TextLabel.Parent = cr TextLabel.BackgroundColor3 = Color3.new(1, 0.00392157, 0.0705882) TextLabel.Position = UDim2.new(0, 0, 1.00000012, 0) TextLabel.Size = UDim2.new(0, 283, 0, 1) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "" TextLabel.TextColor3 = Color3.new(0, 0, 0) TextLabel.TextSize = 14 cr_2.Name = "cr" cr_2.Parent = OP cr_2.BackgroundColor3 = Color3.new(1, 1, 1) cr_2.BackgroundTransparency = 1 cr_2.Position = UDim2.new(0.0167224109, 0, 0.918990552, 0) cr_2.Size = UDim2.new(0, 283, 0, 28) cr_2.Font = Enum.Font.SciFi cr_2.Text = "DISCORD . IO / SomeoneShark" cr_2.TextColor3 = Color3.new(0.992157, 0, 0.129412) cr_2.TextSize = 16 TextLabel_2.Parent = cr_2 TextLabel_2.BackgroundColor3 = Color3.new(1, 0.00392157, 0.0705882) TextLabel_2.Position = UDim2.new(-0.0212014224, 0, 0.964285851, 0) TextLabel_2.Size = UDim2.new(0, 283, 0, 1) TextLabel_2.Font = Enum.Font.SourceSans TextLabel_2.Text = "" TextLabel_2.TextColor3 = Color3.new(0, 0, 0) TextLabel_2.TextSize = 14 CT.Name = "CT" CT.Parent = OP CT.BackgroundColor3 = Color3.new(1, 1, 1) CT.Position = UDim2.new(0.00334447995, 0, 0.119047627, 0) CT.Size = UDim2.new(0, 122, 0, 42) CT.Style = Enum.ButtonStyle.RobloxRoundDropdownButton CT.Font = Enum.Font.SciFi CT.Text = "Click TP [R]" CT.TextColor3 = Color3.new(0, 0, 0) CT.TextSize = 14 CT.MouseButton1Click:connect(function() plr = game.Players.LocalPlayer mouse = plr:GetMouse() mouse.KeyDown:connect(function(key) if key == "r" then if mouse.Target then plr.Character.HumanoidRootPart.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z) end end end) warn("[UniQu3GamesHub] ClickTP Enabled!") end) PAB.Name = "PAB" PAB.Parent = OP PAB.BackgroundColor3 = Color3.new(1, 1, 1) PAB.Position = UDim2.new(0.00334447995, 0, 0.273809522, 0) PAB.Size = UDim2.new(0, 122, 0, 42) PAB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton PAB.Font = Enum.Font.SciFi PAB.Text = "Press Buttons [Z]" PAB.TextColor3 = Color3.new(0, 0, 0) PAB.TextSize = 14 PAB.MouseButton1Click:connect(function() local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() local Multiplayer = game.Workspace.Multiplayer Mouse.KeyDown:Connect(function(Key) if Key == "z" then local Map = Multiplayer.Map local Btns = {} local Desc = {} for i, v in pairs(Map:GetDescendants())do Desc[v.Name.."Obj"] = v end for i=0,30 do if Desc["_Button".. tostring(i).. "Obj"] ~= nil then table.insert(Btns,Desc["_Button".. tostring(i).. "Obj"]) end end for i, v in pairs(Btns)do local Hitbox = v.Hitbox Player.Character.HumanoidRootPart.CFrame = Hitbox.CFrame wait(0.3) end elseif Key == "x" then local Map = Multiplayer.Map local ExitBlock = Map:FindFirstChild("ExitBlock") local Char = Player.Character local Ts = game:GetService("TweenService") local Ti = TweenInfo.new( 2, Enum.EasingStyle.Sine, Enum.EasingDirection.Out, 0, false, 0 ) local Tp = { CFrame = ExitBlock.CFrame } if ExitBlock ~= nil and ExitBlock:IsA("Part") then local Tw = Ts:Create(Player.Character.HumanoidRootPart,Ti,Tp) wait(0.1) Tw:Play() end elseif Key == "c" then local Map = Multiplayer.Map Map.ExitBlock:Destroy() end end) end) function Tpexit(pos) local Player = game.Players.LocalPlayer.Character local Map = game.Workspace.Multiplayer.Map local ExitBlock = Map:FindFirstChild("ExitRegion") local posit if ExitBlock == nil then if pos == 1 then posit = CFrame.new(2080, 990, 2) elseif pos == 2 then posit = CFrame.new(4080, 990, 2) end else posit = ExitBlock.CFrame end local Ts = game:GetService("TweenService") local Ti = TweenInfo.new( 2, Enum.EasingStyle.Sine, Enum.EasingDirection.Out, 0, false, 0 ) local Tp = { CFrame = posit } local Tw = Ts:Create(Player.HumanoidRootPart,Ti,Tp) wait(0.1) Tw:Play() end TTX.Name = "TTX" TTX.Parent = OP TTX.BackgroundColor3 = Color3.new(1, 1, 1) TTX.Position = UDim2.new(0.565217376, 0, 0.276785702, 0) TTX.Size = UDim2.new(0, 122, 0, 42) TTX.Style = Enum.ButtonStyle.RobloxRoundDropdownButton TTX.Font = Enum.Font.SciFi TTX.Text = "TP To EXIT" TTX.TextColor3 = Color3.new(0, 0, 0) TTX.TextSize = 14 TTX.MouseButton1Click:connect(function() exit = game.Workspace.Multiplayer.Map:FindFirstChild("ExitRegion") spawn = game.Workspace.Multiplayer.Map:FindFirstChild("Spawn") if exit then Tpexit() else if spawn.Position.X < 3000 then Tpexit(1) else Tpexit(2) end end end) TTS.Name = "TTS" TTS.Parent = OP TTS.BackgroundColor3 = Color3.new(1, 1, 1) TTS.Position = UDim2.new(-5.3551048e-09, 0, 0.434523791, 0) TTS.Size = UDim2.new(0, 122, 0, 42) TTS.Style = Enum.ButtonStyle.RobloxRoundDropdownButton TTS.Font = Enum.Font.SciFi TTS.Text = "TP To SPAWN" TTS.TextColor3 = Color3.new(0, 0, 0) TTS.TextSize = 14 TTS.MouseButton1Click:connect(function() Player.HumanoidRootPart.CFrame = CFrame.new(-25, -145, 47) end) PT.Name = "PT" PT.Parent = OP PT.BackgroundColor3 = Color3.new(1, 1, 1) PT.Position = UDim2.new(0.565217376, 0, 0.434523821, 0) PT.Size = UDim2.new(0, 122, 0, 42) PT.Style = Enum.ButtonStyle.RobloxRoundDropdownButton PT.Font = Enum.Font.SciFi PT.Text = "PASS THROUGH" PT.TextColor3 = Color3.new(0, 0, 0) PT.TextSize = 14 PT.MouseButton1Click:connect(function() if clip then clip = false PT.BackgroundColor3 = Color3.new(0, 0.5, 0) PT.Text = "NoClip (On)" warn("[UniQu3GamesHub] ByPass Enabled!") else clip = true PT.BackgroundColor3 = Color3.new(0, 0, 0.5) PT.Text = "NoClip (Off)" warn("[UniQu3GamesHub] ByPass Disabled!") end game:getService("RunService"):BindToRenderStep("",0,function() if not game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid") then return end if not clip then game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid"):ChangeState(11) end end) end) LU.Name = "LU" LU.Parent = OP LU.BackgroundColor3 = Color3.new(1, 1, 1) LU.Position = UDim2.new(0.568561852, 0, 0.59523809, 0) LU.Size = UDim2.new(0, 122, 0, 42) LU.Style = Enum.ButtonStyle.RobloxRoundDropdownButton LU.Font = Enum.Font.SciFi LU.Text = "Level Up" LU.TextColor3 = Color3.new(0, 0, 0) LU.TextSize = 14 LU.MouseButton1Click:connect(function() local FHax = {} FHax.Services = { Players = game:GetService("Players"), L = game:GetService("Lighting"), RS = game:GetService("RunService"), USP = game:GetService("UserInputService"), CoreG = game:GetService("CoreGui"), LPlayer = game:GetService('Players').LocalPlayer } FHax.Instances = { LocalPlayer = FHax.Services.Players.LocalPlayer, LocalCharacter = FHax.Services.Players.LocalPlayer.Character, LocalCamera = workspace.CurrentCamera, LocalMouse = FHax.Services.Players.LocalPlayer:GetMouse() } local N = game:GetService('ReplicatedStorage'):FindFirstChild('LvlUp') local B = game:GetService('Players').LocalPlayer.PlayerScripts.R:FindFirstChild("CL_MAIN_AntiExploit") local Y = game:GetService('Players').LocalPlayer.Name if B ~= true then print("Anti-Ban Removed") else B:Destroy() end for i = 1,100 do local N = game:GetService('ReplicatedStorage'):FindFirstChild('LvlUp') wait(0.1) warn(Y.." Level: "..i) N:FireServer() end end) DEB.Name = "DEB" DEB.Parent = OP DEB.BackgroundColor3 = Color3.new(1, 1, 1) DEB.Position = UDim2.new(-5.3551048e-09, 0, 0.59523809, 0) DEB.Size = UDim2.new(0, 122, 0, 42) DEB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton DEB.Font = Enum.Font.SciFi DEB.Text = "Destroy Exit Block" DEB.TextColor3 = Color3.new(0, 0, 0) DEB.TextSize = 14 DEB.MouseButton1Click:connect(function() local Map = game.Workspace.Multiplayer.Map Map.ExitBlock:Destroy() warn("[UniQu3GamesHub] Exit Block Destroyed!") end) AF.Name = "AF" AF.Parent = OP AF.BackgroundColor3 = Color3.new(1, 1, 1) AF.Position = UDim2.new(0.565217376, 0, 0.119047627, 0) AF.Size = UDim2.new(0, 122, 0, 42) AF.Style = Enum.ButtonStyle.RobloxRoundDropdownButton AF.Font = Enum.Font.SciFi AF.Text = "Auto Farm" AF.TextColor3 = Color3.new(0, 0, 0) AF.TextSize = 14 AF.MouseButton1Click:connect(function() if on then on = false AF.BackgroundColor3 = Color3.new(0, 0, 0.5) AF.Text = "AutoFarm" warn("[UniQu3GamesHub] Autofarm off!") else on = true AF.BackgroundColor3 = Color3.new(0.5, 0, 0) AF.Text = "Stop Autofarm" warn("[UniQu3GamesHub] Autofarm on!") end local msg = "qwertyuiop" while on and wait(0.5) do local r = false local history = Game:GetService("LogService"):GetLogHistory() for i = #history, 1, -1 do if string.find(history[i].message, "2925 2925") and not string.find(history[i].message, msg) then wait(seconds) buttons(1) local exit = game.Workspace.Multiplayer.Map:FindFirstChild("ExitRegion") game.Player.HumanoidRootPart.CFrame = CFrame.new(exit.Position.X, exit.Position.Y, exit.Position.Z + 25) Tpexit() r = true msg = "2925 2925" elseif string.find(history[i].message, "1700 1700") and not string.find(history[i].message, msg) then wait(seconds) buttons(0.3) local spawn = game.Workspace.Multiplayer.Map:FindFirstChild("Spawn") if spawn.Position.X < 3000 then Tpexit(1) else Tpexit(2) end r = true msg = "1700 1700" elseif (string.find(history[i].message, "%d%d%d%s%d%d%d") or string.find(history[i].message, "%d%d%d%d%s%d%d%d%d")) and not string.find(history[i].message, msg) then wait(seconds) buttons(0.3) Tpexit() r = true msg = history[i].message elseif string.find(history[i].message, "NewMap") then r = true end if r then break end end end end) WS.Name = "WS" WS.Parent = OP WS.BackgroundColor3 = Color3.new(1, 1, 1) WS.Position = UDim2.new(0.00334441662, 0, 0.758928537, 0) WS.Size = UDim2.new(0, 122, 0, 42) WS.Style = Enum.ButtonStyle.RobloxRoundDropdownButton WS.Font = Enum.Font.SciFi WS.Text = "WalkSpeed" WS.TextColor3 = Color3.new(0, 0, 0) WS.TextSize = 14 WS.MouseButton1Click:connect(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200 warn ("[UniQu3GamesHub] WalkSpeed Increased") end) JP.Name = "JP" JP.Parent = OP JP.BackgroundColor3 = Color3.new(1, 1, 1) JP.Position = UDim2.new(0.568561792, 0, 0.758928537, 0) JP.Size = UDim2.new(0, 122, 0, 42) JP.Style = Enum.ButtonStyle.RobloxRoundDropdownButton JP.Font = Enum.Font.SciFi JP.Text = "JumpPower" JP.TextColor3 = Color3.new(0, 0, 0) JP.TextSize = 14 JP.MouseButton1Click:connect(function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300 warn ("[UniQu3GamesHub] JumpPower Increased") end) function buttons(waittime) local Map = game.Workspace.Multiplayer.Map local Btns = {} local Desc = {} for i, v in pairs(Map:GetDescendants())do Desc[v.Name.."Obj"] = v end for i=0,30 do if Desc["_Button".. tostring(i).. "Obj"] ~= nil then table.insert(Btns,Desc["_Button".. tostring(i).. "Obj"]) end end for i, v in pairs(Btns)do local Hitbox = v.Hitbox Player.HumanoidRootPart.CFrame = Hitbox.CFrame wait(waittime) end end end GUI(3) warn("FloodGui Loaded!")