Find any script for Roblox

Enter the name of the game or script.

Script – Great Obby

Thank you for using our website
Your script:

NO KEY

local container = workspace.Checkpoints
local checkpoints = container:GetChildren()
local plr = game.Players.LocalPlayer
local char = plr.Character
table.sort(checkpoints, function(a, b)
    return tonumber(a.Name) < tonumber(b.Name)
end)
for _, v in pairs(checkpoints) do
    char:PivotTo(v:GetPivot())
	task.wait()
end