Auto Win Obby but you're on a Bike Mobile Script
- aktasenesfurkan23
- Oct 20, 2024
- 1 min read
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