Common Issues

🛠️ How To Fix NULL Vehicle Label

To fix NULL vehicle names when selecting a vehicle you need to add code in vehicle_names.lua for ex: AddTextEntry('23rs7', 'AUDI RS7 2023') the first is <gameName> and the second is the vehicle's custom Label. to get <gameName> you need to look at the vehicle data in vehicles.meta.

CreateThread(function()
  AddTextEntry('23rs7', "AUDI RS7 2023") -- (<gameName>, Vehicle Label)
end)

🛠️ Vehicles not Unlocked

If you experience this, you should remove qb-vehiclekeys

Last updated