Vehicle Names

  • All vehicle names are obtained using Fivem natives. If your addon vehicle is shown as NULL, make sure to add it in client/framework/null_vehicles.lua:

local myAddonVehicles = {
    -- spawnName = is the code that you use to spawn the code (example: sultan)
    -- label = the vehicle model that will be displayed in game
    {spawnName = "senna", label = "McLaren Senna"}, -- This is an example. copy/paste it and replace the values for every of your addon vehicles
    {spawnName = "gtr", label = "GTR"}, -- This is an example. copy/paste it and replace the values for every of your addon vehicles
}

Last updated