STEP 12: There's one more Codester to pick up!

  • Click Run to see your next pick up location.
  • From , drag out a Glide To command and drop it at the bottom of your program.
  • Change the coordinates in the command to pick up the fifth Codester.

stage.set_background("space") sprite = codesters.Sprite("ufo") sprite.set_size(0.4) sprite.go_to(-200, -200) sprite.pen_down() sprite.glide_to(-100, -100) def collision(sprite, hit_sprite): hit_sprite.hide() # add any other actions... sprite.event_collision(collision) sprite.set_speed(2) sprite.glide_to(150, -100) sprite.glide_to(150, 100) sprite.glide_to(-150, 200)