I use the “find image” command and use the “click” option to click on that image. Is there a way to make the click on that image a random spot on that image?

If you want to click wvery time at a different random position then generate two random number and pass it to click offset x and y
New Random.Next(0,100) - this will give a random number between 0 and 100 always you run it
Cheers