Get if local player owns a plate
Export
exports["vehicles_keys"]:doesPlayerOwnPlate(plate)Parameters
Name
Data Type
Description
Return
Example
RegisterCommand("checkPlate", function(_, args)
local plate = args[1] -- Example "ABC 123"
if(exports["vehicles_keys"]:doesPlayerOwnPlate(plate)) then
print("I own this vehicle plate")
else
print("I DO NOT own this vehicle plate")
end
end)Last updated