Coding Talk!
Triggers!
Move it!
How do I look?
Ctrl
100

The list of steps to get the computer to complete a task.

What is an algorithm?

100

This code block listens for when this green start icon is clicked.

What is "when green flag is clicked" code block?

100

This code block moves a sprite left and right.

What is "move _ steps" code block?

100

This code block makes a sprite say something.

What is "say _____" code block?

100

This code block forces your program to wait for a specified amount of seconds.

What is "wait ___ seconds" code block?

200

Tell your programme WHEN to do an action.

What is an EVENT?

200

This code block listens for when the space bar is clicked.

What is "when space key is pressed" code block?

200

This code block rotates a sprite to the right by 15 degrees.

What is "turn right by 15 degrees" code block?

200

This code block changes the color effect.

What is "change color effect by ___" code block?

200

This code block repeats code for the specified amount of time.

What is "repeat ___ " code block?

300

Tells your computer WHAT action to do.

What is a FUNCTION?

300

This code block listens for when a character is clicked.

What is "when this sprite is clicked" code block?

300

This code block moves a sprite to a random position.

What is "go to random position" code block?

300

This code block shows a sprite.

What is "show" code block?

300

This code block repeats code forever.

What is "forever" code block?

400

Repeat steps in your code without having to write it over and over.

What is a LOOP?

400

This code block listens for when a backdrop switches.

What is "when background switches to __" code block?

400

This code block allows my character to move up and down.

What is "change y by ___" code block?

400

This code block changes the costume of a sprite to a specific one.

What is "switch costume to ____" code block?

400

This code block executes code only if the specified condition is satisfied.

What is "if ___then___" code block?

500

Holds a bit of information that you can reference and manipulation at different places in your program.

What is a VARIABLE?

500

This code block listens for when a message is received.

What is "when I receive message" code block?

500

This code block and x-value allows my character to enter from the left side of the screen.

What is "set x to -240" code block?

500

This code block changes the backdrop to a specific one.

What is "switch backdrop to ____" code block?

500

This code block executes code only IF the specified condition is satisfied, otherwise it does something ELSE.

What is "if ___, then___else___" code block?