> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get if player is owner of vehicle plate

> Check whether a specific player is the owner of a specific vehicle plate.

Returns whether a player ID is the owner of a specific plate.

<CodeGroup>
  ```lua Export theme={null}
  exports["jobs_creator"]:isPlayerOwnerOfVehiclePlate(playerId, plate)
  ```

  ```lua Example theme={null}
  local playerId = 1
  local plate = "40PQB261"
  local isTheVehicleOwner = exports["jobs_creator"]:isPlayerOwnerOfVehiclePlate(playerId, plate)
  print("Is the player owner of that plate: " .. tostring(isTheVehicleOwner))
  ```
</CodeGroup>

### Parameters

| Name       | Data Type | Description        |
| ---------- | --------- | ------------------ |
| `playerId` | integer   | Player's server ID |
| `plate`    | string    | Vehicle's plate    |

### Return value

| Name      | Data Type | Description                                    |
| --------- | --------- | ---------------------------------------------- |
| `isOwner` | boolean   | Whether the player is the vehicle owner or not |


## Related topics

- [Buyable Vehicles](/jobs-creator/server/buyable-vehicles/index.md)
- [Get if local player owns a plate](/vehicles-keys/client/get-if-local-player-owns-a-plate.md)
- [Get if player ID owns a plate](/vehicles-keys/server/get-if-player-id-owns-a-plate.md)
- [Get inventory ID from plate](/jaksam-inventory/functions/server/get-inventory-id-from-plate.md)
- [Get owned plates of local player](/vehicles-keys/client/get-owned-plates-of-local-player.md)
