Right now our bicycle and our rectangle have the same name. Let's change the rectangle's name so they don't get mixed up.

  • Find the rectangle in your code.
  • Change the word before the equals sign = to top_block.

A sprite's name is the orange word before the equals sign. We use a sprite's name to give it commands.

stage.set_background("city") sprite = codesters.Sprite("bike") sprite.set_size(0.5) sprite.go_to(-200, 0) stage.set_gravity(10) stage.disable_all_walls() def space_bar(): sprite.jump(5) # add other actions... stage.event_key("space", space_bar) def interval(): # add any other actions... top_height = random.randint(1, 10) # sprite = codesters.Rectangle(x, y, width, height, "color") sprite = codesters.Rectangle(0, 0, 100, 50, "blue") stage.event_interval(interval, 2)