| Property | Value |
|---|---|
| Native Name | IS_POINT_ON_ROAD |
| Hash | 0x125BF4ABFC536B09 |
| Return Type | BOOL |
| Build | 1207 |
| Parameters | x (float), y (float), z (float), vehicle (Vehicle) |
Description: ```
Gets a value indicating whether the specified position is on a road.
The vehicle parameter is not implemented (ignored).
### Usage
**Lua (Direct):**
```lua
local result = IsPointOnRoad(x, y, z, vehicle)
Lua (Hash):
local result = Citizen.InvokeNative(0x125BF4ABFC536B09, x, y, z, vehicle)