--Uploaded On https://youtube.com/AhmedMode
--Published on https://ahmedmode.com
--Credits goes to the devs!
--Scripts Below:

--Script

local replicated_storage = game:GetService("ReplicatedStorage")
local workspace = game:GetService("Workspace")
local players = game:GetService("Players")
local local_player = players.LocalPlayer

if getgc then
    for _, obj in getgc(true) do
        if typeof(obj) == "table" then
            if rawget(obj, "Cooldown") then
                obj.Cooldown = 0
                print("Set Cooldown to 0")
            end
        end
    end
else
    print("getgc not found")
end

getgenv().auto_farm = true

while true do
    if getgenv().auto_farm then
        for i, v in pairs(players:GetPlayers()) do
            if v ~= local_player and local_player.Character and local_player.Character:FindFirstChild("HumanoidRootPart") and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
                local_player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame + Vector3.new(0, 13, 0)
                replicated_storage:WaitForChild("Remotes"):WaitForChild("Client"):WaitForChild("SkewerSwing"):FireServer()
                replicated_storage:WaitForChild("Remotes"):WaitForChild("Client"):WaitForChild("SkewerHit"):FireServer(v)
                replicated_storage:WaitForChild("Remotes"):WaitForChild("Client"):WaitForChild("EatSkewer"):FireServer()
                task.wait(0.01)
            end
        end
    end
    task.wait()
end