Advertisement
Guest User

password

a guest
Aug 23rd, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. print("Enter Password")
  2. password = read()
  3. if password == "Trade" then
  4.   print("You Are Staff I Presume")
  5.   redstone.setOutput("left",true)
  6.   sleep(3)
  7.   redstone.setOutput("left",false)
  8.   os.shutdown()
  9. else
  10.   print("Staff Only")
  11.   redstone.setOutput("right",true)
  12.   sleep(15)
  13.   redstone.setOutput("right",false)
  14.   os.shutdown()
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement