have a variable on the sprite, so on click the variable is added or subtracted.
then have animation play on variable = 0, or 1
add a wait function after. otherwise it can be prone to doing both actions on click
on touch, sprite ___________ set variable =1
sprite.variable = 0 _________ wait 0.2 seconds
on touch, sprite ____________ set variable =0
sprite.variable = 1 __________wait 0.2 seconds
this should allow multiple instances of clicks too!