How to gain score, when 2 objects are clicked

Is this blueprint or C++?

So we are making a matching pairs game. We want the player to gain 100 points when 2 cards that are clicked that are the same. How would we make this scoring system. We have got the matching part sorted, just need to add score. If your system of selecting 2 cards is relevant to the points system, then please enlighten us. We dont really know how to work UE4

Blueprint.

Hey FTDOV-

Since you already have the matching part covered, the easiest solution would be to add a “Score” variable that, once you’ve detected a match, adds the desired amount of points to that variable. Adding the score variable to the player blueprint or game mode blueprint would be better than in the cards themselves, since the cards don’t need to how many points are awared, only that the points are being awared.

Cheers