@011830-0a42ef84
The “when this sprite clicked” block works for clones, since clones are also sprites.
Also, this is a good question that you can ask our AI assistant “CreatiCode XO”, so you do not have to wait for answers here.
For example, you can ask XO this question: how to make a clone of a sprite say “hi” when it is clicked?
One possible response is the following program with explanations:
6348e856-f188-43bc-bab5-1bb10a05eb28-image.png
Explanation:
Create Clone: The create clone of [myself v] with ID [1] block creates a clone of the sprite with a unique ID (in this case, ‘1’). You can use any ID you’d like.
When I Start as a Clone: This block initializes the behavior for clones. It ensures the following script applies only to clones, not the original sprite.
When This Sprite Clicked: This block detects when any clone is clicked.
Say Block: The say [hi] for (2) seconds block makes the sprite say “hi” for 2 seconds when clicked.