Advertisement
9551

Untitled

Jul 31st, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local clear = function()
  2.   term.clear()
  3.   term.setCursorPos(1,1)
  4. end
  5. local main = function()
  6.   while true do
  7.     local click = os.pullEvent("mouse_click")
  8.     term.setCursorPos(click[3],click[4])
  9.     term.setBackgroundColor(colors.white)
  10.     term.write(" ")
  11.     term.setBackgroundColor(colors.black)
  12.   end
  13. end
  14. xpcall(main,clear)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement