Guest User

Untitled

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