function SetVehicleMaxMods(vehicle)
local props = {
modEngine = 2,
modBrakes = 2,
modTransmission = 2,
modSuspension = 3,
modTurbo = true,
--I added the comma above and the wheels below
wheels= 4 , --offroad
modFrontWheels = 5 --WHEEL_OFFROAD_CHALLENGER
}
ESX.Game.SetVehicleProperties(vehicle, props)
end