Inf Money Punch A Brick Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.
We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
_G.AutoFarm = true -- change to false to stop ------- --this checks if there is the multipler in the brick wall, and if not it adds it so you can more money, idk if needed but i havent tested w/o it so ill keep it. for _, h in pairs(game:GetService("Workspace").Walls:GetDescendants()) do if h:IsA("Part") and h.Name == "Wall" then pt = h:GetChildren() if #pt == 0 then local mp = Instance.new("NumberValue") mp.Parent = h mp.Value = 300000000000 mp.Name = "Multiplier" end end end -------- while _G.AutoFarm do workspace.UpgradeBone:FireServer() local args = { [1] = math.ceil(5* 1.9 ^ game.Players.LocalPlayer.BoneCount.Value), [2] = math.ceil(5* 1.9 ^ game.Players.LocalPlayer.BoneCount.Value) } workspace.AddBones:FireServer(unpack(args)) firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").SellPart, 0) wait() firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").SellPart, 1) end