We will look at the most enjoyable aspects of this Carry Me Script you obtained from weknowconquer.com in a few minutes, where you can team up faster and complete the tracks quickly with your own character and your friend’s character.
What are the benefits of the Stage Slider Gui?
You can quickly complete intelligence games with your friend and become one in a short time, while on the other hand, you can compete against other rivals and complete the tracks quickly. This roblox script will increase your probability of survival very high.
- Auto Farm
- Teleport
- Auto Throw
- Super Jump
- Infinite Jumps
- Fly Speed
- No Clip
- Attack To Player
loadstring(game:HttpGet(“https://raw.githubusercontent.com/Wh1t3Bl4ckPT/Scripts/main/Protected_6640836446039649.lua”))()
local Library = loadstring(game:HttpGet(“https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.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