top of page

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

  • Writer: aktasenesfurkan23
    aktasenesfurkan23
  • Oct 20, 2024
  • 1 min read


ree
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() 

 
 
 

Comments


RobloxScriptCode

©2024, RobloxScriptCode.

bottom of page