Guest User

Untitled

a guest
Dec 14th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | None | 0 0
  1. print ("Welcome to AlienPassword!")
  2. print ("Copyright Alienware Inc. 2012.")
  3. name = io.read()
  4.  
  5. if name == "Alienware" then
  6.   redstone.setOutput ("left" , true)
  7.   redstone.setOutput ("right", true)
  8.   redstone.setOutput ("back", true)
  9.   redstone.setoutput ("front", true)
  10.   sleep(2)
  11.   redstone.setOutput ("left", false)
  12.   redstone.setOutput ("right", false)
  13.   redstone.setOutput ("back", false)
  14.   redstone.setOutput ("front", false)
  15.   os.reboot()
  16. else
  17.   print ("Password Incorrect!")
  18.   os.reboot()
  19. end
Add Comment
Please, Sign In to add comment