Last updated 1 year ago
This export can be used to know if the local player owns a vehicle plate
exports["vehicles_keys"]:doesPlayerOwnPlate(plate)
true if the vehicle is owned
true
false if the vehicle is not owned
false
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)
plate
string
The vehicle plate to check