Ir al contenido
Funcional

auto tp thing for free ugc grind

CLclarkdevlinorg1 vistasUniversal26 jul 2026
Compartir
auto tp thing for free ugc grind

Código del script

Lua
local Players = game:GetService("Players")

local player = Players.LocalPlayer
local running = false
local DELAY = 0.5

local gui = Instance.new("ScreenGui")
gui.Name = "CheckpointTestGui"
gui.ResetOnSpawn = false
gui.Parent = player:WaitForChild("PlayerGui")

local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 190, 0, 45)
button.Position = UDim2.new(0, 20, 0, 120)
button.BackgroundColor3 = Color3.fromRGB(170, 45, 45)
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.TextSize = 18
button.Text = "Checkpoints: OFF"
button.Parent = gui

button.MouseButton1Click:Connect(function()
	running = not running
	button.Text = running and "Checkpoints: ON" or "Checkpoints: OFF"
	button.BackgroundColor3 = running and Color3.fromRGB(45, 150, 70) or Color3.fromRGB(170, 45, 45)
end)

local function getRoot()
	local character = player.Character or player.CharacterAdded:Wait()
	return character:WaitForChild("HumanoidRootPart")
end

task.spawn(function()
	while true do
		if running then
			local root = getRoot()

			for i = 1, 98 do
				if not running then break end

				local checkpoint = workspace:FindFirstChild("Checkpoint" .. i, true)

				if checkpoint and checkpoint:IsA("BasePart") then
					root.CFrame = checkpoint.CFrame + Vector3.new(0, 3, 0)
				end

				task.wait(DELAY)
			end
		end

		task.wait(0.1)
	end
end)

Descripción

auto teleports the player to the next checkpoint

Comentarios (0)

Inicia sesión para unirte a la conversación

  • Sé el primero en comentar.

Preguntas frecuentes

¿Cómo uso el script auto tp thing for free ugc grind?
Copia el código de arriba, abre tu executor de Roblox, pega el código y presiona ejecutar mientras estés en el juego. Las funciones se activan instantáneamente una vez que el script se ejecuta.
¿El script auto tp thing for free ugc grind es gratuito?
Sí. Este script es gratuito para copiar y usar. Si usa un sistema de claves, sigue el enlace «Obtener clave» para desbloquearlo sin costo.
¿Es seguro usar el script auto tp thing for free ugc grind?
El código fuente completo se muestra en esta página para que puedas leer exactamente qué hace antes de ejecutarlo. Usa siempre un executor de confianza, y recuerda que usar scripts va en contra de los términos de servicio de Roblox — úsalos bajo tu propio riesgo.
¿Qué executor funciona con auto tp thing for free ugc grind?
Este script funciona con la mayoría de los executores populares de Roblox. Consulta nuestra página de executores para encontrar un executor gratuito o de pago confiable para tu dispositivo.
auto tp thing for free ugc grind | BloxScripter