Advertisement
CTCreeper1

Carry Me Script Free

Sep 3rd, 2023
937
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/Wh1t3Bl4ckPT/Scripts/main/Protected_6640836446039649.lua"))()
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3. local Window = Library.CreateLib("Carry Me", "DarkTheme")
  4. local Tab = Window:NewTab("Stage Teleporter")
  5. local Section = Tab:NewSection("Stage Teleporter")
  6.  
  7. -- Function to teleport the player to a specific position
  8. local function teleportToPosition(position)
  9. game.Players.LocalPlayer.Character:MoveTo(position)
  10. end
  11.  
  12. -- Adding buttons for each checkpoint
  13. for i = 1, 6 do
  14. local checkpointPosition = game:GetService("Workspace").Checkpoints["checkpoint" .. i].Position
  15. Section:NewButton("Checkpoint " .. i .. " - " .. (i - 1) * 100 .. " Meters","", function()
  16. teleportToPosition(checkpointPosition)
  17. end)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement