Guest User

tester

a guest
Dec 29th, 2015
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. prox = peripheral.wrap("top")
  2. mon = peripheral.wrap("left")
  3.  
  4. while true do
  5. players = prox.getPlayerByName("jetski67890")
  6. mon.clear()
  7. mon.setCursorPos(2,3)
  8.  
  9. if #players ~= 0 then
  10.  
  11. for a,b in pairs(players) do
  12.  
  13. mon.write(b.name)
  14. end
  15.  
  16. end
  17.  
  18. sleep(1)
  19.  
  20. end
Advertisement
Add Comment
Please, Sign In to add comment