top of page

Carry Me: Stage Slider Mobile Script

  • Writer: aktasenesfurkan23
    aktasenesfurkan23
  • May 14, 2024
  • 1 min read

With the help of a script called Stage Slider, users can alter the game's stages to their preference. This feature makes it simple for players to move between stages and discover new game sections.


ree
loadstring(game:HttpGet("https://raw.githubusercontent.com/Wh1t3Bl4ckPT/Scripts/main/Protected_6640836446039649.lua"))()
local Window = Library.CreateLib("Carry Me", "DarkTheme")
local Tab = Window:NewTab("Stage Teleporter")
local Section = Tab:NewSection("Stage Teleporter")
-- Function to teleport the player to a specific position
local function teleportToPosition(position)
    game.Players.LocalPlayer.Character:MoveTo(position)
end
-- Adding buttons for each checkpoint
for i = 1, 6 do
    local checkpointPosition = game:GetService("Workspace").Checkpoints["checkpoint" .. i].Position
    Section:NewButton("Checkpoint " .. i .. " - " .. (i - 1) * 100 .. " Meters","", function()
        teleportToPosition(checkpointPosition)
    end)
end

Comments


RobloxScriptCode

©2024, RobloxScriptCode.

bottom of page