local teleportPosition = Vector3.new(-70.165, 6907.957, -0.184) local screenGui = Instance.new("ScreenGui") screenGui.ResetOnSpawn = false screenGui.Parent = game.CoreGui local button = Instance.new("TextButton") button.Size = UDim2.new(0, 100, 0, 50) button.Position = UDim2.new(0.9, -50, 0.8, 0) button.Text = "TP" button.BackgroundColor3 = Color3.new(1, 0, 0) button.TextColor3 = Color3.new(1, 1, 1) button.Parent = screenGui button.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(teleportPosition) end end)