Functions: Fast farm, AutoRebirth

Installation guide:Copy the script from the button below.Run any Injector (We recommend KRNL Injector)Install it, insert the script and click executeEnjoy it)
Thank you for using our website
Your script:
Fast farm (Starting location)
local plr = game.Players.LocalPlayer
local things = workspace.__THINGS
local remote = things.__REMOTES.clickedButton
while task.wait() do -- no delay so it can go hella fucking fast + the script iterating over instances makes it go slow enough
local pets = {}; for i,v in pairs(things.Pets:FindFirstChild(plr.Name):GetChildren()) do
table.insert(pets, v.Name)
end
local coins = {}; for i,v in pairs(things.Coins.SpawnWorld:GetChildren()) do
for z,x in pairs(v:GetDescendants()) do
if table.find(pets, x.Name) then
table.insert(coins, v)
end
end
end
for i,v in pairs(coins) do
remote:FireServer(v.Coin, v)
end
end
Fast farm (Sea location)
local plr = game.Players.LocalPlayer
local things = workspace.__THINGS
local remote = things.__REMOTES.clickedButton
while task.wait() do -- no delay so it can go hella fucking fast + the script iterating over instances makes it go slow enough
local pets = {}; for i,v in pairs(things.Pets:FindFirstChild(plr.Name):GetChildren()) do
table.insert(pets, v.Name)
end
local coins = {}; for i,v in pairs(things.Coins.SeaWorld:GetChildren()) do
for z,x in pairs(v:GetDescendants()) do
if table.find(pets, x.Name) then
table.insert(coins, v)
end
end
end
for i,v in pairs(coins) do
remote:FireServer(v.Coin, v)
end
end
AutoRebirth
local plr = game.Players.LocalPlayer
local remote = workspace.__THINGS.__REMOTES.rebirth
while task.wait(0.5) do -- high delay to prevent any possible lag from script
remote:InvokeServer(plr)
end

Leave a Comment