Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How to make a simple drawing tool!
- HippityHop8
-
9 posts
How to make a simple drawing tool!
Hello! Some people on scratch are new to pen blocks. I decided to make a simple tutorial on how you can use these blocks. Hope you enjoy! 
1. Click the button in the bottom left corner.
2. Click “Pen”.
3. Do a script exactly or similar to this:
4. Now, make this script:
That script will make you draw when you click and hold!
5. You are done! Of course, you can change the background, color, or size, but other than that, you are done!

1. Click the button in the bottom left corner.
2. Click “Pen”.
3. Do a script exactly or similar to this:
when green flag clicked
set pen size to (5)
clear
set pen color to [#000000]
forever
go to [mouse pointer]
end
4. Now, make this script:
when green flag clicked
forever
if <mouse down?> then
pen down
else
pen up
end
end
That script will make you draw when you click and hold!
5. You are done! Of course, you can change the background, color, or size, but other than that, you are done!
define awesome
follow ( HippityHop8)
- JackK211424
-
500+ posts
How to make a simple drawing tool!
Im sorry, but this form is used for asking questions about your issues, not random tutorials. if you would like to do that you can make a project for it.
- HippityHop8
-
9 posts
How to make a simple drawing tool!
Oh. Well, that's sad. Im sorry, but this form is used for asking questions about your issues, not random tutorials. if you would like to do that you can make a project for it.
- deck26
-
1000+ posts
How to make a simple drawing tool!
Not for those needing help who don't have to fight for forum spaceOh. Well, that's sad. Im sorry, but this form is used for asking questions about your issues, not random tutorials. if you would like to do that you can make a project for it.

- HippityHop8
-
9 posts
How to make a simple drawing tool!
Ok!Not for those needing help who don't have to fight for forum spaceOh. Well, that's sad. Im sorry, but this form is used for asking questions about your issues, not random tutorials. if you would like to do that you can make a project for it.It's much clearer for those needing help and those helping if we stick to the way the forum works best. By all means create a tutorial project that you can refer to when helping others.

- LOLAdoesSCRATCH147
-
1 post
How to make a simple drawing tool!
i cant draw at all can you help me
- deck26
-
1000+ posts
How to make a simple drawing tool!
Please create your own new topic but if you need help drawing rather than learning how to use the pen extension this isn't the right place for you to ask - this is about writing code. i cant draw at all can you help me
- vickicat200
-
24 posts
How to make a simple drawing tool!
@LOLAdoesSCRATCH147 I must tell you. and I can help!
1. Click the button in the bottom left corner.
2. Click “Pen”.
3. Do a script exactly or similar to this:
when
clicked
set
pen
size
to
5
clear
set
pen
color
to
forever
go
to
mouse pointer
4. Now, make this script:
when
clicked
forever
if
mouse
down?
then
pen
down
else
pen
up
That script will make you draw when you click and hold!
5. You are done! Of course, you can change the background, color, or size, but other than that, you are done! =3
- vickicat200
-
24 posts
How to make a simple drawing tool!
mmm… I guess you have o use your fingers to drag and draw. How will I do it on my iPad?
Ipad version
1. Click the button in the bottom left corner.
2. Click “Pen”.
3. Do a script exactly or similar to this:
when
clicked
set
pen
size
to
5
clear
set
pen
color
to
forever
go
to
finger drag
4. Now, make this script:
when
clicked
forever
if
mouse
down?
then
pen
down
else
pen
up
That script will make you draw when you click and hold!
5. You are done! Of course, you can change the background, color, or size, but other than that, you are done! =3
- vickicat200
-
24 posts
How to make a simple drawing tool!
when green flag clicked
set pen size to (5)
clear
set pen color to [#000000]
forever
go to [ mouse pointer]
end
- anaandant
-
11 posts
How to make a simple drawing tool!
I tried this:
when green flag clicked
change pen size by (5)
set pen color to [#04c506]
set drag mode to (draggable)
when green flag clicked
if <touching color [#46f567] ?> then
pen up
else
pen down
end
- vickicat200
-
24 posts
How to make a simple drawing tool!
did this work for you though? I tried this:when green flag clicked
change pen size by (5)
set pen color to [#04c506]
set drag mode to (draggable)when green flag clicked
if <touching color [#46f567] ?> then
pen up
else
pen down
end
- Discussion Forums
- » Help with Scripts
-
» How to make a simple drawing tool!