hey there! so the variables you have in each ‘when self is tapped’ are going to set the variables to that number, not increase them.
for example, say I was making a quiz and it was like
what is your favorite color?
red
green
blue
0voters
and i had one object per option. when the green option is tapped, i would put an increase (+1 green) by 1 block, to show that the green option was tapped once. and every time the question changes, i’d just have the object that determines the green result always increases the +1 green variable by the same amount, and same for all other objects
as for the end, what i’d do is determine which of the variables are holding the greatest number. you’d do this with check if else blocks, to check if one variable was the greatest. for example, you’d write
check if else (((+1 green) > (+1 blue)) and ((+1 green) > (+1 red)))
set text to (you got green!!)
i know this is a little unclear haha, feel free to check this out and look around in the code for more help
Haha it is! I was bored yesterday so I decided to start working on it but since I’m still a beginner i still need a little help when it comes to code!
And to answer your question, you can mute this topic
Hey! For the 2nd problem I still don’t understand. (I tried ur project as well)
If possible please could you make a separate project/tutorial on how to do this?