Advertisement
Guest User

callumisgay

a guest
Feb 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local slide_duration = 5
  2.  
  3. local mon = peripheral.wrap("left")
  4. mon.setBackgroundColor(colours.pink)
  5. mon.clear()
  6. mon.setTextScale(5)
  7. while true do
  8.   for i=1, 9 do
  9.     mon.write("Callum is gay!")
  10.     mon.setCursorPos(1,i)
  11.     i= i+1
  12.   end
  13.   sleep(slide_duration)
  14.   mon.clear()
  15.   mon.setCursorPos(1,5)
  16.   mon.setTextScale(3)
  17.   mon.setBackgroundColour(colours.red)
  18.   mon.clear()
  19.   mon.write("Join Hitler Youth Today!")
  20.   sleep(slide_duration)
  21.   mon.clear()
  22.   mon.setBackgroundColour(colours.pink)
  23.   mon.setCursorPos(1,1)
  24.   mon.setTextScale(5)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement