Build A Boat Infinite Blocks

MADE BY Suika Ibuki

  • INFINITE BLOCKS
  • you need 400-600 gold (what I tested with)

GAME LINK:
BUILD A BOAT FOR TREASURE

SCRIPT:

-- services.
local game = game;
local getService = game.GetService;

local workspace = getService(game, 'Workspace');
local players = getService(game, 'Players');

-- client&indexing.
local client = players.LocalPlayer;
local clientGuis = client.PlayerGui;

local destroy = game.Destroy;
local isA = game.IsA;
local findFirstChild = game.FindFirstChild;

-- remove annoying buying effects.
local itemGainedScript = findFirstChild(clientGuis.ItemGained, 'LocalScript', true); -- Recursive because im lazy (〃▽〃)
if itemGainedScript then
   destroy(itemGainedScript);
end;

clientGuis.DescendantAdded:Connect(function(c) -- Not going to bother with indexing a signal <( ̄ ﹌  ̄)>
   if c.Name == 'NoChestAnimation' or (isA(c, 'LocalScript') and c.Parent.Name == 'DisplayGainedItem') then
       task.defer(destroy, c);
   end;
end);


-- funny while true do!
local buy = workspace.ItemBoughtFromShop;
local invoke_server = buy.InvokeServer;

while true do
   pcall(invoke_server, buy, 'Winter Chest', 6); -- Due the game actually erroring.
   task.wait();
end;

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!