How many people did it legitimately vs turning their mouse sideways and button mashed it?
(on first frame)
var clicked = 0;
myCounter.text = "0";
clickMe.onPress = function(){
clicked = clicked + 1;
myCounter.text = clicked;
}
(on last frame)
stop();
myCounter.text = clicked;