STEP 14: Let's set the sprite's speed so they move quickly around the world.

  • Click on and drag Set Speed to the bottom of your code, inside the loop.
  • Change the number in .set_speed() from 2 to 5.
  • Drag Move Forward to the bottom of your code, inside the loop.
  • Change the number in the .move_forward() command from 50 to 120.

stage.set_background_color("lightblue") # sprite = codesters.Rectangle(x, y, width, height, "color") sprite = codesters.Rectangle(0, 0, 700, 100, "gold") sprite.turn_left(45) # sprite = codesters.Rectangle(x, y, width, height, "color") sprite = codesters.Rectangle(0, 0, 700, 100, "gold") sprite.turn_right(45) sprite = codesters.Sprite("earth") people_sprites = ['person1', 'person2', 'person3', 'person4', 'person5', 'person6', 'person7', 'person8','person9', 'person10', 'person11', 'person12'] rotate = 90 for value in people_sprites: # add code here sprite = codesters.Sprite(value) stage.wait(0.5) sprite.set_size(0.3)