Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local w,h,s;
- term.clear()
- term.setTextColor(colors.yellow)--Usa colors.NOMECOLORE
- term.setTextSize(1)
- w,h=term.getSize()
- s="TESTO"--Modifica il testo tra virgolette
- while (true)
- do
- term.clear()
- term.setCursorPos(w/2-(string.len(s)/2),h/2)
- print(s)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement