Advertisement
LegoStax

Password Protected Door Bypass

Aug 1st, 2014
976
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. -- Bypass any Password or Keycard Protected door with this program:
  2. -- Step 1: Attach Disk Drive adjacent to computer
  3. -- Step 2: Right-click on computer
  4. -- Step 3: Press and hold Ctrl+S
  5. -- Step 4: Put floppy disk with this program on it into the disk drive
  6. -- Step 5: Right-click computer and profit!
  7. local sides = {"top", "bottom", "left", "right", "front", "back"}
  8. for i = 1,#sides do
  9.     rs.setOutput(sides[i], true)
  10. end
  11. os.pullEvent("key")
  12. for i = 1,#sides do
  13.     rs.setOutput(sides[i], false)
  14.     disk.eject(sides[i])
  15. end
  16. os.shutdown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement