Functions: AutoFarm
Installation guide:
Copy the script from the button below.
Run any Injector (We recommend KRNL Injector)
Install it, insert the script and click execute
Enjoy it)
Thank you for using our website
Your script:
getgenv().AutoMuscle = true
getgenv().AutoSell = true
local Remote = game:GetService("ReplicatedStorage").RemoteEvent
while task.wait() do
if AutoMuscle then
local args = {
[1] = {
[1] = "GainMuscle"
}
}
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
end
if AutoSell then
local args = {
[1] = {
[1] = "SellMuscle"
}
}
game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
end
end