Selection doesn't work

im making a game like boomerang fu, and for some reason i can’t have both players select different characters at once. Chaos kitchen

1 Like

This probably isn’t your issue, but you can’t use OR blocks like this:


They need to be like <is or who selected at a1 == 1> OR < is or who selected at a2 > OR...
Each one needs an equals.

Ok I fixed your OR blocks and it works now!

2 Likes

That game idea sounds awesome! The problem is probably that both players are sharing the same selection state, so only one choice sticks. Try giving each player their own variable for character selection, that usually fixes it so they can choose separately.