Skip to main content
This is how the script sees the data of a vehicle. This data is what is returned by GetVehiclePersistenceData.

Detailed Breakdown

Props

The props table contains all the vehicle modifications and customization options. It is retrieved using lib.getVehicleProperties.

Damage Data

The damageData table stores specific health values:
  • bodyDamage: The health of the vehicle body (0-1000).
  • engineDamage: The health of the engine (0-1000).
  • fuel: Current fuel level (0-100).
  • deformation: Visual deformation data.
The deformation field is only available if the VehicleDeformation plugin is enabled.

Temporary Vehicles

Vehicles can be marked as temporary, meaning they will not persist permanently.
  • isTemp: If true, the vehicle is temporary and will be deleted from the database under certain conditions (like server restarts or time limits).
  • deleteAt: An optional Unix timestamp (in seconds) representing when the vehicle is scheduled for automatic permanent deletion.

Plugins

Vehicle Deformation

We support the VehicleDeformation resource to sync vehicle deformation. Check the plugin page for more info.
Last modified on March 11, 2026