Pular para o conteúdo
Funcional

auto tp thing for free ugc grind

CLclarkdevlinorg1 visualizaçõesUniversal26 de jul. de 2026
Compartilhar
auto tp thing for free ugc grind

Código do 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)

Descrição

auto teleports the player to the next checkpoint

Comentários (0)

Entre para participar da conversa

  • Seja o primeiro a comentar.

Perguntas frequentes

Como uso o script auto tp thing for free ugc grind?
Copie o código acima, abra seu executor de Roblox, cole o código e pressione executar enquanto estiver no jogo. As funcionalidades são ativadas instantaneamente assim que o script é executado.
O script auto tp thing for free ugc grind é gratuito?
Sim. Este script é gratuito para copiar e usar. Se ele usa um sistema de chaves, siga o link "Obter chave" para desbloqueá-lo sem custo.
É seguro usar o script auto tp thing for free ugc grind?
O código-fonte completo é exibido nesta página para que você possa ler exatamente o que ele faz antes de executá-lo. Sempre use um executor confiável, e lembre-se de que usar scripts é contra os termos de serviço do Roblox — use por sua conta e risco.
Qual executor funciona com auto tp thing for free ugc grind?
Este script funciona com a maioria dos executores populares do Roblox. Consulte nossa página de executores para encontrar um executor gratuito ou pago confiável para seu dispositivo.
auto tp thing for free ugc grind | BloxScripter