dezindzer

Monitor sign

Apr 23rd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. local mon = peripheral.wrap("back")
  2. mon.setTextScale(4)
  3. mon.clear()
  4. while true do
  5.         for i=1,5 do
  6.                 mon.setCursorPos(1,1)
  7.                 mon.setTextColor(math.pow(2,i))
  8.                 mon.write("Computercraft Shop!!")
  9.                 sleep(1)
  10.         end
  11. end
Add Comment
Please, Sign In to add comment