Let's make the sprite say a message when we click on it!

  • Go to and drag Sprite Click to the bottom of your program.
  • Change the text in the .say() command to "I hope your holidays are great!"

Remember that they text in .say() should be green and have quotes around it.

stage.set_background("winter") sprite = codesters.Sprite("person12") sprite.go_to(-125, -150) frosty = codesters.Sprite("snowman") frosty.go_to(100, -125) snow = codesters.Sprite("snowflake3") snow.go_to(100, 75) greeting = codesters.Text("Happy Holidays!") greeting.go_to(0, 200) greeting.set_color("yellow")