コンテンツへスキップ
動作中

auto tp thing for free ugc grind

CLclarkdevlinorg1 閲覧数Universal2026年7月26日
共有
auto tp thing for free ugc grind

スクリプトコード

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)

説明

auto teleports the player to the next checkpoint

コメント (0)

会話に参加するにはログインしてください

  • 最初のコメントを投稿しましょう。

よくある質問

auto tp thing for free ugc grindスクリプトはどう使いますか?
上のスクリプトコードをコピーし、Robloxエグゼキューターを開いて貼り付け、ゲーム中に実行を押してください。スクリプトが実行されると、機能が即座に有効になります。
auto tp thing for free ugc grindスクリプトは無料ですか?
はい。このスクリプトは無料でコピー&使用できます。キーシステムを使用している場合は、リンクから無料でキーを取得してください。
auto tp thing for free ugc grindスクリプトの使用は安全ですか?
ソースコード全体がこのページに表示されるので、実行前に内容を正確に確認できます。信頼できるエグゼキューターを使用し、スクリプトの使用はRobloxの利用規約に違反するため、自己責任で使用してください。
auto tp thing for free ugc grindに対応するエグゼキューターは?
このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。
auto tp thing for free ugc grind | BloxScripter