abc123mewot

Is reality real.lua

Dec 15th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.92 KB | None | 0 0
  1. mon = peripheral.wrap("left")
  2. while true do
  3.   mon.setBackgroundColor(colors.red)
  4.   mon.setTextColor(colors.blue)
  5.   mon.clear()
  6.   mon.setCursorPos(1, 1)
  7.   mon.setTextScale(5)
  8.  
  9.   mon.write("Is reality")
  10.   mon.setCursorPos(1, 2)
  11.   mon.write("REAL?????")
  12.  
  13.   os.sleep(0.25)
  14.   mon.setBackgroundColor(colors.blue)
  15.   mon.setTextColor(colors.red)
  16.   mon.clear()
  17.   mon.setCursorPos(1, 1)
  18.  
  19.   mon.write("You are not")
  20.   mon.setCursorPos(1, 2)
  21.   mon.write("the truth??")
  22.  
  23.   os.sleep(0.25)
  24.   mon.setBackgroundColor(colors.lime)
  25.   mon.setTextColor(colors.yellow)
  26.   mon.clear()
  27.   mon.setCursorPos(1, 1)
  28.  
  29.   mon.write("WHERE ")
  30.   mon.setCursorPos(1, 2)
  31.   mon.write("AM I???")
  32.  
  33.   os.sleep(0.25)
  34.   mon.setBackgroundColor(colors.orange)
  35.   mon.setTextColor(colors.magneta)
  36.   mon.clear()
  37.   mon.setCursorPos(1, 1)
  38.  
  39.   mon.write("WHERE IS ")
  40.   mon.setCursorPos(1, 2)
  41.   mon.write("LIFE????")
  42.  
  43.   os.sleep(0.25)
  44. end
Advertisement
Add Comment
Please, Sign In to add comment