Advertisement
kirkarr

Untitled

Aug 19th, 2023 (edited)
1,164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. local monitor = peripheral.find("monitor")
  2. term.redirect(monitor)
  3. term.clear()
  4. local sx,sy = term.getSize()
  5. while true do
  6.     term.setCursorPos(1,1)
  7.     term.write(textutils.formatTime(os.time()))
  8.     term.setCursorPos(1,2)
  9.     term.write("Welcome to tea-bar")  
  10.     os.sleep(0.1)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement