Title: [Lua] Double Door Lock Author: PyromasterZ Pastebin link: http://pastebin.com/qUAEh9FR First Edit: Thursday 24th of July 2014 02:37:00 PM CDT Last Edit: Thursday 24th of July 2014 02:37:00 PM CDT term.clear() term.setCursorPos(1,1)       password = "Bananas"  --Sets the password debug = "hiddenFix" --Sets debugging password write("Enter your password: ") input = read()  --Input the password       term.clear()  --Clearing the terminal, and... term.setCursorPos(1,1)  --...THEN setting the cursor position if input == password then         print("Password Correct!")  --If the input is correct!         rs.setOutput("right",true)  --Turns on the output on the marked side.         rs.setOutput("left",true)         sleep(5)  --Pause for 5 seconds         rs.setOutput("right",false)  --Turns off the output on the marked side.         rs.setOutput("left",false)         os.shutdown()  --Shut down the computer elseif input == debug then         exit()  --Exits the program else         print("Password Incorrect!")  --If the input is incorrect! (Oh Noes!)         sleep(2)         os.shutdown()  --Shut down the computer end  --Ends the 'if' block