Answer to question -
10-17-2013, 08:30 PM
I'm guessing by user input you mean a yes or no question for the user.
If so, then you should be able to do
if userinput==yes {
Do Together {
Object1 do whatever you want it to do
Object2 do whatever you want it to do
Object3 do whatever you want it to do
}
Else {
Do Nothing
}
}
I hope this answers your question.
|