Advertisement
Guest User

startup

a guest
Aug 30th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. print("Enter Password")
  2. password = read()
  3. if password == "cclw" then
  4. print("Correct, Enter")
  5. redstone.setOutput("left",true)
  6. sleep(3)
  7. redstone.setOutput("left",false)
  8. os.reboot()
  9. else
  10. print("False, Leave")
  11. sleep(5)
  12. os.reboot()
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement