Advertisement
JoshuaGaming-_-

Untitled

Nov 5th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. p = peripheral.wrap("left")
  2.  
  3. local blackList = {}
  4.  
  5. blackList["14ec90a6-9657-44d2-bea3-f770765d8324"] = true
  6. blackList["862babc9-1970-459c-94ff-4a87a0b79843"] = true
  7.  
  8. while true do
  9. rs.setOutput("bottom", false)
  10. sleep(1)
  11. players = p.getPlyaers()
  12. print(players)
  13. for num,name in pairs(players) do
  14. if blackList[name] then
  15. rs.setOutput("bottom", true)
  16. sleep(5)
  17. end
  18. end
  19. sleep(2)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement