Build A Boat Gui Script | Auto Farms, Auto Buy,... May 2026
Walk through walls and obstacles without taking damage. The Script
Paste the code into the executor's text box and click . Build A Boat Gui Script | Auto Farms, Auto Buy,...
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
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 It is recommended to use an alt account
Open your preferred (e.g., Synapse, Fluxus, or Delta). Copy the code block above. Inject/Attach the executor to the Roblox process.