I dont understand this help

So im attempting to make a tappable cc template. But for some reason when i press the right arrow while testing the skin colour wont change. It works the first time just not the second time.

Summary

1 Like

Have you checked on your phone?

1 Like

Yes, its still the same.

1 Like

remove the spaces between each choice. like the one 123 128 129. its like with normal choices, that or change the elif, to if. because elif means else.

1 Like

If I’m not wrong it should be:

if (FEMALE = 1){

}elif (FEMALE =2){

}

(With no spaces between the if and elif)

1 Like

Thank you both ill try it out next time i code. @Bertha @line123462

2 Likes

Heyy :smiling_face_with_three_hearts:

If I’m not mistaken, you have not added the command for the script to be rerouted back to the Tappable choice. What I mean by this is that after each time you tap the arrow (in every bracket), you should add a ‘goto’, like this:

label tappable_skin_color

tappable “RIGHT_ARROW” {
if (CHARACTER =0) {
@CHARACTER changes bodyColor into [BODYCOLOR]
@CHARACTER =1
goto tappable_skin_color
} elif (CHARACTER =1) {
@CHARACTER changes bodyColor into [BODYCOLOR]
@CHARACTER =2
goto tappable_skin_color

}
.
.
.
#and so on
#If you don’t add the ‘goto’, the tappable choice would stop working after tapping just once.

1 Like

Ohh yeh that makes sense lol. Thank you i’ll try it soon.

im sorta procrastinating rn and i cba to code lmao :new_moon_with_face::new_moon_with_face:

Haha, I feel you.
Having coded a few templates myself, the struggle is rEAL. :joy:

1 Like

ikrrr :weary::weary:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.