choice
“blah” {gain elbows}
if (hands){…}
if (elbows) {…}
Whenever I select “blah,” it brings me to the “hands” scenario instead of “elbows.” And then AFTER the “hands” scenario finishes, it plays the “elbows.”
What am I doing wrong??
choice
“blah” {gain elbows}
if (hands){…}
if (elbows) {…}
Whenever I select “blah,” it brings me to the “hands” scenario instead of “elbows.” And then AFTER the “hands” scenario finishes, it plays the “elbows.”
What am I doing wrong??
ALSO, I used command F, and there’s nowhere in the script do i have “gain hands”, so i know that that isnt the issue
choice
“Blah”{
gain elbows
}
if (hands){
Script
}elif (elbows){
Script
}
THANK YOU SO MUCH!!! It worked!!