Different score in different object with global variable

Hello everyone.

I have three different object with three different value for each object. So i wanna calculate the total score, but as you can see the number score is too high.

Am i wrong implemented the logic? Thank’s

Hi, it looks like you are changing your numbers to strings and by using the + sign you are concatenating strings instead of calculating the sum. You should use ToString(…) just once and enclose all the variables and + operators within this parenthesis.