-- Don't forget Leave a like ^^ local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", game.CoreGui) gui.Name = "OutTPGui" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 200, 0, 100) frame.Position = UDim2.new(0, 60, 0.4, 0) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 8) local title = Instance.new("TextLabel", frame) title.Text = "Out TP Toggle" title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundTransparency = 1 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 16 title.Parent = frame local toggle = Instance.new("TextButton", frame) toggle.Size = UDim2.new(0.8, 0, 0.4, 0) toggle.Position = UDim2.new(0.1, 0, 0.5, 0) toggle.BackgroundColor3 = Color3.fromRGB(60, 60, 60) toggle.Text = "Toggle OFF" toggle.TextColor3 = Color3.fromRGB(255, 255, 255) toggle.Font = Enum.Font.Gotham toggle.TextSize = 14 toggle.Parent = frame Instance.new("UICorner", toggle) local running = false local destination = CFrame.new(40.02, 4.00, 891.22) toggle.MouseButton1Click:Connect(function() running = not running toggle.Text = running and "Toggle ON" or "Toggle OFF" if running then task.spawn(function() while running do local char = player.Character if char and char:FindFirstChild("HumanoidRootPart") and char:FindFirstChildOfClass("Humanoid") then local hrp = char:FindFirstChild("HumanoidRootPart") local hum = char:FindFirstChildOfClass("Humanoid") hrp.CFrame = destination hum.Jump = true hum:Move(Vector3.new(0, 0, -1), false) end task.wait(0.50) -- EXACTLY 0.50s end end) end end)