top of page

Auto Win Obby but you're a Ball Mobile Script

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


local player = game.Players.LocalPlayer
local sphere = workspace:FindFirstChild(player.Name).Sphere
local checkpoints = workspace.Checkpoints
local function teleport()
    for i = 1, 121 do
        local checkpoint = checkpoints:FindFirstChild(tostring(i))
        if checkpoint then
            sphere.CFrame = checkpoint.PrimaryPart.CFrame
            task.wait(0)
        end
    end
end
teleport() 



Comments


RobloxScriptCode

©2024, RobloxScriptCode.

bottom of page