Can anyone help me out i’m having issues to make this car work for my server.
FiveM crash upon entering the vehicle.
Can anyone help me out i’m having issues to make this car work for my server.
FiveM crash upon entering the vehicle.
Assuming you’ve added the vehiclelayouts.meta to your __resource.lua, have you made sure that you’re loading that before the vehicles.meta?
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
files {
'handling.meta',
'vehiclelayouts.meta',
'vehicles.meta', -- Ensure this is loaded after vehiclelayouts
'carvariations.meta',
'carcols.meta',
}
data_file 'HANDLING_FILE' 'handling.meta'
data_file 'VEHICLE_LAYOUTS_FILE' 'vehiclelayouts.meta'
data_file 'VEHICLE_METADATA_FILE' 'vehicles.meta' -- Same here
data_file 'CARCOLS_FILE' 'carcols.meta'
data_file 'VEHICLE_VARIATION_FILE' 'carvariations.meta'
Thanks a lot , this was indeed the issue why stuff didn’t load in normally.
Awesome, glad it worked!