This is a very basic keylogger aka nothing advanced. Do what you will with it
displayMode(FULLSCREEN)
function setup()
rectMode(CENTER)
showKeyboard()
tab={}
txt=""
end
function draw()
background(255, 255, 255, 255)
txt=keyboardBuffer()
if rtn then
rtn=false
hideKeyboard()
showKeyboard()
end
--textWrapWidth(WIDTH)
fontSize(30)
fill(0, 0, 0, 255)
text(txt,250,700)
pasteboard.copy(txt)
print(txt)
end
function keyboard(k)
if k==RETURN then
rtn=true
print(txt)
end
end