Created
June 12, 2022 15:28
-
-
Save Rasinzz/dc439dd4a35f087cd3dc523e899b9120 to your computer and use it in GitHub Desktop.
FiveM delete vehicle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RegisterCommand('dv', function() | |
| local ped = PlayerPedId() | |
| local veh = GetVehiclePedIsIn(ped, false) | |
| SetEntityAsMissionEntity(veh, true, true) | |
| DeleteVehicle(veh) | |
| end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment