Advertisement
Guest User

startup

a guest
Feb 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. local m = peripheral.wrap("back")
  2. local w, h = m.getSize()
  3.  
  4. m.setBackgroundColor(colors.red)
  5. for x = 1, w do
  6.   for y = 1, h do
  7.     m.setCursorPos(x, y)
  8.     m.write(" ")
  9.   end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement