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

--Script

local DiscordLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/discord%20lib.txt"))()
local win = DiscordLib:Window("faven.lua")
local serv = win:Server("Rolling Riches", "")
local rockChannel = serv:Channel("Autofarm")

local toggleActive = false

rockChannel:Toggle("Finish Race", false, function(state)
    toggleActive = state
    if toggleActive then
        spawn(function()
            while toggleActive do
                local remote = game:GetService("ReplicatedStorage").Events:FindFirstChild("RockReachedFinishEvent")
                if remote and remote:IsA("RemoteEvent") then
                    remote:FireServer()
                    print("Attempting to Finsih Race")
                else
                    warn("Cannot Finish Race!")
                end
                wait(0.5)
            end
        end)
    end
end)

AdBlock Detected

This site relies on ads to stay online.
Please disable your ad blocker to continue.