Untitled

 avatar
unknown
plain_text
3 years ago
449 B
10
Indexable
--// Fossil Farm
--// Made By Urvoge#5862

--// Configurations
local Worlds = {
    'RINPOS1',
    'RINPOS2'
}

local Settings = {
    Interval = 5 -- Interval between warping (seconds)
}

--// Initiation
for _, Bot in next, GetBots() do
    RunThread(function()
        while true do
            for _, World in next, Worlds do
                Bot:Warp(World)
                Sleep(Settings.Interval * 1000)
            end
        end
    end)
end
Editor is loading...