Advertisement
nebulium

Untitled

May 18th, 2022
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. password = 'Holo'
  2. output = 'right'
  3. timeOpen = 5
  4.  
  5. while true do
  6.   term.clear()
  7.   term.setCursorPos(1, 1)
  8.   print('Please Enter Password:')
  9.  
  10.   if read('*') == password then
  11.     rs.setOutput(output, true)
  12.     sleep(timeOpen)
  13.     rs.setOutput(output, false)
  14.   end
  15. end
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement