Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Paint Drying
- Just Does Games
- 7/14/2020 4:00 PM
- ]]--
- local w,h = term.getSize()
- term.setBackgroundColor(colors.white)
- term.setTextColor(colors.black)
- term.clear()
- term.setCursorPos(1,h) write("Press 'q' to stop watching paint dry.")
- repeat a,b = os.pullEvent("key") until b == keys.q
- term.setBackgroundColor(colors.black)
- term.setTextColor(colors.white)
- term.clear()
- term.setCursorPos(1,1)
- print("Thank you for watching paint dry") sleep(.5)
Advertisement
Add Comment
Please, Sign In to add comment