Browse By

Scratch – Exploring all the Block: Online Course

Control blocks

BLOCKFUNCTION
wait () secondsPauses the script for the amount of time.
repeat ()A loop that repeats the specified amount of times.
foreverA loop that will never end unless the Stop Sign is pressed or the script is stopped.
if () thenChecks the condition so that if the condition is true, the blocks inside it will activate.
if () then elseChecks the condition so that if the condition is true, the blocks inside the first C will activate and if the condition is false, the blocks inside the second C will activate.
wait until ()Pauses the script until the condition is true.
repeat until ()A loop that will stop once the condition is true.
stop ()Stops the scripts chosen through the drop-down menu. Can also be a stack block when “other scripts in this sprite” is chosen.
when I start as cloneIt activates in a clone when it gets created.
create clone of ()Creates the specified clone.
delete this cloneDeletes a clone.