Kucluck Script
TebexDiscord
  • Introduction
  • Garage
    • KC Garage V1
      • ⚙️Installation
      • 🧰Functions
      • #️⃣Commands
      • ❓Common Issues
    • KC Garage V2
      • Installation
      • Functions
        • Jobs Impound
        • isParkingZone
        • getGarages
        • getImpounds
        • getGarageLabel
        • getImpoundLabel
        • getVehicleParkingFromPlate
      • Commands
      • Common Issues
  • Utils
    • KC Core Weapon
      • ⚙️Installation
      • ❓Common Issues
    • KC Logger
      • ⚙️Installation
      • 🧰Exports
      • 💡Tips
  • Side Jobs
    • KC Farming
      • ⚙️Installation
      • ❓Common Issues
Powered by GitBook
On this page
  • 🛠️ How To Fix NULL Vehicle Label
  • 🛠️ Vehicles not Unlocked
  1. Garage
  2. KC Garage V1

Common Issues

Last updated 1 year ago

🛠️ 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

❓