onClientVehicleRespawn | Multi Theft Auto: Wiki Skip to content

onClientVehicleRespawn

Client-side
Server-side
Shared

This event is triggered when a vehicle respawns.

Parameters

This event does not pass any parameters to the handler function.

Source

element: The source of this event is the vehicle that respawned.

Code Examples

client

This example outputs to the console that a vehicle has respawned.

addEventHandler("onClientVehicleRespawn",root,function()
outputConsole("A vehicle has respawned.")
end)

See Also

Vehicle Functions