Advertisement
Guest User

sreen1.lua

a guest
Apr 6th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. local input = ""
  2. local stop = 1
  3.  
  4.  
  5. mon = peripheral.wrap("right")
  6. mon.setBackgroundColor(colors.blue)
  7.  
  8. while stop do
  9. mon.clear()
  10. mon.setTextScale(5)
  11. mon.setCursorPos(1,2)
  12. mon.write("Bienvenue")
  13. mon.setCursorPos(3,4)
  14. mon.write("Chez...")
  15. sleep(2)
  16.  
  17. mon.clear()
  18. mon.setCursorPos(3,2)
  19. mon.write("Ayno")
  20. mon.setCursorPos(5,4)
  21. mon.write("&")
  22. mon.setCursorPos(3,5)
  23. mon.wriet("Virani")
  24. sleep(2)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement