Thank you for your help, it works flawlessly except for one thing.
if object exist(130)
if q2=1 and object collision (1,141)>0
center text 200,400, "14 / 7 x 3 - 5 = ?"
center text 200,420, "F) 1"
center text 200,440, "G) 14"
Center text 200,460, "H) 9"
if inkey$()="f"
showImageTime = timer()
delete object 130
delete object 141
endif
endif
endif
elapsedTime = timer() - showImageTime
if elapsedTime >= 0 and elapsedTime < 1500 and q2 = 1
paste image 138,250,500
endif
if object exist(131)
if q3=1 and object collision (1,142)>0
center text 200,400, "15 - 4 + 14 / 2 = ?"
center text 200,420, "J) 18"
center text 200,440, "K) 5"
Center text 200,460, "L) 11"
if inkey$()="j"
showImageTime = timer()
delete object 131
delete object 142
endif
endif
endif
elapsedTime = timer() - showImageTime
if elapsedTime >= 0 and elapsedTime < 1500 and q3 = 1
paste image 140,250,500
endif
Whenever I go into the game, the bitmap holds correctly as it should but it pastes the same image on all three of the different questions.
"q1" should paste image 999 and it pastes 140
"q2" should paste image 138 and it pastes 140
and "q3" has no problem because its correct image SHOULD be 140. I'm not sure how to fix this problem.