Hello world! I'm going to make the animals say hello all at the same time using doTogether. I started a new project. And let's go to set up scene and add some characters. Maybe the bunny, and I just clicked on him, and it puts him pretty much in the middle. and then I'm going to click on the cat, and dry the cat in standing next to the bunny. Let's go back to the bipeds and get another animal. Let's do the monkey and put him over there. And now I'm going to go to edit my code. First I put in a comment with my name and a description of the program. Then, I'm going to have each of the animals say hello. I'll just pick the default for the cat. And for the bunny I would go to the custom text string and have him say "hey there" and for the monkey I'm going to have him say "What's up?" And I run it: and they each say hello. You'll notice that there is block here, and these statements are inside a block that says do in order. And so it does them in exactly this order. I'm going to use a block that says do together, and drag that in. And then I'm going to drive each of these statements from above and put them inside that do together control structure. And I run it,and they all say hello at the same time. Let's take the chess heart cat and drag it outside that do together block. And what's going to happen now is it's going to do in order this statement and then this whole block. Let's run that: The cat says hello, and then the bunny in the monkey say something together. Run that again. And this order matters. If I take that Cheshire cat and drag it down after the block, let's see what happens. And you can see, the bunny and the monkey said something together and then the cat says hello afterwards, and so the order is important. So those are things you can use: you can use do in order, do together, and you can also drag in a do in order. If you want to, and put statements inside there. Let's put the monkey inside there and have him say "Nice meeting you." And you should be able to look at this and see what's going to happen. So what's going to happen is, we have First we have the do together block, And the bunny and the Golden monkey say a greeting. and afterwards , do in order, So the Cheshire cat says "Hello" And Then the Golden Monkey says "Nice meeting you." Let's just run that to be sure. You should be able to run that, and look at the code and figure out what's going to happen. And that's It for now!