Skip to content

Say hello when clicked

Show a greeting in a speech bubble whenever the player clicks the sprite.

whenClicked(() => {
say("Hello!");
});
  • whenClicked β€” run code when this sprite is clicked
  • say β€” show a speech bubble
All recipes