Script | Auto Farms, Auto Buy,... - Build A Boat Gui

Walk through walls and obstacles without taking damage. The Script

Automatically purchases specific chests (like Common or Legendary) as soon as you have enough gold.

This script provides a functional graphical user interface (GUI) for the Roblox game Build a Boat for Treasure . It automates the primary gameplay loop to help you collect gold and items efficiently. Build A Boat Gui Script | Auto Farms, Auto Buy,...

Adjust your character's walk speed and jump power for easier manual navigation.

Using scripts can result in account bans. It is recommended to use an alt account when testing new scripts. Walk through walls and obstacles without taking damage

Open your preferred (e.g., Synapse, Fluxus, or Delta). Copy the code block above. Inject/Attach the executor to the Roblox process.

Paste the code into the executor's text box and click . It automates the primary gameplay loop to help

local Library = loadstring(game:HttpGet("https://githubusercontent.com"))() local Window = Library.CreateLib("Build A Boat - Auto Hub", "DarkScene") -- MAIN TAB local Main = Window:NewTab("Main") local MainSection = Main:NewSection("Automation") MainSection:NewToggle("Auto Farm Gold", "Teleports you to the end repeatedly", function(state) getgenv().AutoFarm = state while getgenv().AutoFarm do local body = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") for i = 1, 10 do if not getgenv().AutoFarm then break end body.CFrame = game:GetService("Workspace").Boats:FindFirstChild("Stage" .. i).Position task.wait(2) end -- End Chest Teleport body.CFrame = game:GetService("Workspace").BoatStages.NormalStages.CaveEnd.Chest.Gold.CFrame task.wait(5) end end) -- SHOP TAB local Shop = Window:NewTab("Shop") local ShopSection = Shop:NewSection("Auto Buy Chests") ShopSection:NewToggle("Auto Buy Common Chest", "Buys common chests automatically", function(state) getgenv().AutoBuy = state while getgenv().AutoBuy do workspace.Remote.BuyChest:FireServer("Common Chest", 1) task.wait(1) end end) -- PLAYER TAB local Player = Window:NewTab("Player") local PlayerSection = Player:NewSection("Stats") PlayerSection:NewSlider("Walkspeed", "Changes your speed", 500, 16, function(s) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) Use code with caution. Copied to clipboard