while true do os.pullEvent=os.pullEventRaw() term.clear() term.setCursorPos(1, 1) write("Enter Password to enter: ") input = read("*") if input == "CGI" then redstone.setOutput("right", true) sleep(3) redstone.setOutput("right", false) sleep(1) os.reboot() else if input=="edit" then term.clear() write("Editing...") sleep(1) edit startup else print("Incorrect! Try again later.") sleep(1) print("Shutting Down") sleep(1) os.reboot() end end