Client
isVehicleVinScratched
exports["gg_boosting"]:isVehicleVinscratched(plate)
Name
Type
Description
plate
string
Pass vehicles plate
Return:
Value
Type
true/false if vehicle is vinscratch
bool
Example:
local plate = "ABCD1234"
local isVin = exports.gg_boosting:isVehicleVinscratched(plate)
if isVin then
print(("Plate %s IS a vinscratch."):format(plate))
else
print(("Plate %s is NOT a vinscratch."):format(plate))
end
Last updated