Exports

InTuning()

  • Use this export from your Garage script (client side) to verify if the current vehicle left the Tuning Menu without using any kind of exploit to avoid paying for the mods. If the export returns true don't let the player store the vehicle, if it returns false means is safe to store it.

local inTuning = exports['av_tuning']:inTuning()
if not inTuning then
 -- All the garage code to store the vehicle...
end

Last updated