Skip to main content

IsPlateFake

Export Syntax
exports['dream_fakeplates']:IsPlateFake()

Response

  1. isFake (Boolean) -> true or false
  2. originalPlate (String) -> GANGSTER
  3. 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