Functions: Autofarm Level

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:
if game.Players.LocalPlayer == nil then
game.Players:GetPropertyChangedSignal("LocalPlayer"):Wait()
end
for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Idled)) do
v:Disable()
end
local Debounce = false
game:GetService('RunService').Stepped:connect(function()
if not Debounce and game.Players.LocalPlayer:FindFirstChild("PlayerGui") and game.Players.LocalPlayer.PlayerGui:FindFirstChild("MainGUI") then
Debounce = true
wait(0.1)
if game.Players.LocalPlayer.PlayerGui.MainGUI:FindFirstChild("Start") and game.Players.LocalPlayer.PlayerGui.MainGUI.Start:FindFirstChild("PlayButton") then
local Events = getconnections(game.Players.LocalPlayer.PlayerGui.MainGUI.Start.PlayButton.MouseButton1Click)
for i,v in pairs(Events) do
v:Fire()
end
--game.ReplicatedStorage.Events.Spawn:FireServer()
elseif game.Players.LocalPlayer.PlayerGui.MainGUI:FindFirstChild("StatsGUI") then
local Tool = game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") or game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
if Tool ~= nil then
for i,Tool in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if Tool:IsA("Tool") then
Tool.Parent = game.Players.LocalPlayer.Character
wait()
Tool:Activate()
game.ReplicatedStorage.Events.SpellCast:FireServer({Tool,Vector3.new(0,0,0)})
wait()
Tool.Parent = game.Players.LocalPlayer.Backpack
end
end
else
game.Players.LocalPlayer.Character:BreakJoints()
end
end
Debounce = false
end
end)