Roblox Database Logo
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
Home - Scripts - Flood Escape 2 Script

Flood Escape 2 Script

✅ Last Tested: March 2026 – All scripts working.

Flood Escape 2 is an obby-style game where the challenge keeps escalating and the grind to progress can drag on without the right setup. Doing it all manually means replaying the same sections repeatedly until something clicks. These scripts make it significantly easier with Auto Farm, Pastebin running so you can move through stages at your own pace.

Auto Farm Pastebin

Flood Escape 2 Script


📜 Flood Escape 2 Scripts (Auto Farm, Pastebin & More)

To run any of these scripts you will need a working Roblox executor. Check out the list at that link for free and paid options that work in 2026.

Flood Escape 2 Script Auto Play, Auto Vote, Auto Farm, God Mode Gui

Script 1 KEYLESSFlood Escape 2 Script Auto Play, Auto Vote, Auto Farm, God Mode Gui
Auto Farm
loadstring(game:HttpGet("https://raw.githubusercontent.com/kosuke14/REBOYHub/main/games/FE2GodMode.lua",true))()

Select all text above, copy it, then paste into your executor.

Flood Escape 2 Script Pastebin2026 :

Script 2 KEYLESSFlood Escape 2 Script Pastebin2026 :
Pastebin
loadstring(game:HttpGet("https://raw.githubusercontent.com/TheHanki/Hawk/main/Loader", true))()

Select all text above, copy it, then paste into your executor.

Flood Escape 2 Script 3:

Script 3 KEYLESSFlood Escape 2 Script Pastebin2026 :
Pastebin
--Change the 'WaitTime'(time it takes to load map) to 5-9 when using AutoFarm in public servers, and around 3 in private. Then click 'Reload GUI' to save changes
 
--Use 'Reload GUI' after you die, as some functions will not work after you respawn
 
--Enable 'NoClip' if you are getting killed when Teleporting to the exit, or if you just wanna go thru walls 
 
--Click 'ClickTP (r)' to enable click TP, hover your mouse over where you want to TP, and press r
 
--All other buttons are pretty self-explanatory
 
function GUI(seconds)
local Player = game.Players.LocalPlayer.Character
local on     = false
local clip   = true
 
local FloodGUI    = Instance.new("ScreenGui")
local MainFrame   = Instance.new("Frame")
local Title       = Instance.new("TextLabel")
local Credits     = Instance.new("TextLabel")
local ClickTP     = Instance.new("TextButton")
local GetButtons  = Instance.new("TextButton")
local DestroyExit = Instance.new("TextButton")
local TpSpawn     = Instance.new("TextButton")
local TpExit      = Instance.new("TextButton")
local X           = Instance.new("TextButton")
local AutoFarm    = Instance.new("TextButton")
local Reload      = Instance.new("TextButton")
local NoClip      = Instance.new("TextButton")
local Waittime    = Instance.new("TextBox")
FloodGUI.Parent   = game.CoreGui
 
MainFrame.Parent                 = FloodGUI
MainFrame.BackgroundColor3       = Color3.new(0, 0, 1)
MainFrame.BackgroundTransparency = 0.3
MainFrame.Position               = UDim2.new(0.77, 0, 0.53, 0)
MainFrame.Size                   = UDim2.new(0, 300, 0, 300)
MainFrame.Active                 = true
MainFrame.Draggable              = true
 
Title.Parent                     = MainFrame
Title.BackgroundTransparency     = 1
Title.Size                       = UDim2.new(0, 189, 0, 32)
Title.Font                       = Enum.Font.SourceSansBold
Title.FontSize                   = Enum.FontSize.Size36
Title.Text                       = "FloodGui"
Title.TextColor3                 = Color3.new(1, 1, 1)
 
Credits.Parent                 = MainFrame
Credits.BackgroundTransparency = 1
Credits.Size                   = UDim2.new(0, 189, 0, 32)
Credits.Font                   = Enum.Font.SourceSansBold
Credits.FontSize               = Enum.FontSize.Size24
Credits.Text                   = "GUI created by Zmann"
Credits.TextColor3             = Color3.new(0, 0, 0.03)
Credits.Position               = UDim2.new(0.20, 0, 0.88, 0)
 
ClickTP.Parent           = MainFrame
ClickTP.BackgroundColor3 = Color3.new(0, 0, 0.5)
ClickTP.Position         = UDim2.new(0.03, 0, 0.75, 0)
ClickTP.Size             = UDim2.new(0, 125, 0, 36)
ClickTP.Font             = Enum.Font.SourceSansBold
ClickTP.FontSize         = Enum.FontSize.Size24
ClickTP.Text             = "Click TP (r)"
ClickTP.TextColor3       = Color3.new(1, 1, 1)
ClickTP.MouseButton1Down: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("[FloodGui] ClickTP Enabled!")
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
 
GetButtons.Parent           = MainFrame
GetButtons.BackgroundColor3 = Color3.new(0, 0, 0.5)
GetButtons.Position         = UDim2.new(0.03, 0, 0.55, 0)
GetButtons.Size             = UDim2.new(0, 125, 0, 36)
GetButtons.Font             = Enum.Font.SourceSansBold
GetButtons.FontSize         = Enum.FontSize.Size24
GetButtons.Text             = "Get Buttons"
GetButtons.TextColor3       = Color3.new(1, 1, 1)
GetButtons.MouseButton1Down:connect(function()
warn("[FloodGui] Pressing buttons...")
buttons(0.3)
warn("[FloodGui] Buttons Pressed!")
end)
 
TpSpawn.Parent           = MainFrame
TpSpawn.BackgroundColor3 = Color3.new(0, 0, 0.5)
TpSpawn.Position         = UDim2.new(0.53, 0, 0.75, 0)
TpSpawn.Size             = UDim2.new(0, 125, 0, 36)
TpSpawn.Font             = Enum.Font.SourceSansBold
TpSpawn.FontSize         = Enum.FontSize.Size24
TpSpawn.Text             = "TP Spawn"
TpSpawn.TextColor3       = Color3.new(1, 1, 1)
TpSpawn.MouseButton1Down:connect(function()
Player.HumanoidRootPart.CFrame = CFrame.new(-25, -145, 47)
warn("[FloodGui] Teleported!")
end)
 
DestroyExit.Parent           = MainFrame
DestroyExit.BackgroundColor3 = Color3.new(0, 0, 0.5)
DestroyExit.Position         = UDim2.new(0.53, 0, 0.55, 0)
DestroyExit.Size             = UDim2.new(0, 125, 0, 36)
DestroyExit.Font             = Enum.Font.SourceSansBold
DestroyExit.FontSize         = Enum.FontSize.Size24
DestroyExit.Text             = "Destroy Exit"
DestroyExit.TextColor3       = Color3.new(1, 1, 1)
DestroyExit.MouseButton1Down:connect(function()
local Map = game.Workspace.Multiplayer.Map
Map.ExitBlock:Destroy()
warn("[FloodGui] Exit Destroyed!")
end)
 
X.Parent                 = MainFrame
X.BackgroundTransparency = 1
X.Position               = UDim2.new(.93, 0, 0, 0)
X.Size                   = UDim2.new(0, 20, 0, 20)
X.Font                   = Enum.Font.SourceSansBold
X.FontSize               = Enum.FontSize.Size24
X.Text                   = "X"
X.TextColor3             = Color3.new(1, 1, 1)
X.MouseButton1Down:connect(function()
on   = false
clip = true
MainFrame:Remove()
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
 
TpExit.Parent           = MainFrame
TpExit.BackgroundColor3 = Color3.new(0, 0, 0.5)
TpExit.Position         = UDim2.new(0.53, 0, 0.35, 0)
TpExit.Size             = UDim2.new(0, 125, 0, 36)
TpExit.Font             = Enum.Font.SourceSansBold
TpExit.FontSize         = Enum.FontSize.Size24
TpExit.Text             = "TP Exit"
TpExit.TextColor3       = Color3.new(1, 1, 1)
TpExit.MouseButton1Down:connect(function()
warn("[FloodGui] Teleporting...")
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)
 
AutoFarm.Parent           = MainFrame
AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0.5)
AutoFarm.Position         = UDim2.new(0.03, 0, 0.15, 0)
AutoFarm.Size             = UDim2.new(0, 125, 0, 36)
AutoFarm.Font             = Enum.Font.SourceSansBold
AutoFarm.FontSize         = Enum.FontSize.Size24
AutoFarm.Text             = "AutoFarm"
AutoFarm.TextColor3       = Color3.new(1, 1, 1)
AutoFarm.MouseButton1Down:connect(function()
if on then
    on                        = false
    AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0.5)
    AutoFarm.Text             = "AutoFarm"
    warn("&#91;FloodGui] Autofarm off!")
else
    on                        = true
    AutoFarm.BackgroundColor3 = Color3.new(0.5, 0, 0)
    AutoFarm.Text             = "Stop Autofarm"
    warn("&#91;FloodGui] 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&#91;i].message, "2925 2925") and not string.find(history&#91;i].message, msg) then
        wait(seconds)
        buttons(1)
local exit = game.Workspace.Multiplayer.Map:FindFirstChild("ExitRegion")
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&#91;i].message, "1700 1700") and not string.find(history&#91;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&#91;i].message, "%d%d%d%s%d%d%d") or string.find(history&#91;i].message, "%d%d%d%d%s%d%d%d%d")) and not string.find(history&#91;i].message, msg) then
        wait(seconds)
        buttons(0.3)
        Tpexit()
        r   = true
        msg = history&#91;i].message
    elseif string.find(history&#91;i].message, "NewMap") then
        r = true
    end
    if r then
        break
    end
end
end
end)
 
NoClip.Parent           = MainFrame
NoClip.BackgroundColor3 = Color3.new(0, 0, 0.5)
NoClip.Position         = UDim2.new(0.53, 0, 0.15, 0)
NoClip.Size             = UDim2.new(0, 125, 0, 36)
NoClip.Font             = Enum.Font.SourceSansBold
NoClip.FontSize         = Enum.FontSize.Size24
NoClip.Text             = "NoClip (Off)"
NoClip.TextColor3       = Color3.new(1, 1, 1)
NoClip.MouseButton1Down:connect(function()
if clip then
     clip                    = false
     NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
     NoClip.Text           = "NoClip (On)"
     warn("&#91;FloodGui] NoClip Enabled!")
else
     clip                      = true
     NoClip.BackgroundColor3 = Color3.new(0, 0, 0.5)
     NoClip.Text             = "NoClip (Off)"
     warn("&#91;FloodGui] NoClip 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)
 
Reload.Parent           = MainFrame
Reload.BackgroundColor3 = Color3.new(0, 0, 0.5)
Reload.Position         = UDim2.new(0.03, 0, 0.35, 0)
Reload.Size             = UDim2.new(0, 125, 0, 36)
Reload.Font             = Enum.Font.SourceSansBold
Reload.FontSize         = Enum.FontSize.Size24
Reload.Text             = "Reload GUI"
Reload.TextColor3       = Color3.new(1, 1, 1)
Reload.MouseButton1Down:connect(function()
local wait = Waittime.Text
local txt  = tonumber(wait)
if txt then
    warn("&#91;FloodGui] WaitTime Set!")
    on = false
    clip = true
MainFrame:Remove()
GUI(wait) 
else
on = false
clip = true
MainFrame:Remove()
GUI(seconds) 
warn("&#91;FloodGui] GUI Reloaded!")
end
end)
 
Waittime.Parent           = MainFrame
Waittime.BackgroundColor3 = Color3.new(0, 0, 0.5)
Waittime.Position         = UDim2.new(0.58, 0, 0.03, 0)
Waittime.Size             = UDim2.new(0, 90, 0, 24)
Waittime.Font             = Enum.Font.SourceSansBold
Waittime.FontSize         = Enum.FontSize.Size16
Waittime.TextSize         = 20
Waittime.Text             = "WaitTime"
Waittime.TextColor3       = Color3.new(1, 1, 1)
 
end
GUI(3)
warn("FloodGui Loaded!")

Select all text above, copy it, then paste into your executor.


🎮 How to Use the Flood Escape 2 Script

1Get a working executor – see our Roblox Executor list for free options on PC, Mobile, and Mac.
2Launch Roblox and open Flood Escape 2.
3Open your executor, then click Inject or Attach.
4Copy any script above and paste it into the executor script box.
5Press Execute — the GUI will appear in-game.
6Toggle Auto Farm, Speed Hack, ESP and other features from the GUI menu.
7Always use an alt account to protect your main.

🎮 About The Flood Escape 2 Script

Flood Escape 2 Script

Flood Escape 2 is an obby-style game where the challenge keeps ramping up and pushing through the harder stages takes real patience. Replaying sections over and over to make progress is exactly the kind of grind that these scripts are designed to cut through.

The most useful scripts here remove the obstacles or automate movement so you stop getting blocked by the same section repeatedly. Most of them load in one line and work immediately.

Always use an alt account when running scripts to protect your main. Check back here after major updates since obby stage changes can sometimes break the automation.

Looking for free rewards? Check out our Flood Escape 2 Codes page for every working code.

The Flood Escape 2 covers the full map layout, ability tiers, and patch history if you want to dig into the mechanics beyond what the script handles.


⚠️ Disclaimer: All scripts on this page are for educational purposes only. Using scripts in Roblox violates the Roblox Terms of Service and may result in your account being permanently banned or suspended without warning. RobloxDatabase.com is not responsible for any consequences from using these scripts. Always use an alt account — never your main.


MORE FOR FLOOD ESCAPE 2

Working Codes for Flood Escape 2  |  Flood Escape 2 Game Wiki

Another Similar Game :

Flood Escape 2 CodesFlood Escape 2 Codes Flood Escape 2Flood Escape 2 +1 Speed Prison Escape Script+1 Speed Prison Escape Script Escape Tsunami For Brainrots ScriptEscape Tsunami For Brainrots Script Escape Obbies For Brainrots! ScriptEscape Obbies For Brainrots! Script Escape the Darkness ScriptEscape the Darkness Script

Leave a Comment Cancel reply

Promo Codes

Get your hands on exclusive cosmetics, in-game currency, and special bonuses! Redeem our extensive list of Roblox promo codes and stay ahead of the game.

FREE ITEMS
PROMO CODES
STAR CODES

Game Codes

Unlock exclusive in-game perks, boost your stats, and get an edge in your favorite Roblox games with our collection of verified and non expired game codes.

VIEW ALL
GENRES
POPULAR CODES

Items Codes

Customize your Roblox avatar to the max! Browse our thousands of collection of item codes to unlock unique hats, accessories, gear, and many more.

VIEW ALL
CATEGORY
POPULAR ITEMS

Music Codes

Jam out to your favorite tunes in Roblox! Discover music codes for the latest hits and timeless classics to personalize your in-game experience.

VIEW ALL
STYLE
ARTIST

Best Games

Looking for the hottest Roblox games? Explore our curated recommendations, discover hidden gems, and find your next gaming obsession.

BEST GAMES
THEMES
POPULAR GAMES

Roblox Guides

Level up your Roblox knowledge! Access in-depth guides, powerful tools, and valuable resources to enhance your gameplay and creation skills.

VIEW ALL
GAMES WIKI
ERRORS

Tools

Tap into the Roblox community! Find player-created tools, expert guides, and collaborative resources to elevate your Roblox journey.

VIEW ALL
USERNAME GENERATOR
EXECUTOR

Roblox Scripts

Unlock hidden potential, customize your gameplay, and push the limits of your favorite Roblox game with our powerful script collection.

VIEW ALL
GENRE
POPULAR SCRIPTS
Roblox Database Logo

Roblox Database is your all-in-one source for anything and everything related to Roblox.

Whether you’re looking for the latest game codes, item codes, or promo codes or need some scripting guidance, we’ve got you covered.

Facebook-f Twitter Youtube Instagram Pinterest
Quick Links
  • About
  • Contact
  • Tools
  • Privacy Policy
  • Terms of Service
  • Copyright Policy
Menu
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
  • Home
  • Roblox Scripts
  • Game Codes
  • Roblox Codes
    • Promo Codes
    • Item Codes
    • Music Codes
    • Star Codes
    • Color Codes
  • Best Games
  • Games
  • Roblox Guides
  • Roblox Tools
Download
chrome logo
  • Email: robloxdatabase23@gmail.com
  • Android : Coming Soon
  • IOS : Coming Soon

© 2026 All Rights Reserved.