ADVERTISEMENTREMOVE ADS
Game icon

Automated leveling CHECK DESCRIPTION

Script preview thumbnail
Script Preview

Description

After a 60-second delay, the script starts, and then the auto-leveling begins for about 10 seconds until you're kicked. Since I don't know how to make an auto-rejoin like Infinite Yield, the script reconnects you to the game after a 90-second delay. Also, check the console to see if the script is running. (This script only works on Earth. You can download it and place it in your auto-execute folder, or do it manually, whichever works best for you).

Features:

  • Auto levels
  • Auto Rejoin
ADVERTISEMENTREMOVE ADS
2 Lines • 1.08 KiB
Raw
--made by Black/42Hrz
spawn(function() local plr = game.Players.LocalPlayer local farm = true print("Auto level starting soon...") local function startAutolevel() wait(60) print("Auto level starting now!") local ohNumber1 = 1 while true do wait() if farm then plr.QuestRemoteEvents:WaitForChild("TreasureAhoy"):FireServer(ohNumber1) ohNumber1 = ohNumber1 > 120 and 1 or ohNumber1 + 1 wait(ohNumber1 > 120 and 0.1 or 0) end end end local function handleRejoinAfterDelay() wait(90) local Players, TeleportService = game:GetService("Players"), game:GetService("TeleportService") local PlaceId, JobId = game.PlaceId, game.JobId local function handleRejoin() if #Players:GetPlayers() <= 1 then print("Auto rejoin triggered: Attempting to rejoin...") wait(1) local success, errorMsg = pcall(function() plr:Kick("\nRejoining...") TeleportService:Teleport(PlaceId, plr) end) if not success then warn("Failed to rejoin: " .. errorMsg) handleRejoinAfterDelay() end else TeleportService:TeleportToPlaceInstance(PlaceId, JobId, plr) end end handleRejoin() end spawn(startAutolevel) spawn(handleRejoinAfterDelay) end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS