Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How to Code
- flyinqbees
-
Scratcher
3 posts
How to Code
Hello! I was wondering if somebody would teach me how to code on here. I wanna make cute animations but I really do not know how. Can someone simplify it for me? I am 15 and I have audhd so I've never picked up on how to do this.
- deck26
-
Scratcher
1000+ posts
How to Code
I suggest you search for tutorials in Scratch and on YouTube. Very basic animation is just switching costumes in a loop= the standard Scratch cat sprite has two costumes and if you switch between them you can get a basic walk effect for example. The work in animations is more about creating the images than the scripting.
- powellsh
-
Scratcher
71 posts
How to Code
Hey flyinqbees! First, I want to graciously welcome you to Scratch and the Forums! I hope you have fun here learning all about block coding, and meeting new people!
For an animation, what you could do is create multiple costumes inside of one sprite. Once you do this, you can add this code in the sprite for it to be able to change costumes:
Pro Tip: Find the blocks in the color category that matches it!
For an animation, what you could do is create multiple costumes inside of one sprite. Once you do this, you can add this code in the sprite for it to be able to change costumes:
when green flag clicked
forever
wait (0.02) secs
next costume
end
Pro Tip: Find the blocks in the color category that matches it!
- The_MizukiRosa
-
Scratcher
34 posts
How to Code
If your beginner Scratch user, So i will show you my example here is!
-
-
when green flag clicked
switch costume to [costume1]
forever
next costume
wait (0.1) secs
end
The when green flag clicked, You must be put it a first costume frame, and next put it forever, and put it next costume frame and wait seconds. (Mine is 0.1 frame seconds) So, you clicked green flag start, and is starting animation!
Sorry for my grammar is kinda badly. (My text into a red blocks oh no..)
- flyinqbees
-
Scratcher
3 posts
How to Code
I suggest you search for tutorials in Scratch and on YouTube. Very basic animation is just switching costumes in a loop= the standard Scratch cat sprite has two costumes and if you switch between them you can get a basic walk effect for example. The work in animations is more about creating the images than the scripting.okay, thank you!! (I think this is how I reply to you??)
- Discussion Forums
- » Help with Scripts
-
» How to Code