Lesson 2: Draw a colourful Hexagon in Scratch

Using Pen to draw shapes in different colours in so cool in Scratch. And it is so easy too!

When you add Pen Down and Move Steps, the pen will draw a line. When use Pen Up, the pen is lifted. It is just like the way you put pen down on paper, move, and then lift it up!

 

The favourite part is where you Turn Degrees. If you Turn 90 degrees 4 times, you get a Square. If you Turn 60 degrees, 6 times, it will make a Hexagon.

To make it prettier, you can add Change Pen Colour in the Repeat. So every line is a different colour and you get a colourful Hexagon.

How to make Hexagon shape in Scratch using Pen?

Lesson 1: My first Scratch project: How to move objects?

Hello amazing people!

We will be teaching you today our first first Scratch project, which is How to Move Objects in Scratch.

This was my first project which I did using ScratchJr iPad app when I was 4 years old.

Now I use grown-up Scratch in which moving is also very simple. So let’s get started.

Ammal’s Fish Aquarium: Scratch for Kids by Kid

We will take a Fish, a Crab and Octopus move them using 3 different ways:

Ammal’s Fish Aquarium: Scratch for Kids by Kid

Using Move

Move is the simplest function to change position of an object (called Sprite in scratch).

We put 10 steps in move [under Motion] and put it within Forever function [under Control section].

We also add ‘if on edge, bounce’. If you don’t use it, the sprite will cross background boundary and you won’t be able to see it.

Rotation style is to ?

Using Glide

To understand Glide, think that every object on Scratch has X and Y axis [x-axis is horizontal (across), while the y-axis is vertical (up-down)].

When you start new project, you see Scratch Cat right in middle, which are [X,Y] = [0,0]. See below screenshot

So you can glide any object to any X,Y coordinates. Below code is making Fish go to [-220, 100] as starting point towards left of screen.

Then we use Glide to move to point [220,124] which is right of screen. We also define time to glide for example 9 seconds.

Using X, Y coordinates

Similar to Glide, we can also use Change X [or Change Y] coordinates to move. It