ModulesDoorOn this pageDoorThis module provides functions to control a door.Functionsopen()Opens the doorExamplelocal door = require('door')function onStart() -- Opens the door door.open()endclose()Closes the doorExamplelocal door = require('door')function onStart() -- Closes the door door.close()end