GDragonArcher

AR

Jul 12th, 2022 (edited)
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. local controller = peripheral.find("arController") -- Finds the peripheral if one is connected
  2.  
  3. if controller == nil then error("arController not found") end
  4.  
  5. controller.fill(0, 0, 100, 100, 0xffffff)
  6.  
  7. sleep(5)
  8.  
  9. controller.clear()
Add Comment
Please, Sign In to add comment