any software that automatically takes screenshots of desktop when any keys are pressed or the keyboard is being used?,
you can use this for example, this will take the screenshot when you press W for example, you can loop for checking if any of your desired keys are pressed
void Update()
{
if(Input.GetKeyDown(Keycode.W))ScreenCapture.CaptureScreenshot("FileName");
}