SlideShare a Scribd company logo
Introduction
to Scratch!
By
Ms. Girija Rani Suthoju
What is Scratch?
• Scratch is a free programmable
toolkit that enables beginners to
create their own games, animated
stories, and interactive art
• and share their creations with one
another over the Internet.
What is Scratch?
• Scratch builds on the long tradition
of Logo, but takes advantage of new
computational ideas and capabilities
to make it easier for beginners to
get started with programming and to
extend the range of what beginners
can create and learn.
What is Scratch?
• The ultimate goal is to help beginners
become fluent with digital media,
empowering them to express
themselves creatively and make
connections to powerful ideas.
What is Scratch?
• Scratch is built on top of the Squeak
environment developed by Alan Kay
and colleagues.
What is Scratch?
• Scratch is being developed by the
Lifelong Kindergarten research group
at the MIT Media Lab, in
collaboration with Kids/beginners
research group at the UCLA
Graduate School of Education &
Information Studies.
Let’s Get Started!
• To Open Scratch, double-click on the
Scratch (cat) icon or click on
Scratch.exe
Getting Started With
Scratch
Once you’ve opened Scratch, you
should see this default screen:
Watch a Quick
Introduction to Scratch!
Let’s Look At Some
Scratch Examples
• Go to Open > Projects and choose the
category Animation
• Look through them and see what you will
be able to do in Scratch!
• (Some of these have sound. Please be
considerate of your neighbors and turn the
sound down on your computers! Ask your
teacher to help you if you don’t know how.)
Choose Your Sprite!
• You will notice that the default sprite is an
orange cat.
(A sprite is a small graphic that can be
moved independently around the screen,
producing animated effects.)
• You can choose a different sprite to
program from a library in Scratch, or you
can draw your own! You will create your
own sprite later.
Choose Your Sprite!
• To choose a sprite
from the Scratch
library, click on the
Folder with a Star
icon. When you
hover your mouse
over it, it will say
“Choose new sprite
from file”.
Choose Your Sprite!
Open the folders of
the different
categories of sprites.
Choose one that you’d
like to experiment
with by double clicking
on it. You can have
more than one sprite
in your animation!
Choose Your Sprite!
• Once you have a sprite that
you’d like to program, you can
delete the orange cat sprite
by clicking the scissor icon
and clicking on the cat!
• Make sure that you click on
the arrow icon before you do
anything else – otherwise,
you’ll delete something that
you really wanted!
• You can also right click on the
icon to delete that sprite
Resize Your Sprite!
• You can make your sprite larger or
smaller by using the “grow sprite” or
“shrink sprite” icons.
• You click on one of these icons, then
click on your sprite until it is the size
you’d like.
Choose Your Background!
• Right now, you have a plain, white
background – boring!
• You can also change your background
by choosing one from the Scratch
library or creating your own!
Choose Your Background!
• Click on the Stage:
• Now, select the
“Backgrounds” tab!
Change Your Background!
• You can experiment with creating or
importing your own background later,
but, for right now – choose one from
the library by selecting Import.
Change The Background!
From this screen, you can choose one of
the category folders, and select a
background that you like by double clicking
on it!
Now, We’re Ready to
Program!
Now, you should have a sprite and a
background that you’d like to work
with!
Programming In Scratch!
• The first thing you need to do is to click
on the sprite you want to program, and
select the “Scripts” tab.
• Since your sprite is the only thing that can
be animated, make sure you have it
selected.
• The Scripts area is where you “build” your
program by using the programming blocks.
Programming In Scratch!
• In the upper, left-hand corner of your
Scratch window, you will see 8 buttons .
• Each of these buttons have programming
blocks in those particular areas.
• We will first experiment with the Motion
blocks.
Motion!
• When you click on the motion button,
you will see the programming blocks
that can be used with your sprite.
• Let’s all program our sprites with the
same code first, and then you’ll be
allowed to experiment on your own!
Motion!
• Drag out the “move 10 steps” block.
• Change the “10” to “50” by clicking in the
block and typing in 50.
• To see your sprite move 50 pixels to the
right, double click on the block in the
Script area. Cool, isn’t it?!
Motion
• You can also set the motion block to
move a negative number of pixels by
typing a negative number in the block.
• This will move your sprite that
number of pixels in the opposite
direction.
What Is A Pixel?
• We’ve been talking about pixels – what is a
pixel?
• A pixel is one of the small units that make
up an image on a computer or television
screen.
• It is derived from the words picture and
element to make pixel!
The Scratch Stage
• The Scratch stage is 480 pixels wide and
360 pixels high.
-240 240
180
-180
More Motion!
• Now, add the “turn 15 degrees” block
to the other block of code.
• When you see the white bar between
the 2 blocks of code, you can release
your mouse. That white bar means
that the 2 blocks will “snap” onto the
other block.
More Motion!
• Again, you can change the number of
degrees by double clicking in that
area and typing in the number of
degrees you’d like your sprite to
rotate.
• Double click on the blocks to see your
sprite move and rotate!
Experiment With Motion!
• We’ve only used 2 of the blocks in the Motion
category.
• For the next few minutes, I want you to
experiment with all of the other blocks in the
Motion category.
• If you’d like to see what a block does, right click
on the block and then click on help.
• You can delete code easily by just dragging it
from the Script area!
• Have fun!
Control!
• The next category of programming
buttons we will experiment with is
the Control category.
• This is a very important category
because it controls how many times
an event happens, how long an event
happens, or when an event happens.
Control!
• The first block I’d like us to use is the
“when flag clicked” block:
• Drag this block out, and snap it on top of
the blocks you already have in your script.
Control!
• Now, instead of
having to double
click on your block
of code, you can
just click on the
flag icon to play
your animation!
Click here to start
Presentation Mode
• When you click on the presentation mode button,
your animation will fill the whole screen!
• To exit presentation mode, click the arrow in the
top left of the screen, or just press the Esc key.
Back to Control!
• Other powerful blocks in the Control
category are the blocks that handle
conditional statements.
• Conditional statements are commonly
called “if statements” or “if-else
statements”.
Conditional Statements
This code means that if the user presses the Space key on the
keyboard, the sprite will move 10 steps.
Sensing!
• The conditional statements must be
used along with the sensing blocks.
(Notice the shape of some of the
sensing blocks. They are the ones
that will fit inside the “condition”
since they have 6 sides)
Back to Control!
• For the next few minutes,
experiment with the blocks in
Motion, Control, and Sensing.
• Right click on a block and select help
to get information about a block.
• When you get something cool, I’d like
to see it!
Sound!
• Now, let’s add some sound to our
animation!
• There are many different ways to get
sound in your animation.
• The first way we’re going to experiment
with is by importing a sound from the
Scratch sound library.
Importing Sound From The
Scratch Sound Library
• Click on the sprite you want to have
sound.
• Click on the Sounds tab and select
Import.
Scratch Sound Library
• You will see different categories of
sounds that you can use in your
animation that are available for you
in the Scratch library.
Inserting Sound
• Once you find a sound that you like,
select it and click on OK.
• You will see the sound you just
selected show up under “New Sound”.
Play Your Sound
• If you click on the “Play” button, you
can preview your sound.
Adding The Sound To
Your Animation
• Now, you’re ready to add the sound
to your animation!
• Click on the Script tab.
• Select the sprite you want to have
sound.
• Now select the Sound button.
Adding Sound
• Now, select one of the blocks that says,
“play sound…”
• Select your sound from the drop-down
menu by clicking on the triangle next to
“pop”.
Recording a Sound
• Click on the record
button to record a
sound
• Click on the red
button to start
recording
• Click on the square to
stop
• You can rename the
sound by typing over
the name
Incorporate Sound Into
Your Animation!
When I click the flag, my bee will move and
buzz.
Time To Play!
• For the next few minutes,
experiment with Motion, Control,
Sensing, and Sound!
• When you get something cool, let me
see it!
Using The Pen!
• When using the Pen
tools, your sprite
actually becomes
your writing
instrument!
• You can change the
Pen’s color, its
shade, and its size.
Using the Pen!
• Your first Pen challenge is to write
your initials using the Pen tools.
• It may sound easy, but, you have to
remember to lift your pen when
necessary and also to put it back
down!
Pen Challenge #2
• Great job with Pen Challenge #1!
• Your second Pen Challenge is to use
the tools to create an interesting
design.
• Remember that you can change Pen
color and shade!
Numbers!
• There are many animation effects
you can create using Numbers in
Scratch.
• One effect is random movement of a
sprite!
Random Movement
• Remember that the Scratch
animation area is 480 pixels wide and
360 pixels high.
• That means that the range on the
horizontal axis is from -240 to 240.
• The range on the vertical axis is
-180 to 180.
Random Movement
• This is the block of code I would use
if I wanted my sprite to randomly
glide the entire horizontal and
vertical distance of my Scratch
animation area:
Numbers!
• For the next few minutes, experiment with
the tools in Motion, Control, Sensing,
Sound, and Numbers.
• Click right on a block and select help to
see what it does.
• When you get something cool, let me see
it!
Variables!
• Variables are used mainly in the
development of games.
• Open some of the examples in
Projects > Games to see how
variables are used to keep score in a
game.
Time To Have Fun!
• Now it’s time for you to create your
own original animations or games!
• Each table has a set of 12 laminated
cards with different projects that
you can try, to give you ideas for
your own animation.
Learn How To:
• While you’re creating your own
Scratch animation, I want you to
discover how to:
– Create your own sprite;
– Create your own background;
Last Slide!
• Remember to:
– Be appropriate;
– Be creative;
– Have fun!
• You will also be given a Scratch Help
Guide, complete with screenshots to
help you get started.

More Related Content

Similar to Scratch Introduction (20)

PPT
Scratch Lesson 1 – Basics
David Oromaner
 
PPTX
Start developing projects with Scratch Programming
PrakritiDhang
 
PPTX
Scratch
Shashwat Singh
 
PDF
Lp scratch1
Sailla Muhammad
 
PDF
Learn scratch-programming-e book
technicalteam
 
PPTX
7.Advanced Scripts in Scratch.pptx
dipalishewale2
 
PDF
How do I learn to code with Scratch in AEP
socalternativeeducat
 
PDF
Scratch Animation
Anjan Mahanta
 
PDF
How sprites interact in Scratch.pdf
Shahnawaz Shaikh
 
PDF
Scratch_Reference_Guide.pdf
Muhammad Waqas, MBA-Finance, MEF
 
PPTX
1.Scratch 1.pptx
Kausar Bohra
 
PDF
Getting-Started-With-Scratch-3.0 for kids programming
BrahimRabbani
 
PDF
Scratch software for kid logic development
muhammadbilal31983
 
PDF
Scratch handout
Samantha TerBeest
 
DOCX
Scratch for kids syllabus for 5 hours by bibek pandit
BibekPandit2
 
PDF
5f539cf994a071526fbc8ae3 scratch jr
pradeep799897
 
PPTX
How to use Scratch in ICT and Computer coding
YvonnieTzul1
 
PPTX
Tutorial scratch diana, claudia
mepetrescu
 
PPTX
Scratch Lesson 1
Vadim Axelrod
 
PPTX
Presentation unit 2 programming
gabriela-technoteacher
 
Scratch Lesson 1 – Basics
David Oromaner
 
Start developing projects with Scratch Programming
PrakritiDhang
 
Lp scratch1
Sailla Muhammad
 
Learn scratch-programming-e book
technicalteam
 
7.Advanced Scripts in Scratch.pptx
dipalishewale2
 
How do I learn to code with Scratch in AEP
socalternativeeducat
 
Scratch Animation
Anjan Mahanta
 
How sprites interact in Scratch.pdf
Shahnawaz Shaikh
 
Scratch_Reference_Guide.pdf
Muhammad Waqas, MBA-Finance, MEF
 
1.Scratch 1.pptx
Kausar Bohra
 
Getting-Started-With-Scratch-3.0 for kids programming
BrahimRabbani
 
Scratch software for kid logic development
muhammadbilal31983
 
Scratch handout
Samantha TerBeest
 
Scratch for kids syllabus for 5 hours by bibek pandit
BibekPandit2
 
5f539cf994a071526fbc8ae3 scratch jr
pradeep799897
 
How to use Scratch in ICT and Computer coding
YvonnieTzul1
 
Tutorial scratch diana, claudia
mepetrescu
 
Scratch Lesson 1
Vadim Axelrod
 
Presentation unit 2 programming
gabriela-technoteacher
 

Recently uploaded (20)

PDF
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
PPT
Oxygen Co2 Transport in the Lungs(Exchange og gases)
SUNDERLINSHIBUD
 
PPTX
原版一样(Acadia毕业证书)加拿大阿卡迪亚大学毕业证办理方法
Taqyea
 
PDF
6th International Conference on Machine Learning Techniques and Data Science ...
ijistjournal
 
DOC
MRRS Strength and Durability of Concrete
CivilMythili
 
PPTX
Introduction to Neural Networks and Perceptron Learning Algorithm.pptx
Kayalvizhi A
 
PPTX
MobileComputingMANET2023 MobileComputingMANET2023.pptx
masterfake98765
 
PDF
MAD Unit - 2 Activity and Fragment Management in Android (Diploma IT)
JappanMavani
 
PPTX
Break Statement in Programming with 6 Real Examples
manojpoojary2004
 
PDF
Ethics and Trustworthy AI in Healthcare – Governing Sensitive Data, Profiling...
AlqualsaDIResearchGr
 
PDF
Unified_Cloud_Comm_Presentation anil singh ppt
anilsingh298751
 
PDF
Introduction to Productivity and Quality
মোঃ ফুরকান উদ্দিন জুয়েল
 
PPTX
MPMC_Module-2 xxxxxxxxxxxxxxxxxxxxx.pptx
ShivanshVaidya5
 
PPTX
artificial intelligence applications in Geomatics
NawrasShatnawi1
 
PDF
Statistical Data Analysis Using SPSS Software
shrikrishna kesharwani
 
PPTX
Solar Thermal Energy System Seminar.pptx
Gpc Purapuza
 
PPTX
Day2 B2 Best.pptx
helenjenefa1
 
PPTX
Destructive Tests corrosion engineer (1).pptx
zeidali3
 
PPTX
Introduction to Design of Machine Elements
PradeepKumarS27
 
PPTX
Server Side Web Development Unit 1 of Nodejs.pptx
sneha852132
 
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
Oxygen Co2 Transport in the Lungs(Exchange og gases)
SUNDERLINSHIBUD
 
原版一样(Acadia毕业证书)加拿大阿卡迪亚大学毕业证办理方法
Taqyea
 
6th International Conference on Machine Learning Techniques and Data Science ...
ijistjournal
 
MRRS Strength and Durability of Concrete
CivilMythili
 
Introduction to Neural Networks and Perceptron Learning Algorithm.pptx
Kayalvizhi A
 
MobileComputingMANET2023 MobileComputingMANET2023.pptx
masterfake98765
 
MAD Unit - 2 Activity and Fragment Management in Android (Diploma IT)
JappanMavani
 
Break Statement in Programming with 6 Real Examples
manojpoojary2004
 
Ethics and Trustworthy AI in Healthcare – Governing Sensitive Data, Profiling...
AlqualsaDIResearchGr
 
Unified_Cloud_Comm_Presentation anil singh ppt
anilsingh298751
 
Introduction to Productivity and Quality
মোঃ ফুরকান উদ্দিন জুয়েল
 
MPMC_Module-2 xxxxxxxxxxxxxxxxxxxxx.pptx
ShivanshVaidya5
 
artificial intelligence applications in Geomatics
NawrasShatnawi1
 
Statistical Data Analysis Using SPSS Software
shrikrishna kesharwani
 
Solar Thermal Energy System Seminar.pptx
Gpc Purapuza
 
Day2 B2 Best.pptx
helenjenefa1
 
Destructive Tests corrosion engineer (1).pptx
zeidali3
 
Introduction to Design of Machine Elements
PradeepKumarS27
 
Server Side Web Development Unit 1 of Nodejs.pptx
sneha852132
 
Ad

Scratch Introduction

  • 2. What is Scratch? • Scratch is a free programmable toolkit that enables beginners to create their own games, animated stories, and interactive art • and share their creations with one another over the Internet.
  • 3. What is Scratch? • Scratch builds on the long tradition of Logo, but takes advantage of new computational ideas and capabilities to make it easier for beginners to get started with programming and to extend the range of what beginners can create and learn.
  • 4. What is Scratch? • The ultimate goal is to help beginners become fluent with digital media, empowering them to express themselves creatively and make connections to powerful ideas.
  • 5. What is Scratch? • Scratch is built on top of the Squeak environment developed by Alan Kay and colleagues.
  • 6. What is Scratch? • Scratch is being developed by the Lifelong Kindergarten research group at the MIT Media Lab, in collaboration with Kids/beginners research group at the UCLA Graduate School of Education & Information Studies.
  • 7. Let’s Get Started! • To Open Scratch, double-click on the Scratch (cat) icon or click on Scratch.exe
  • 8. Getting Started With Scratch Once you’ve opened Scratch, you should see this default screen:
  • 10. Let’s Look At Some Scratch Examples • Go to Open > Projects and choose the category Animation • Look through them and see what you will be able to do in Scratch! • (Some of these have sound. Please be considerate of your neighbors and turn the sound down on your computers! Ask your teacher to help you if you don’t know how.)
  • 11. Choose Your Sprite! • You will notice that the default sprite is an orange cat. (A sprite is a small graphic that can be moved independently around the screen, producing animated effects.) • You can choose a different sprite to program from a library in Scratch, or you can draw your own! You will create your own sprite later.
  • 12. Choose Your Sprite! • To choose a sprite from the Scratch library, click on the Folder with a Star icon. When you hover your mouse over it, it will say “Choose new sprite from file”.
  • 13. Choose Your Sprite! Open the folders of the different categories of sprites. Choose one that you’d like to experiment with by double clicking on it. You can have more than one sprite in your animation!
  • 14. Choose Your Sprite! • Once you have a sprite that you’d like to program, you can delete the orange cat sprite by clicking the scissor icon and clicking on the cat! • Make sure that you click on the arrow icon before you do anything else – otherwise, you’ll delete something that you really wanted! • You can also right click on the icon to delete that sprite
  • 15. Resize Your Sprite! • You can make your sprite larger or smaller by using the “grow sprite” or “shrink sprite” icons. • You click on one of these icons, then click on your sprite until it is the size you’d like.
  • 16. Choose Your Background! • Right now, you have a plain, white background – boring! • You can also change your background by choosing one from the Scratch library or creating your own!
  • 17. Choose Your Background! • Click on the Stage: • Now, select the “Backgrounds” tab!
  • 18. Change Your Background! • You can experiment with creating or importing your own background later, but, for right now – choose one from the library by selecting Import.
  • 19. Change The Background! From this screen, you can choose one of the category folders, and select a background that you like by double clicking on it!
  • 20. Now, We’re Ready to Program! Now, you should have a sprite and a background that you’d like to work with!
  • 21. Programming In Scratch! • The first thing you need to do is to click on the sprite you want to program, and select the “Scripts” tab. • Since your sprite is the only thing that can be animated, make sure you have it selected. • The Scripts area is where you “build” your program by using the programming blocks.
  • 22. Programming In Scratch! • In the upper, left-hand corner of your Scratch window, you will see 8 buttons . • Each of these buttons have programming blocks in those particular areas. • We will first experiment with the Motion blocks.
  • 23. Motion! • When you click on the motion button, you will see the programming blocks that can be used with your sprite. • Let’s all program our sprites with the same code first, and then you’ll be allowed to experiment on your own!
  • 24. Motion! • Drag out the “move 10 steps” block. • Change the “10” to “50” by clicking in the block and typing in 50. • To see your sprite move 50 pixels to the right, double click on the block in the Script area. Cool, isn’t it?!
  • 25. Motion • You can also set the motion block to move a negative number of pixels by typing a negative number in the block. • This will move your sprite that number of pixels in the opposite direction.
  • 26. What Is A Pixel? • We’ve been talking about pixels – what is a pixel? • A pixel is one of the small units that make up an image on a computer or television screen. • It is derived from the words picture and element to make pixel!
  • 27. The Scratch Stage • The Scratch stage is 480 pixels wide and 360 pixels high. -240 240 180 -180
  • 28. More Motion! • Now, add the “turn 15 degrees” block to the other block of code. • When you see the white bar between the 2 blocks of code, you can release your mouse. That white bar means that the 2 blocks will “snap” onto the other block.
  • 29. More Motion! • Again, you can change the number of degrees by double clicking in that area and typing in the number of degrees you’d like your sprite to rotate. • Double click on the blocks to see your sprite move and rotate!
  • 30. Experiment With Motion! • We’ve only used 2 of the blocks in the Motion category. • For the next few minutes, I want you to experiment with all of the other blocks in the Motion category. • If you’d like to see what a block does, right click on the block and then click on help. • You can delete code easily by just dragging it from the Script area! • Have fun!
  • 31. Control! • The next category of programming buttons we will experiment with is the Control category. • This is a very important category because it controls how many times an event happens, how long an event happens, or when an event happens.
  • 32. Control! • The first block I’d like us to use is the “when flag clicked” block: • Drag this block out, and snap it on top of the blocks you already have in your script.
  • 33. Control! • Now, instead of having to double click on your block of code, you can just click on the flag icon to play your animation! Click here to start
  • 34. Presentation Mode • When you click on the presentation mode button, your animation will fill the whole screen! • To exit presentation mode, click the arrow in the top left of the screen, or just press the Esc key.
  • 35. Back to Control! • Other powerful blocks in the Control category are the blocks that handle conditional statements. • Conditional statements are commonly called “if statements” or “if-else statements”.
  • 36. Conditional Statements This code means that if the user presses the Space key on the keyboard, the sprite will move 10 steps.
  • 37. Sensing! • The conditional statements must be used along with the sensing blocks. (Notice the shape of some of the sensing blocks. They are the ones that will fit inside the “condition” since they have 6 sides)
  • 38. Back to Control! • For the next few minutes, experiment with the blocks in Motion, Control, and Sensing. • Right click on a block and select help to get information about a block. • When you get something cool, I’d like to see it!
  • 39. Sound! • Now, let’s add some sound to our animation! • There are many different ways to get sound in your animation. • The first way we’re going to experiment with is by importing a sound from the Scratch sound library.
  • 40. Importing Sound From The Scratch Sound Library • Click on the sprite you want to have sound. • Click on the Sounds tab and select Import.
  • 41. Scratch Sound Library • You will see different categories of sounds that you can use in your animation that are available for you in the Scratch library.
  • 42. Inserting Sound • Once you find a sound that you like, select it and click on OK. • You will see the sound you just selected show up under “New Sound”.
  • 43. Play Your Sound • If you click on the “Play” button, you can preview your sound.
  • 44. Adding The Sound To Your Animation • Now, you’re ready to add the sound to your animation! • Click on the Script tab. • Select the sprite you want to have sound. • Now select the Sound button.
  • 45. Adding Sound • Now, select one of the blocks that says, “play sound…” • Select your sound from the drop-down menu by clicking on the triangle next to “pop”.
  • 46. Recording a Sound • Click on the record button to record a sound • Click on the red button to start recording • Click on the square to stop • You can rename the sound by typing over the name
  • 47. Incorporate Sound Into Your Animation! When I click the flag, my bee will move and buzz.
  • 48. Time To Play! • For the next few minutes, experiment with Motion, Control, Sensing, and Sound! • When you get something cool, let me see it!
  • 49. Using The Pen! • When using the Pen tools, your sprite actually becomes your writing instrument! • You can change the Pen’s color, its shade, and its size.
  • 50. Using the Pen! • Your first Pen challenge is to write your initials using the Pen tools. • It may sound easy, but, you have to remember to lift your pen when necessary and also to put it back down!
  • 51. Pen Challenge #2 • Great job with Pen Challenge #1! • Your second Pen Challenge is to use the tools to create an interesting design. • Remember that you can change Pen color and shade!
  • 52. Numbers! • There are many animation effects you can create using Numbers in Scratch. • One effect is random movement of a sprite!
  • 53. Random Movement • Remember that the Scratch animation area is 480 pixels wide and 360 pixels high. • That means that the range on the horizontal axis is from -240 to 240. • The range on the vertical axis is -180 to 180.
  • 54. Random Movement • This is the block of code I would use if I wanted my sprite to randomly glide the entire horizontal and vertical distance of my Scratch animation area:
  • 55. Numbers! • For the next few minutes, experiment with the tools in Motion, Control, Sensing, Sound, and Numbers. • Click right on a block and select help to see what it does. • When you get something cool, let me see it!
  • 56. Variables! • Variables are used mainly in the development of games. • Open some of the examples in Projects > Games to see how variables are used to keep score in a game.
  • 57. Time To Have Fun! • Now it’s time for you to create your own original animations or games! • Each table has a set of 12 laminated cards with different projects that you can try, to give you ideas for your own animation.
  • 58. Learn How To: • While you’re creating your own Scratch animation, I want you to discover how to: – Create your own sprite; – Create your own background;
  • 59. Last Slide! • Remember to: – Be appropriate; – Be creative; – Have fun! • You will also be given a Scratch Help Guide, complete with screenshots to help you get started.