Untitled
unknown
plain_text
4 years ago
449 B
15
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)
endEditor is loading...