Entity::destroy
Jump to navigation
Jump to search
This function is used to destroy a created entity.
Syntax
entity.destroy();Example
This example create vehicle, and destroy after few seconds.
Shared
mp.events.addCommand('veh', (player) => {
let vehicle = mp.vehicles.new(mp.joaat(`zentorno`), player.position); //Create a Vehicle
setTimeout(()=>{ //Create a Timer
if(vehicle){
vehicle.destroy(); //Destroy the Vehicle
}
},5000);
});