Here are the three main blocks for cloning in Scratch, explained in two lines each:
1. Create Clone Of
Creates a clone of the current sprite, allowing you to make copies of it. The clone has the same properties and scripts as the original sprite.
2. Delete Clone
Deletes a clone of the current sprite, removing it from the stage. This block is useful for managing clones and avoiding clutter.
3. When I Start As a Clone
Triggers scripts when a clone of the current sprite is created, allowing you to run specific code for each clone. This block helps you control the behavior of clones separately from the original sprite.