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

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.

Using scripts can result in account bans. It is recommended to use an alt account when testing new scripts. Build A Boat Gui Script | Auto Farms, Auto Buy,...

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 This script provides a functional graphical user interface