ADVERTISEMENTREMOVE ADS
Complete Obby
46,752 views
Description
Teleports to all the checkpoints in the obby, completing it for you
Features:
- Complete obby
ADVERTISEMENTREMOVE ADS
13 Lines • 334 Bytes
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
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments