Build A Boat Script | INFINITE BLOCKS

Created by Suika Ibuki

Features:

  • INFINITE BLOCKS

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

-- 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;

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

More Scripts!

TOP 10 TRENDING SCRIPTS