Auto Click Clicker Madness 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
--turn off/on getgenv().autorebirth = true -- turn to false to turn off getgenv().autoclick = true -- turn to false to turn off remote = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices function tap() spawn(function() while getgenv().autoclick == true do local args = {[1] = 1} remote.ClickService.Click:FireServer(unpack(args)) task.wait() end end) end function autorebirth(rebirthamount) spawn(function() while getgenv().autorebirth == true do local args = {[1] = rebirthamount} remote.RebirthService.BuyRebirths:FireServer(unpack(args)) task.wait() end end) end -- rebirth settings autorebirth(10000) tap()