Skip to content

Instantly share code, notes, and snippets.

@Rasinzz
Created June 12, 2022 15:28
Show Gist options
  • Select an option

  • Save Rasinzz/dc439dd4a35f087cd3dc523e899b9120 to your computer and use it in GitHub Desktop.

Select an option

Save Rasinzz/dc439dd4a35f087cd3dc523e899b9120 to your computer and use it in GitHub Desktop.
FiveM delete vehicle
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