Find any script for Roblox

Enter the name of the game or script.

oMega Obby Parkour 525 Stages! script – (Checkpoints farm)

Functions: Checkpoints farm

Script developer: GamingWD

Installation guide:Copy the script from the button below.Run any Injector (We recommend KRNL Injector)Install it, insert the script and click executeEnjoy it)

Thank you for using our website
Your script:

				
					local start_stage = 1 --stage you want to start
local end_stage = 525 --stage you want to end
local wait_time = 0.1 --longer wait time will reduce missing chance
local todo = game:GetService("Workspace").Stages:GetChildren()
local Plr = game:GetService("Players").LocalPlayer
function tp(plr, endpos)
    plr.character.HumanoidRootPart.CFrame = CFrame.new(endpos)
end
for j = start_stage, end_stage, 1 do
for i,v in pairs(todo) do
        if todo[i].name == tostring(j) then
            local todo_2 = todo[i]:GetChildren()
            for t,v in pairs(todo_2) do
                if todo_2[t].name == "Spawn" then
                    local Pos = todo_2[t].Position
                    tp(Plr, Pos)
                    wait(wait_time)
                    break
                end
            end
        end
    end
end
				
			
Leave a Comment

Your email address will not be published. Required fields are marked *