Skip to main content
Allow to get the shutters status (closed/open)
  • Parameters
  • Returns
NameTypeDefaultDescription
idnumberThe store id (only 1 for now)

Example

local status = exports["utility_jewelry"]:GetShuttersStatus(1)

if status then
    print("Open!")
else
    print("Closed!")
end
I