What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Auto Farm (Open Source)

Version / Update: v1.0.0
Download / Script Link
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Events = ReplicatedStorage:WaitForChild("Events")
local TileHit = Events:WaitForChild("TileHit")
local UpgradeRequest = Events:WaitForChild("UpgradeRequest")

_G.Ez = true

task.spawn(function()
while _G.Ez do
TileHit:FireServer()
task.wait()
end
end)

task.spawn(function()
while _G.Ez do
UpgradeRequest:InvokeServer("SnowValue", 1)
task.wait()
end
end)

task.spawn(function()
while _G.Ez do
UpgradeRequest:InvokeServer("Size", 1)
task.wait()
end
end)

task.spawn(function()
while _G.Ez do
UpgradeRequest:InvokeServer("Walkspeed", 1)
task.wait()
end
end)

task.spawn(function()
while _G.Ez do
UpgradeRequest:InvokeServer("Regen", 1)
task.wait()
end
end)

-- join here https://discord.gg/nQ5pCft2Ve
[ View More ]
16036f60-d9a9-4481-b8b9-fbfc2d6d08f5.webp


Just Simple Auto farm nothing more
 
Back
Top