setclipboard("https://discord.gg/TR3quUFgT6") local player = game.Players.LocalPlayer local function createTpUI() local screenGui = Instance.new("ScreenGui") screenGui.Name = "TpGui" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 100) frame.Position = UDim2.new(0.5, -100, 0.5, -50) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.BorderSizePixel = 0 frame.Parent = screenGui frame.Active = true frame.Draggable = true local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 0, 30) label.Position = UDim2.new(0, 0, 0, 0) label.Text = "LAUNCH BEFORE CLICKING" label.TextColor3 = Color3.fromRGB(255, 0, 0) label.BackgroundTransparency = 1 label.Font = Enum.Font.SourceSansBold label.TextScaled = true label.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0, 50) button.Position = UDim2.new(0.1, 0, 0.5, -25) button.Text = "TP Button" button.BackgroundColor3 = Color3.fromRGB(0, 170, 255) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.SourceSansBold button.TextScaled = true button.Parent = frame button.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:WaitForChild("HumanoidRootPart") humanoidRootPart.CFrame = CFrame.new(-6969696969, 6969, 696969) end) end createTpUI() player.CharacterAdded:Connect(function() if not player:FindFirstChild("PlayerGui"):FindFirstChild("TpGui") then createTpUI() end end)