MADE BY ChickenOnAStrip#6969
FEATURE:
- AUTOFARM
SCRIPT:
--https://www.roblox.com/games/5827078246/x10-DIAMONDS-Coins-Hero-Simulator
getgenv().autoattack = nil;
local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
local w = library:CreateWindow("Coin Heroes") -- Creates the window
local b = w:CreateFolder("Auto Farm") -- Creates the folder(U will put here your buttons,etc)
function autofarmtoggle()
spawn(function()
while getgenv().autofarm == true do
game:GetService("ReplicatedStorage").CoinToPlayer:FireServer(4)
game:GetService("ReplicatedStorage").CoinToPlayer:FireServer(4)
game:GetService("ReplicatedStorage").CoinToPlayer:FireServer(4)
game:GetService("ReplicatedStorage").Remotes.Sell:FireServer()
wait()
end
end)
end
b:Toggle("Auto Click",function(bool)
getgenv().autofarm = bool
if bool then
autofarmtoggle();
end
end)