-- By Dev - wendel and source code
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local targetPos = CFrame.new(-33.09382247924805, 207.9499969482422, 111.34393310546875)
getgenv().autofarm = true
local function bypassanticheat()
local Anticheats = {
player.PlayerScripts:FindFirstChild("QuitsAntiCheatChecker"),
player.PlayerScripts:FindFirstChild("QuitsAntiCheatLocal"),
game:GetService("StarterPlayer").StarterPlayerScripts:FindFirstChild("QuitsAntiCheatChecker"),
game:GetService("StarterPlayer").StarterPlayerScripts:FindFirstChild("QuitsAntiCheatLocal"),
}
for _, v in ipairs(Anticheats) do
if v then v:Destroy() end
end
end
local function autofarm()
task.spawn(function()
while getgenv().autofarm do
local character = player.Character
if character and character:FindFirstChild("HumanoidRootPart") then
character.HumanoidRootPart.CFrame = targetPos
end
task.wait()
end
end)
end
local function toggleautofarm(value)
getgenv().autofarm = value
if getgenv().autofarm then
bypassanticheat()
task.wait(0.5)
autofarm()
end
end
toggleautofarm(getgenv().autofarm)
Comments
No comments yet
Be the first to share your thoughts!