-- FE Bypass Brook v1.0 | Delta Executor local player = game:GetService("Players").LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "FEBrook" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local main = Instance.new("Frame") main.Size = UDim2.new(0, 520, 0, 360) main.Position = UDim2.new(0.5, -260, 0.5, -180) main.BackgroundColor3 = Color3.fromRGB(160,160,160) main.BorderSizePixel = 3 main.Active = true main.Draggable = true main.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -20, 0, 40) title.Position = UDim2.new(0, 10, 0, 10) title.BackgroundTransparency = 1 title.Text = "FE Bypass Brook v1.0" title.Font = Enum.Font.SourceSansBold title.TextSize = 28 title.TextColor3 = Color3.new(0,0,0) title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = main local function button(text, x, y, func) local b = Instance.new("TextButton") b.Size = UDim2.new(0, 150, 0, 80) b.Position = UDim2.new(0, x, 0, y) b.BackgroundColor3 = Color3.fromRGB(175,175,175) b.BorderSizePixel = 2 b.Text = text b.Font = Enum.Font.SourceSansBold b.TextSize = 20 b.TextColor3 = Color3.new(0,0,0) b.Parent = main b.MouseButton1Click:Connect(func) end button("Infinite Yeld", 20, 70, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) button("Tiger X", 185, 70, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/BalintTheDevXBack/Games/refs/heads/main/TIGER_X_Brookhaven"))() end) button("Project Yoda", 350, 70, function() loadstring(game:HttpGet("https://api.junkie-development.de/api/v1/luascripts/public/8b5174946c76ba81d5c374bd4a69f7694d10c837e37522a04c91b2b32991e20e/download"))() end) button("Croquette Hub", 20, 170, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Daivd977/Coquettekk/refs/heads/main/README.md"))() end) button("Tubers Hub", 185, 170, function() loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\103\105\116\104\117\98\46\99\111\109\47\99\111\110\116\97\116\101\115\116\101\56\47\79\97\79\97\79\97\79\97\45\69\98\69\98\69\98\69\98\47\114\97\119\47\114\101\102\115\47\104\101\97\100\115\47\109\97\105\110\47\84\117\98\101\114\115\72\117\98\79\98\102\46\116\120\116\34\41\41\40\41")() end) button("invisible\nFE", 350, 170, function() loadstring(game:HttpGet("https://pastebin.com/raw/3Rnd9rHf"))() end) local footer = Instance.new("TextLabel") footer.Size = UDim2.new(1, -40, 0, 40) footer.Position = UDim2.new(0, 20, 1, -50) footer.BackgroundTransparency = 1 footer.Text = "More scripts coming soon..." footer.Font = Enum.Font.SourceSansBold footer.TextSize = 22 footer.TextColor3 = Color3.new(0,0,0) footer.Parent = main