Counter_Problem

Hey h88 this question im hoping you can answer…

See i have a counter that says 30 and i want it so when i hit one guy it will go down 1…

The problem for me is that when i hit it and saty on the guy it goes down all the time till i get off him…

Mybe you can help…

THANKS!!!

Try:

var i = 30
ThatGuyInstanceName.onRelease = function() {
i--;
}

h88