---
name: PathStatus
last_updated: 2026-06-11T23:11:58Z
type: enum
summary: "The success of a Path generated by PathfindingService."
---

# PathStatus

The success of a [Path](/docs/reference/engine/classes/Path.md) generated by [PathfindingService](/docs/reference/engine/classes/PathfindingService.md).

**Type:** enum

## Items

| Name | Value | Description |
|------|-------|-------------|
| `Success` | 0 | Path found successfully. |
| `ClosestNoPath` | 1 | Path doesn't exist, returns path to closest point. |
| `ClosestOutOfRange` | 2 | Goal is out of MaxDistance range, returns path to closest point you can reach within MaxDistance. |
| `FailStartNotEmpty` | 3 | Failed to compute path; the starting point is not empty. |
| `FailFinishNotEmpty` | 4 | Failed to compute path; the finish point is not empty. |
| `NoPath` | 5 | Path doesn't exist. |