SandCastleIcon.png This article has links to websites or programs outside of Scratch and Wikipedia. Remember to stay safe while using the internet as we cannot guarantee the safety of other websites.
This article or section documents the current version of Scratch (version 3.0). For this article in Scratch 2.0, see Blocks (2.0). For this article in Scratch 1.4, see Blocks (1.4).
This article is about pieces of code used in the editor. For other uses, see Blocks (disambiguation) and Program (disambiguation).
move10steps
The Move () Steps block.
whenclickedmove10stepssayHello!for2secondsforeverifscore>50andtouchingmouse-pointer?thendancefor2secondsbroadcastWinplaysoundCheeruntildonerepeat100beepnotepitchfor0.1secschangepitchby1
An example of a script.

Blocks are puzzle-piece shapes that are used to create code in Scratch. The blocks connect to each other vertically like a jigsaw puzzle, where each block type (hat, stack, reporter, boolean, or cap) has its own shape and its own slot shape for it to be inserted into. Series of connected blocks are called scripts.

Blocks are often easier to work with than text-based programming, as blocks do not need to be memorized like typed commands and syntax errors cannot occur. However, text-based programming is more flexible, as text can easily be edited without having to drag another block into the editor.

There are ten categories of blocks: Motion, Looks, Sound, Event, Control, Sensing, Operators, Variables, List, and My Blocks. The list blocks are shown under the Variables Blocks.

In total, there are eight Hat Blocks, five C Blocks, 34 Reporter Blocks, 14 Boolean Blocks, two Cap Blocks and 62 Stack Blocks, for a total of 125 blocks. (Block numbers do not include extensions.)

Block Shapes

There are six different block shapes: Hat, Stack, Boolean, Reporter, C and Cap.

Hat blocks

Main article: Hat Block
The shape of a Hat block.

Hat blocks are the blocks that start every script. They are shaped with a rounded top and a bump at the bottom — this is so that a user can only place blocks below them. There are eight Hat blocks in the Scratch editor, six of which are in the Events category, one in the Control category, and one in the category My Blocks (if one has created one custom block).

Stack blocks

The shape of a Stack block.
Main article: Stack Block

Stack blocks are the blocks that perform specific commands. They are shaped with a notch at the top and a bump on the bottom — this is so blocks can be placed above and below them. There are 62 Stack blocks — the most common block shape.

Boolean blocks

The shape of a Boolean block.
Main article: Boolean Block

Boolean blocks are blocks that act like conditions. They have an elongated hexagonal shape. Boolean blocks can hold and report "true" or "false" values. These blocks are inserted into holes of other blocks with the same shape or the shape of a reporter block (see below).

Reporter blocks

The shape of a Reporter block.
Main article: Reporter Block

Reporter blocks are blocks that act as the values. They are shaped with rounded edges. Reporter blocks can hold numbers and strings. They can also report a variable. Theoretically, there are an infinite number of Reporter blocks that can be made for each variable and list. These blocks are inserted into holes of other blocks with the same shape.

C blocks

The shape of a C block.
Main article: C Block

C blocks are blocks that take the shape of "C's". Also known as "Wrap blocks", these blocks loop the blocks within the Cs or check if a condition is true. There are five C blocks, and they can be found in the Control category. C blocks can be bumped at the bottom, allowing blocks to be attached below, or capped, which does not allow any blocks to be placed below.

Cap blocks

The shape of a Cap block.
Main article: Cap Block

Cap blocks are the blocks that end scripts. They are shaped with a notch at the top and a flat bottom — this is so blocks cannot be placed below them. There are two Cap blocks, which can both be found in the Control category.

Block Categories

Main article: Block Categories
The block categories.

Blocks are divided into 9 categories: Motion, Looks, Sound, Events, Control, Sensing, Operators, Variables, and My Blocks. Each category has blocks that perform a different function. There are also 11 extension categories that can be added to the block list by selecting them, and 3 Raspberry Pi extensions that are not available on other versions of Scratch. The block categories appear in the categories to the left of the Block Palette, and extensions will appear there when they are added.

List of Blocks

There are 124 normal blocks in Scratch 3.0 (not including extensions or hidden blocks). There are 80 extension blocks (not including Raspberry Pi blocks). There are also many Hidden Blocks that cannot be accessed normally.

The following is a list of said 124 blocks, divided and listed based on category:

Motion blocks

Main article: Motion Blocks

Motion blocks are the blocks that control a Sprite's movement. There are 18 Motion blocks in Scratch 3.0. The stage has no motion blocks, as it cannot move.

Motion has 15 stack blocks and 3 reporter blocks:

  • movesteps — Moves the sprite forward the number of steps in the direction the sprite is facing.
  • turndegrees — Turns the sprite (clockwise) the specified number of degrees.
  • turndegrees — Turns the sprite (counter-clockwise) the specified number of degrees.
  • goto — Moves the sprite to the mouse-pointer, a random position, or another sprite.
  • gotox:y: — Moves the sprite to the specified X and Y position.
  • glidesecsto — Glides the sprite to the mouse-pointer, a random position, or another sprite, taking as long as the specified amount of time
  • glidesecstox:y: — Glides the sprite to the location, taking as long as the specified amount of time.
  • pointindirection — Points the sprite in the direction.
  • pointtowards — Points the sprite towards the mouse-pointer or another sprite.
  • changexby — Changes the sprite's X position by the number.
  • setxto — Sets the sprite's X position to the specified number.
  • changeyby — Changes the sprite's Y position by the specified number.
  • setyto — Sets the sprite's Y position to the number.
  • ifonedge,bounce — If touching the edge of the screen, the sprite's direction flips over
  • setrotationstyle — Sets the rotation style of a sprite.
  • xposition — The X position of the sprite.
  • yposition — The Y position of the sprite.
  • direction — The direction of the sprite.

Looks blocks

Main article: Looks Blocks

Looks blocks are the blocks that control how a sprite looks. There are 21 Looks blocks in Scratch 3.0. Only seven of these are available to the Stage, one of which is exclusive to the Stage and not available to sprites.

Looks has 18 stack blocks and 3 reporter blocks:

  • sayforseconds — A speech bubble appears over the sprite and stays for the specified amount of time.
  • say — A speech bubble appears over the sprite and will only go away if the sprite says or thinks something else.
  • thinkforseconds — A thought bubble appears over the sprite and stays for the specified amount of time.
  • think — A thought bubble appears over the sprite and will only go away if the sprite says or thinks something else.
  • switchcostumeto — Changes the sprite's costume to the specified one.
  • nextcostume — Changes the sprite's costume to the next one in the costume list.
  • switchbackdropto — Changes the stage's backdrop to the specified one.
  • switchbackdroptoandwait — Like the Switch to Backdrop () block, though it waits until all of the blocks triggered by this have completed. (Stage only)
  • nextbackdrop — Changes the stage's backdrop to the next one in the costume list
  • changesizeby — Changes the sprite's size by the number.
  • setsizeto% — Sets the sprite's size to the number.
  • changeeffectby — Changes the specified effect by the number.
  • seteffectto — Sets the specified effect to the number.
  • cleargraphiceffects — Clears all graphic effects on the sprite.
  • show — Shows the sprite.
  • hide — Hides the sprite.
  • gotolayer — Puts a sprite in the front or back.
  • golayers — Changes the sprite's layer value by the number.
  • costume — The number or name of the sprite current costume in the list.
  • backdrop — The number or name of the Stage's current backdrop in the list.
  • size — The sprite's size.

Sound blocks

Main article: Sound Blocks

Sound blocks are the blocks that control sound. There are 9 Sound blocks in Scratch 3.0. The note blocks in 3.0 have been moved to the Music Extension.

Sound has 8 stack blocks and 1 reporter block:

Events blocks

Main article: Events Blocks

Events blocks are blocks that control events and the triggering of scripts. There are 8 Event blocks in Scratch 3.0.

Events has 6 hat blocks and 2 stack blocks:

  • whenclicked — When the flag is clicked, the script activates.
  • whenkeypressed — When the specified key is pressed, the script activates. The event will only be triggered again after the event is released.
  • whenthisspriteclicked — When the sprite is clicked, the script activates.
  • whenbackdropswitchesto — When the backdrop switches to the one chosen, the script activates.
  • when> — When the first value is greater than the second value, the script activates.
  • whenIreceive — When the broadcast is received, the script activates.
  • broadcast — Sends a broadcast throughout the Scratch program, activating When I Receive () blocks that are set to that broadcast.
  • broadcastandwait — Like the Broadcast () block, but pauses the script until all scripts activated by the broadcast are completed.

Control blocks

Main article: Control Blocks

Control blocks are the blocks that control scripts. There are 11 Control blocks in Scratch 3.0.

Control has 1 hat block, 3 stack blocks, 5 C blocks and 2 cap blocks:

  • waitseconds — Pauses the script for the amount of time.
  • repeat — A loop that repeats the specified number of times.
  • forever — A loop that will never end unless the Stop Sign is pressed or the script is stopped by the Stop () block.
  • ifthen — Checks the condition so that if the condition is true, the blocks inside it will activate.
  • ifthenelse
    └— Checks 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.
  • waituntil — Pauses the script until the condition is true.
  • repeatuntil — 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.
  • whenIstartasaclone (sprites only) — This hat block is triggered whenever a clone is created, and will only be run by that clone.
  • createcloneof — Creates the specified clone.
  • deletethisclone (sprites only) — Deletes a clone.

Sensing blocks

Main article: Sensing Blocks

Sensing blocks are the blocks that detect things. There are 18 Sensing blocks in Scratch 3.0.

Sensing has 3 stack blocks, 5 boolean blocks, and 10 reporter blocks:

  • touching? — The condition for checking if the sprite is touching the mouse-pointer or another sprite.
  • touchingcolor? — The condition for checking if the sprite is touching a specific color.
  • coloristouching? — The condition for checking if a color on the sprite is touching a specific color.
  • distanceto — The distance from the sprite to the mouse-pointer or another sprite.
  • askandwait — An input box appears — a value is typed in and it stores the value in the answer variable.
  • answer — The most recent input with the Ask () And Wait block.
  • keypressed? — The condition for checking if the specified key is being pressed.
  • mousedown? — The condition for checking if the mouse is down.
  • mousex — The mouse-pointer's X position.
  • mousey — The mouse-pointer's Y position.
  • setdragmode — Sets the sprite to draggable or not draggable.
  • loudness — How loud the noise is that the microphone is sensing.
  • timer — How much time has passed since the Scratch program was opened or the timer reset.
  • resettimer — Resets the timer.
  • of — The X position, Y position, direction, costume, size or volume of the Stage or a sprite.
  • current — The specified time unit selected.
  • dayssince2000 — The number of days since 2000.
  • username — The username of a user.

Operators blocks

Main article: Operators Blocks

Operators blocks are the blocks that perform math functions and string handling. There are 18 Operators blocks in Scratch 3.0.

Operators has 7 boolean blocks and 11 reporter blocks:

  • + — The value of the addition.
  • - — The value of the subtraction.
  • * — The value of the multiplication.
  • / — The value of the division.
  • pickrandomto — Picks a random number between the two limits.
  • > — The condition for checking if a value is greater than the other.
  • < — The condition for checking if a value is less than the other.
  • = — The condition for checking if two values are equal.
  • and — True if both conditions are true.
  • or — True if either condition is true.
  • not — Makes the condition checked if it is false, not true, or true, not false.
  • join — The two values put right next to each other.
  • letterof — The specified character of the value.
  • lengthof — The length of the value.
  • contains? Checks if the first parameter's text contains the second parameter's text — if it does, the block returns true.
  • mod — The remainder of the division.
  • round — Rounds the value to the nearest whole number.
  • absof — The absolute value (abs), square root (sqrt), sine (sin), cosine (cos), tangent (tan), asine (asin), acosine (acos), atangent (atan), natural logarithm (ln), logarithm (log), exponential function (e^), or base 10 exponential function (10^) of a specified value.

Right-clicking some of the blocks will yield more choices of its type.

Variables blocks

Main article: Variables Blocks

Variables blocks are the blocks that hold variables and lists. There are 5 Variables blocks and 12 list blocks in Scratch 3.0.

Variables has 4 stack blocks and one reporter block for each variable created:

List blocks

Main article: List Blocks

List blocks are the blocks that manage lists. They are located in the Variables category and are not found in the bar to the left. There are 12 List blocks in Scratch 3.0.

List has 7 stack blocks, 3 reporter blocks (one additional reporter block for each list created), and 1 boolean block:

  • list — All items contained in the list.
  • addto — Adds an item to the list (the item goes at the bottom of the list of items) with the specified content in it.
  • deleteof — Deletes the item of the list.
  • deleteallof — Deletes all items of the list.
  • insertatof — Adds an item to the list (the item goes where it is specified in the list of items) with the specified content in it.
  • replaceitemofwith — Replaces the item's content with the specified content.
  • itemof — The item's value.
  • item#ofin — Reports the index in a list where an item first appears.
  • lengthof — How many items there are in the specified list.
  • contains? — The condition for checking if an item's content is the specified text.
  • showlist — Shows a list.
  • hidelist — Hides a list.

My Blocks

Main article: My Blocks

My Blocks (also known as Custom Blocks), are user-made custom blocks. There are 4 different, unique kinds of My Blocks in Scratch 3.0. Scratch 3.0 has the following My Blocks Hat block:

  • definecustomblock — Defines a custom block.

Scratch 3.0 has the following My Blocks Stack block:

  • customblock — A custom block.

Scratch 3.0 has the following My Blocks Boolean block:

  • customboolean — A true/false value.

Scratch 3.0 has the following My Blocks Reporter block:

  • customreporter — An input for a value, set by the definition My Block.

Extensions

Main article: Extension

Scratch 3.0 has a number of extensions that can be added to the block list. To choose an extension, press the purple button below the regular block sections.

Music Extension

Main article: Music Extension

The Music extension allows one to play MIDI Notes with different instruments. There are seven Music extension blocks in Scratch 3.0.

Scratch 3.0 has six Music stack blocks and one Music reporter block:

Pen Extension

Main article: Pen Extension

The Pen extension allows one to draw on the stage with the pen. Scratch 3.0 has nine Pen stack blocks:

Video Sensing Extension

Main article: Video Sensing Extension

The Video Sensing extension lets projects interact with a webcam. There are four Video Sensing blocks in Scratch 3.0.

Scratch 3.0 has one Video Sensing hat block, one reporter block, and two stack blocks:

Face Sensing Extension

Main article: Face Sensing Extension

The Face Sensing extension lets projects sense faces from a webcam. There are nine Face Sensing blocks in Scratch 3.0.

There are three hat blocks, two reporter blocks, one boolean block, and three stack blocks:

  • Go to () (face sensing).svg
  • Point in direction of face tilt.svg
  • Set size to face size.svg
  • When face tilts ().svg
  • When this sprite touches a ().svg
  • When a face is detected.svg
  • A face is detected.svg
  • Face tilt block.png
  • Face size.svg

Text to Speech Extension

Main article: Text to Speech Extension

The Text to Speech extension allows text to be read aloud. Scratch 3.0 has three Text to Speech stack blocks:

Translate Extension

Main article: Translate Extension

The Translate extension allows text to be translated to other languages. Scratch 3.0 has two Translate reporter blocks:

Makey Makey Extension

Main article: Makey Makey Extension

The Makey Makey extension lets projects interact with the Makey Makey. Scratch 3.0 has two Makey Makey hat blocks:

micro:bit Extension

Main article: micro:bit Extension

The micro:bit extension lets projects interact with the micro:bit. There are 10 micro:bit blocks in Scratch 3.0.

Scratch 3.0 has four micro:bit hat blocks, three stack blocks, two boolean blocks, and one reporter block:

Go Direct Force & Acceleration Extension

Main article: Go Direct Force & Acceleration Extension

The Go Direct Force & Acceleration Extension allows users to interact with the Go Direct force sensor.

Scratch 3.0 contains 4 Go Direct Force & Acceleration reporter blocks, three hat blocks, and two boolean blocks.

LEGO MINDSTORMS EV3 Extension

Main article: LEGO Mindstorms EV3 Extension

The LEGO MINDSTORMS EV3 extension lets projects interact with the LEGO MINDSTORMS EV3. There are 11 EV3 blocks in Scratch 3.0.

Scratch 3.0 has four EV3 stack blocks, three hat blocks, three reporter blocks, and one boolean block.

LEGO BOOST Extension

Main article: LEGO BOOST Extension

The LEGO BOOST extension lets projects interact with the LEGO BOOST. There are 12 LEGO BOOST blocks in Scratch 3.0.

Scratch 3.0 has seven Lego BOOST stack blocks, two reporter blocks, two hat blocks, and one boolean block:

LEGO Education WeDo 2.0 Extension

Main article: LEGO Education WeDo 2.0 Extension

The Lego Education WeDo 2.0 extension lets projects interact with the LEGO WeDo Construction Set. There are 11 blocks in Scratch 3.0.

Scratch 3.0 contains six Lego Education WeDo 2.0 stack blocks, two hat blocks, two reporter blocks, and one boolean block:

Raspberry Pi Only Extensions

WMCommonsRaspberryPi4.png This article or section documents something only available on the Raspberry Pi version of Scratch 3.0.
Main article: Raspberry Pi

There are also three extensions that are only available on the Raspberry Pi version of Scratch.

Raspberry Pi GPIO Extension

Main article: Raspberry Pi GPIO Extension

Scratch 3.0 contains 2 Raspberry Pi GPIO stack blocks, one hat block, and one boolean block.

Raspberry Pi Sense HAT Extension

Main article: Raspberry Pi Sense HAT Extension

Scratch 3.0 contains ten Raspberry Pi Sense HAT stack blocks, three hat blocks, one boolean block, and six reporter blocks.

Raspberry Pi Simple Electronics Extension

Main article: Raspberry Pi Simple Electronics Extension

Scratch 3.0 contains two Raspberry Pi Simple Electronics stack blocks, one boolean block, and one hat block.

Scratch Block Plugin

Main article: Block Plugin

The Block Plugin allows one to write blocks and scripts to appear on the Scratch Forums and Scratch Wiki, as well as other websites with the included JavaScript. It is written by the Scratcher blob8108. The dedicated forum topic for testing this plugin out can be found here.

In Other Programming Languages

Scratch is one of the original languages ever to use blocks, inspiring other languages to inherit the idea. Scratch modifications contain many new blocks typically that are not present in Scratch. MIT, where Scratch is made, has also created other languages using blocks such as the MIT App Inventor. Stencyl is a highly-professional language that features an entire block interface for programming real-time apps and online games. ScratchJr also has blocks which are even more friendly for younger children to understand.

See Also