Pacman tutorial 1 First we need to create a pacman sprite. For that draw a yellow circle in bitmap mode (should be a sprite) Duplicate that. Rename one as open and the other as close. Go to the open costume and draw to slanting lines from the center to the two ends in the right. Choose fill in bitmap mode and choose transparent. Click on the part between the two lines. The open costume is finished The closed one remains the same. Adding code(For animating pacman's mouth) (if you do not understand please see the code inside the project that I created) So we want some things to happen when the green flag is clicked. First thing is to make pacman show and go to the front layer. then we want to switch his costume to open and wait 0.5 seconds. Now we want some code inside a forever loop. we want to add the code 'next costume'. If we test this, pacman's mouth will move so fast, so we want to add a wait block after the next costume block. Waiting 0.2 seconds is a good choice to take. Note: The code above are for animating pacman's mouth. If you do not understand please see the code inside the project that I created.