[Solved] Adding to counters is impossible

Jumping into the big block Mario-style is supposed to increase the “Times hit” counter by 1, but nothing happens.

You are increasing the variable TimesHit of the text box but you’re displaying the scene variable TimesHit.

Change setting the text to "Times hit: " + ToString(Hitcounter.TimesHit)

I suggest you to follow MrMen suggestion and move the text change into the same box of incrementation and add “once” on the condition.

Thanks. The problem is fixed.