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:
_G.toggle = false
for i,v in pairs(game:GetService("Workspace").Bases:GetDescendants()) do
if v.Name == "playername" then
if v.Text == game.Players.LocalPlayer.Name then
_G.folder = v.Parent.Parent.Parent.Parent.folder
end
end
end
game:GetService("Workspace")[game.Players.LocalPlayer.Name][game.Players.LocalPlayer.Name].SelectionSphere:Remove()
_G.toggle = not _G.toggle
while _G.toggle do wait()
pcall(function()
for i,v in pairs(_G.folder:GetDescendants()) do
if v.ClassName == "TouchTransmitter" then
v.Parent.CFrame = game.Players.LocalPlayer.Character.Humanoid.Torso.CFrame
wait()
end
end
end)
end