ADVERTISEMENTREMOVE ADS
Game icon

Auto Trophies

Script preview thumbnail
Script Preview

Description

Failsafe Checks – Prevents errors if an object doesn't exist.

✅ Enable teleporting: _G.Toggles.AutoTeleport = true
❌ Disable teleporting: _G.Toggles.AutoTeleport = false

Mobile-Friendly – Uses task.spawn and task.wait() for smooth performance.

Failsafe Checks – Ensures objects exist before teleporting.

Features:

  • Auto Farm

Tested with

ADVERTISEMENTREMOVE ADS
50 Lines • 1.46 KiB
Raw
local players = game:GetService("Players")
local workspaceObjects = workspace["\229\156\186\230\153\175\231\180\160\230\157\144"]["\230\175\148\232\181\155\229\140\186\229\159\159"]
local track = workspace.Track
local player = players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
_G.Toggles = {
AutoTeleport = false
}
local function getHumanoidRootPart()
character = player.Character or player.CharacterAdded:Wait()
return character and character:FindFirstChild("HumanoidRootPart")
end
local function teleportTo(target)
local rootPart = getHumanoidRootPart()
if rootPart and target then
rootPart.CFrame = target.CFrame
end
end
local function teleportStages()
task.spawn(function()
while _G.Toggles.AutoTeleport do
local startPosition = workspaceObjects:GetChildren()[2]
if startPosition then
teleportTo(startPosition)
task.wait(1)
end
for i = 1, 16 do
local stage = track:FindFirstChild("Stage" .. string.format("%02d", i))
if stage and stage:FindFirstChild("Sign") then
teleportTo(stage.Sign)
task.wait(0.4)
end
end
if startPosition then
teleportTo(startPosition)
task.wait(1.2)
end
end
end)
end
teleportStages()
ADVERTISEMENTREMOVE ADS

Comments

5 comments
to add a comment
De

Does not work on mobile idiot don’t put tag then

0
0
th

@DexterCadby Listen, you don't have to be rude; just tell me what's wrong, and I'll take care of it. Mobile users' constant complaints and lack of input make it impossible to issue upgrades, and this behavior prevents the mobile community from receiving a functional script or anything else.

0
0
EL

Windows solara awp.gg xeno 😭

0
0
EL

@theboywhocried 👎 Windows

0
0
EL

mobile friendly Windows ?

0
0
ADVERTISEMENTREMOVE ADS