IsPlateFake
Export Syntax
exports['dream_fakeplates']:IsPlateFake()
Response
- isFake (Boolean) -> true or false
- originalPlate (String) -> GANGSTER
- fakePlate (String) -> F2S4H5
Example Export
local data = exports['dream_fakeplates']:IsPlateFake()
print(data.isFake)
print(data.originalPlate)
print(data.fakePlate)
-- 💬 Other example...
if data and data.isFake then
print("Fakeplate detected!")
print("Original Plate: " .. plateInfo.originalPlate)
print("Fakeplate: " .. plateInfo.fakePlate)
-- Do something with the info
else
print("Plate is valid or no data returned.")
end