Limitations of Scratch
Project (general)
- Title maximum length: 100 characters.
- project.json uncompressed file size limit: 5MB
- Individual asset (costume or sound) file size limit: 10MB
- There is no limit on sb3 file size.
- There is no limit on block count but due to the project.json size limit, expect that only 20000-30000 blocks can fit within it.
- Project framerate: approx. 30FPS
Sprites
- Sprites are visually snapped to a grid sized with 480x360 steps on the screen.
- Size is limited by the current costume, when scaled it must not be visually bigger than 150% the size of the stage (720x540) on any axis or smaller than 5 pixels on any axis. Source code
- Maximum number of clones at one time: 300 (limit shared by all sprites) Source code
- Sprites can not be positioned off-screen with a margin less than 15px still showing. Source code
Costumes/backdrops
- Bitmap maximum dimensions: 960x720 (using "half pixels").
Sensing
- Touching color precision is limited to 5 bits red, 5 bits green, 4 bits blue. (this is only 14-bit color, much less than 24-bit RGB that is displayed by Scratch). Source code
Events
- Broadcasts can only run once per frame.
Variables and lists
Cloud variables
Sound
- Volume range: 0 to 100% Source code
- Pitch effect range: -360 to 360 Scratch Wiki
- Pan effect range: -100 to 100 Scratch Wiki
- A sound can not be played multiple times simultaneously. All clones will be limited by this too. The sound may be duplicated in the sounds editor (or added to a different sprite) if playing it simultaneously is desired.
Pen extension
- The pen "layer" (internally called "skin") is in front of the stage but behind all sprites. Source code
- Pen layer/skin dimensions: 480x360
- There is no way to erase a stroke or part of the pen layer. There is only an "erase all" block.
- Pen "size" is its diameter in pixels and is limited to between 1 and 1200. Source code
Music extension
- Duration in beats can only be between 0 and 100. Source code
- Tempo can only be between 20 and 500. Source code
- A maximum of 30 instrument sounds can be played simultaneously. Source code
Site
- Usernames can only be chosen with a length between 3 and 20 (inclusive). Characters are limited to the english alphabet (case insensitive), numbers 0-9, the underscore "_" and dash "-". Note that there are some usernames that do not fit these requirements, they were set by the Scratch Team or created before some requirements were made. You can assume that no active user has an invalid username however.