Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local mon = peripheral.wrap("top")
- local bx,by = mon.getSize()
- while true do
- local event = os.pullEvent(char)
- if event == "char" then
- mon.clear()
- term.clear()
- term.setCursorPos(1,1)
- break
- end
- local x = math.random(1,bx)
- local y = math.random(1,by)
- mon.setCursorPos(x,y)
- mon.write("o")
- sleep(2)
- mon.clear()
- sleep(2)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement