Inf Money Rocks Mobile 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.
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
Script Code
local rs = game:GetService("RunService") getgenv().rocks = {} local hook;hook = hookmetamethod(game, "__namecall", function(self, ...) local args = {...} if not checkcaller() and getnamecallmethod() == "FireServer" then if tostring(self) == "PickupReplicate" then getgenv().rocks[#getgenv().rocks+1] = rs.Stepped:Connect(function() game:GetService("ReplicatedStorage").Remotes.RockCollect:FireServer(args[2]) end) elseif tostring(self) == "ThrowReplicate" then getgenv().rocks[1]:Disconnect() table.remove(getgenv().rocks, 1) --[[ if your game gets to laggy and your unable to through your whole stack: for _,rock in pairs(getgenv().rocks) do rock:Disconnect() end ]] end end return hook(self, ...) end)