🌠 The Glitch Obby! Complete game

Description

Finish the game/Teleport to each checkpoint This script is very lightweight (and open-source), it won’t affect the game’s performance Download it: https://mewzz.vercel.app/scripts/GlitchObby.lua

local player = game.Players.LocalPlayer
local leaderstats = player:WaitForChild("leaderstats")
local currentStageValue = leaderstats:WaitForChild("Stage")
local checkpointsFolder = game.Workspace.Map.GDCO.Checkpoints

local function getNextStage(currentStage)
    local nextStageNumber = currentStage + 1
    local nextStagePart = checkpointsFolder:FindFirstChild(tostring(nextStageNumber))
    return nextStagePart
end

local function teleportToCheckpoint(checkpointPart)
    if checkpointPart then
        local targetCFrame = checkpointPart.CFrame * CFrame.new(0, 3, 0)
        player.Character:SetPrimaryPartCFrame(targetCFrame)
    end
end

local function startTeleportingFromCurrentStage()
    local currentStage = currentStageValue.Value
    while true do
        local nextCheckpoint = getNextStage(currentStage)
        if not nextCheckpoint then break end
        teleportToCheckpoint(nextCheckpoint)
        currentStage = currentStage + 1
        currentStageValue.Value = currentStage
        wait(0.5)
    end
end

startTeleportingFromCurrentStage()

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

πŸ“‹ Notice: If you find any of the scripts patched or not working, please report it to Forever4D throughΒ Discord. The script will be removed or marked as patched!

Β