The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Build A Boat For Treasure script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 14



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  spawn(function()
  2. local guiinf = game:GetService("Players").LocalPlayer.PlayerGui.BuildGui.InventoryFrame.ScrollingFrame.BlocksFrame
  3. _G.Blocks = false
  4. while game:GetService("RunService").RenderStepped:wait() do
  5.    if _G.Blocks then return end
  6.        for i,v in pairs(guiinf:GetDescendants()) do
  7.                if v.Name == "AmountText" then
  8.                v.Text = math.huge
  9.            end
  10.        end
  11.    end
  12. end)