Created by Ezpi
Features:
- AUTO FARM
- AUTO REBIRTH
SCRIPTS: [2]
AUTO FARM
--[[ Created by Ezpi ]]--
-- Variables
local Player = game:GetService("Players").LocalPlayer
local Blocks = game:GetService("Workspace").Plots[Player.Name].Blocks
-- Auto Merge
while task.wait(0.1) do
for _, Block in next, Blocks:GetChildren() do
firetouchinterest(Block, Block, 0)
firetouchinterest(Block, Block, 1)
task.wait()
end
end
AUTO REBIRTH
local Remote = game:GetService("ReplicatedStorage").Functions.Rebirth
while task.wait(1) do
task.spawn(function()
Remote:InvokeServer()
end)
end