top of page

Auto Win Obby but you're on a Bike Mobile Script



local player = game.Players.LocalPlayer
local checkpoints = workspace.WorldMap.Checkpoints
local function teleport()
    local checkpointCount = #


checkpoints:GetChildren()
    for i = 1, checkpointCount do
        local checkpoint = checkpoints:FindFirstChild(tostring(i))
        if checkpoint then
            player.Character:SetPrimaryPartCFrame(checkpoint:GetPivot())
            task.wait(0)
        end
    end
end
teleport() 

2 views

Comments


RobloxScriptCode

©2024, RobloxScriptCode.

bottom of page