Advertisement
Noobular

Vertical Text [CC]

May 30th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. TeXt = "METAL BEES"
  2. basex = 2
  3. TextScale = 2.5
  4.  
  5. m = peripheral.wrap("top")
  6. m.setTextColor(colors.orange)
  7. m.setTextScale(TextScale)
  8.  
  9. function write(text)
  10.   m.clear()
  11.   for i=0,string.len(text) do
  12.     m.setCursorPos(basex,i+1)
  13.     m.write(string.sub(text,i,i))
  14.     i=i+1
  15.   end
  16. end
  17.  
  18.  
  19. write(TeXt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement