Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local Logo = {
  2. [[ __ __ ]],
  3. [[| \ /\ |\ | |\ | \ / | |\ | / ` ]],
  4. [[|__/ /~~\ | \| | \| | | | \| \__, .]],
  5. [[ ]],
  6. }
  7. local mon = peripheral.wrap("top")
  8. mon.setTextScale(3)
  9. term.redirect(mon)
  10. term.clear()
  11. term.setCursorPos(1,1)
  12. for i = 1, #Logo do
  13. print(Logo[i])
  14. end
  15. term.restore()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement