If you want a smoother jump, instead of changing the y of your object directly, use velocity variables and change those, and change the x by that variable.
@@Katzegaming1 My attempt at explaining: forever [ change x by (velocity) ] when space key pressed v set (velocity) to [30] repeat until [ change (velocity) by [-2] ]
The video is so helpful and she made it understand in a simple way. I watched it an hour before my practical exam and my teacher was impressed with the results. Thank you so much❤
Hey Scratchers. Another way to get a character to jump is to create a variable, set it to 10, and then change the variable by -1 and move the character's y position by that many spaces. You can copy and paste the repeat 10 loop and replace the 10 with a 19. Put the "change by -1" block and the "change y by" block in this loop. It's a little more complicated but it will make the jumping look much more realistic.
@@colourpallette635 It’s pretty complicated so I’ll make it more precise for you. Basically, make a variable in the “Variables” tab and use the “set variable to” block to set it to 10 (The name of the variable doesn’t matter). Then, use the “change variable by” block and change the 1 to -1. Afterwards, use the “change y by” block in the “Motion” tab and replace the 10 with the circular block with your variable name in the “Variables” tab. Next, add the variable changing block and the y changing block into a “repeat 10” loop found in the “Control” tab. Finally, copy the loop and in the second variable changing button, change the -1 back into a 1. I hope I made this more clear. This technique for jumping is very complicated and requires a lot of knowledge about Scratch.
if you also want the character to have real world physics, you can make a speed y variable, set it to 0 at the start, and for the falling change speed y by -1 and then change y by speed y, and to reset it when the character lands, set speed y to 0, and when he jumps, set it to a certain number
thank you for this, I'm a software developer and my 9 year old son is going for a scratch course next week.. your video is my first look at this and I absolutely love it!
THANK YOU SO MUCH!!!! In my class we had a coding project due tomorrow and we have to present them and I didn't have anything to show. You literally just saved my life.
What an excellent speaker and explainer you are! Complete description, fast, and to the point. Describing a whole game in 5 minutes. Amazing job! (My guess is that you are a great coder, too!)
But in the code “When space key pressed” for the chick you made it Change Score by 1. How do you make it only if you jump OVER the egg you get a point, not when you just jump?
That code actually has a flaw. You can just jump really fast and get the score really high. A way to prevent this is by changing the score when the egg gets to the corner, so you can't cheat. Hope that helps!
There is a bug. The score changes every time the bird jumps rather than when it avoids an obstacle. I corrected this by saving x position of the obstacle in global variable and compare it with bird’s x position. I don’t know whether there is simpler way.
@DIVINE CRAFTS first choose ur 1 level backdrop and then for level 2 choose ur backdrop again and get the block switch backdrop to and whatever ur 2 backdrop is
@@iizac0034 That's a good point! You could fix it by having it only change the score by 1, if the difference between the x position of the Egg and the x position of the chick, is less than a certain number
Thank you, 10000x better than my teacher. This video is not only informative, but very easy to understand. I’ve had trouble with other scratch tutorials, but this is the only one I can understand 👍🏻 note: why tf did I write this lmfao
If you dont know how to make a character jump, defenitely dont use this method. Use a y velocity variable and set it to 13 or whatever you want it to be. Also, dont just throw yourself into a scroller game, scrolling in scratch is hard
Scratch Team: How to make a Jumping Game Me: How to make an actual platformer with custom blocks, not many motion blocks, no clones, and floor/ceiling detection. also 1,100th comment wooo Edit: I don’t have the tutorials anymore but I still want gravity in this tutorial
@@Straypique You can find it in this Scratch project! scratch.mit.edu/projects/452687969/ (it's not in the Scratch sprite library but you can put it in your backpack)
Thanks for the tutorial. Scratch is new to me and I'm trying to recall the class instructions. So it's helpful to replay this video to get the concept. 👍
How do I stop the player from going off the screen. Is there something like a constrain function? I know you guys have a bounce function to make the player bounce off the screen but what about constrain?
What character would you choose for your game, and what would you have them jump over? :D
Spikes
jump
A geometry dash player!
jumping over spikes!
Radd the raccoon
Its actually a character from an old old game I made that inspired most characters in the game im working on
THIS LADY IS SO MUCH MORE HELPFUL THAN MY ACTUALY TEACHER TYSM
IKR!!
Fax
IKR IVE BEEN DOING SO BAD IN COMPUTER CLASS
agree !!
MY TEACHER DID NOT EVEN GVE ME TIPS LMAOO
WE ALL WANT YOU AS OUR COMPUTER TEACHER RN!! YOU EXPLAIN SO WELL WITHOUT YELLING OR GIVING DEATH STARES, THANK YOU!!
lol, death stares
So true lol
Yeah true
yeah but the jumping is kinda lazy cause usually to make jumping in scratch u have to code gravity but whatever
I was thinking like that until I become the teacher 😢
Thank you for this tutorial. I followed it with my son (7) and we "made" the game before bedtime! This just made his day!
Awww, yay, this comment made me so happy! -- Zinnea
Wait , bedtime means night time right ? Then how can it make his day ??
@@varshasrivastava5430
That means like it made his day happy
@@bootylicker90000 , it was a joke ....
If you want a smoother jump, instead of changing the y of your object directly, use velocity variables and change those, and change the x by that variable.
Pls how can I do that?
what
idk what that means but thx
so (if up arrow pressed)
(set speed y to 16)
change speed y by -1
change y by speed y
@@Katzegaming1 My attempt at explaining: forever [ change x by (velocity) ]
when space key pressed v
set (velocity) to [30]
repeat until [ change (velocity) by [-2] ]
The video is so helpful and she made it understand in a simple way. I watched it an hour before my practical exam and my teacher was impressed with the results. Thank you so much❤
Hey Scratchers.
Another way to get a character to jump is to create a variable, set it to 10, and then change the variable by -1 and move the character's y position by that many spaces. You can copy and paste the repeat 10 loop and replace the 10 with a 19. Put the "change by -1" block and the "change y by" block in this loop. It's a little more complicated but it will make the jumping look much more realistic.
@Nut's Channel Don't worry. It took me a long time to learn about Scratch to know how to do this.
this is the jump that i want :D
Can you please explain a bit more. I m 11 yrs old and very new with Scratch. Thanks
@@colourpallette635 It’s pretty complicated so I’ll make it more precise for you.
Basically, make a variable in the “Variables” tab and use the “set variable to” block to set it to 10 (The name of the variable doesn’t matter).
Then, use the “change variable by” block and change the 1 to -1.
Afterwards, use the “change y by” block in the “Motion” tab and replace the 10 with the circular block with your variable name in the “Variables” tab.
Next, add the variable changing block and the y changing block into a “repeat 10” loop found in the “Control” tab.
Finally, copy the loop and in the second variable changing button, change the -1 back into a 1.
I hope I made this more clear. This technique for jumping is very complicated and requires a lot of knowledge about Scratch.
@Axel? Exactly
if you also want the character to have real world physics, you can make a speed y variable, set it to 0 at the start, and for the falling change speed y by -1 and then change y by speed y, and to reset it when the character lands, set speed y to 0, and when he jumps, set it to a certain number
@aidan coote simple
when 🏁 clicked
forever
if (high score)> then
set [high score] to (score)
How can you pervent flying by spamming the buttons?
@@Alden_Redstoner run jump only if he is touching the ground
@@apple_ilev5s how to detect a sprite touching an invisible sprite(the costome is invis, not using hide block)
@@Alden_Redstoner if its using ghost, then it will sense it as normal
thank you for this, I'm a software developer and my 9 year old son is going for a scratch course next week.. your video is my first look at this and I absolutely love it!
this video is made by scratch-
All the scratch tutorials have been really confusing but this one has been really simple
yes finally i can get my grades up, the teacher doesnt help at all. thank youu!
I'm in 2021 and that's not same
And she is really helpful
@@icfanleader7511 yep!
@@prestigehome614 :)
omg imagen if ur teacher sees this comment
i had homework about creating a game on scratch...this helped very much, thank you! :)
Litterally didnt do anything for my 3 week assign ment and all it took was this 1 video and im saved
your lucky dude
Same
i must agree
What are your STANDARDS, I want such standards man...
THANK YOU SO MUCH!!!! In my class we had a coding project due tomorrow and we have to present them and I didn't have anything to show. You literally just saved my life.
Thank you now I can do my homework ❤️
I also !!
Hi
Same with me!! I was wondering how to make one, I am also just beginning to use scratch and I love it!
Me also😉
Yeah me too
Thank you Zinnea! I did my computer homework easily and my teacher praised me
Omg thank you so much you are a scratch TH-camr that actually helps! You made this so easy for me. THANK YOU
this is so cool I feel like an actual coder! :D
:D That's awesome! You *are* an actual coder!
@zinnea hey I used the pixel art tutorial and this one and its super cool!
It’s called scripting not coding 😅
@@Zinnea I did the verbal pet one
@@Hindle71 add,
What an excellent speaker and explainer you are! Complete description, fast, and to the point. Describing a whole game in 5 minutes. Amazing job! (My guess is that you are a great coder, too!)
thank you so much it helped me finish my brother project
Me 2 LOL
Dang Zinnea, even my teacher can't explain the meanings of these blocks! You earned being in the scratch team!
But in the code “When space key pressed” for the chick you made it Change Score by 1. How do you make it only if you jump OVER the egg you get a point, not when you just jump?
as for my example, I added a point after the obstacle glided and dissapeared
@@duzinchevicimariela3855 but it doesent change the score if u hide it
@@pazerr well I put the command AFTER I hid the object
That code actually has a flaw.
You can just jump really fast and get the score really high.
A way to prevent this is by changing the score when the egg gets to the corner, so you can't cheat.
Hope that helps!
O
A*
Thank you really much this really helps!
my kids love games and this tutorial is so much helpful. Thanks, Scratch team for sharing such content.
Thank you, I have been trying forever to make something jump and fall back down again. I can't believe it's that simple.
This is one of the best scratch tutorial I have watched…Thanks Loads
Thank you so much for this content if I hadn’t seen it my parents wouldn’t have let me continue game devoloping
There is a bug. The score changes every time the bird jumps rather than when it avoids an obstacle. I corrected this by saving x position of the obstacle in global variable and compare it with bird’s x position. I don’t know whether there is simpler way.
instead of changing the score on the jumping logic, you could add the score logic after each egg has reached the new position
Howtodo that@@AgustinMarquezBraconi
i have maked three games it helped me a lot and gave lot of ideas
this tutorial really helped me to make a game, thanks!
Oh, that's awesome!!
THIS LADY IS SOOOOOOOHELPFUL FOR ME TO CREATE A GAME ON SCRATCH! THANK YOU!!! SHE HELPED ME TO MAKE A MINECRAFT JUMPING GAME IN SCRATCH!!!
Thank you so much 😊
I was not understanding any video but when I see this one I even make my own game
Thanks again
My teacher gave this project work for me so I watch this and its really helpfull! Tysm! :D
Hi Uraraka!
@@icfanleader7511 hello!
@@ochakouraraka1605 how are you!?
Although I left scratch quite the while ago, I do keep visiting every now and then. It nice to see that the community is still active :D
Hi this game helped me a lot tq
This is amazing this has enhanced my scratch skills!
Hey your project was just amazing just loved it:N
Thank you for this tutorial. I followed it and was able to create a game in Scratch. I subscribed to your channel because you are the best tech help!
AMAZING! This tutorial was so easy to follow, and I LOVED it!
I have made this before the tutorial, but it had moving background props, various opsticals, and a duck move!
I’m a advanced scratcher I don’t need it
@@nathankwok1292 a d v a n c e d
@@randomappleman5243 a d a n c e
OMGGGG TYSMM!!! You are wayyyyyyy better than my school teacher, I wish you were my teacher TwT THIS HELPED A LOT AND WHEN I SAY A LOT I SAY A LOT LOT
Best Teacher ever 😂😂❤❤❤🫡🫡
Bro 😎 tanjiro demon slayer fan ❤
😂😂😂😂😂😂😂
Thank you so much!! We have this project coming up in school tomorrow and we have to make a game so this helped a lot!! Much love Scratch Team!! ❤️❤️
Wow Thanks, Yet another tutorial.
Always helping scratches everywhere if it wasn't for these tutorials scratch wouldn't be the same!
:)
Nah it would be the same tbf
@@leroyspeelt Not many people would know how to use scratch :/
good tutorial
Hey Zoey, I just want to say THANK YOU.
:D You're welcome!
@DIVINE CRAFTS first choose ur 1 level backdrop and then for level 2 choose ur backdrop again and get the block switch backdrop to and whatever ur 2 backdrop is
You can also move the change score to the egg following the glide, this will prevent spamming jumps to rack up points
Wow she should be getting paid from scratch for this type of content. Very easy to follow and professional. Great tutorial.
i was searching everywhere for a jumping and then i found this- its so simple but so effective :D
First like!! I love your scratch tutorials since I have really got better with them!!
:D I'm so glad!!
Happy you feel glad!
@@Zinnea hey zinnia what happens if the character jumps before the egg comes this will count as an unearned point to them which isn’t good
@@iizac0034 That's a good point! You could fix it by having it only change the score by 1, if the difference between the x position of the Egg and the x position of the chick, is less than a certain number
@@Zinnea i just join scratch today but i can't comment and share
Thank you very much scratch team i liked and sub and turned the bell
Thank you! Now I can do my college homework :)
No offense but I’m doing this in 4th grade how are u in college and doing this
@@anayakhan7969 im doing this in 6th grade..
@@InspireEveryDay_Official me in 7th
@@LazaRoblox now I’m in 7th
@@InspireEveryDay_Official good
My sprite just jumps up and down but the screen won’t move
THNK YOU SO MUCH I HAD A COMPUTER PROJECT ITS DUE TOMORROW I DONE HAVE TIME I CANT FINISH MY FIRST ONE 😭😭
Thanks so much!😁 I’m a beginner and this is my first game❗️😀
My friends love it!! Keep on making these videos, you can help a lot more people❤️
it was my first game too.
@@TheIroncladCommander it is my first game, and i hope i get better to the point where i start using unity
Yeah me too❤
You basically did my homework for me thanks 🙏🏾
She did my project worth 45 points
Vlone. Wervo mine was 100
thank you very much!, I made it as if it were a game for children, and it turned out good!, you are the best teacher, IN THE WORLD!
This was very helpful. Wonderful presenation !!! The character I used was the Penguin 2 and I had had it jump over Rocks in the snowy Slopes backdrop.
This is alot better than very long tutorial's, keep it up
you've been a big GAME changer in my scratch technique!
0:30 scratch: save now Me: bad
This tutorial is really clear, and easy! Good job!
This tutorial got me started on scratch, now I make cool 3d games. Thanks.
could you please do one, when you reach a certain score you change backdrops? I'm having trouble trying to find out what i'm doing. Thanks!!!
You could do
If < score = (whatever)>
Set backdrop to (whatever)
I did :
If Score=10, Set Backdrop to backdrop2, set costume to costume2.
And so on until I got bored.
@@beckiemunson4928 yes but it could be any score so yes
Where do you find if score =
@@cassgidlow3922 you have to use and if block
Thank you, 10000x better than my teacher. This video is not only informative, but very easy to understand. I’ve had trouble with other scratch tutorials, but this is the only one I can understand 👍🏻
note: why tf did I write this lmfao
Yeah I agree😂
You can tell thats shes an amazing person! Thank you so much for your AMAZING help!!!
It Literally helped me a lot in making a scratch work
Wow! Zinnea, you are really good! Your videos help me become more of a Scratcher! Thank you so so much!
She became the member of scratch team
thank you so much for this tutorial helped me so much that I can pass my computer exam.....keep making these educational videos
thank you so much zinnea for making all these tutorials and just--well, being you!
i am making a side scroller and needed to know how to jump so thanks!
If you dont know how to make a character jump, defenitely dont use this method. Use a y velocity variable and set it to 13 or whatever you want it to be. Also, dont just throw yourself into a scroller game, scrolling in scratch is hard
@@habibikhader I know
The explanation is really good and it was really helpful.
AMAZING! This tutorial was so easy to follow, thanks a lot!
Uhm u see click space 2 times at once u see the problem
0:07 Google dinosaur game
thanks it helped me in my school
Scratch Team: How to make a Jumping Game
Me: How to make an actual platformer with custom blocks, not many motion blocks, no clones, and floor/ceiling detection.
also 1,100th comment wooo
Edit: I don’t have the tutorials anymore but I still want gravity in this tutorial
me just copying exactly what she's doing parents "good job"
Me: Following a tutorial
When I’m done parents come in
Parents: Good job! You’re so smart!
Me: Umm…. Yeah?😅
Professional: copies code from Stack Overflow
Boss: Good job!
thank youuu, i'm new to scratch and proudly make one game following the tutorial. clearly explained
this is like the google dinosaur game
yes!
Could you tell me what name of the cactus plant in scratch plant
@@Straypique You can find it in this Scratch project! scratch.mit.edu/projects/452687969/ (it's not in the Scratch sprite library but you can put it in your backpack)
Big bruh moment
@@Zinnea thanks a lot . I am Jiya I was on my mother's mobile ( known as @Scratch_Gamer_Jiya on scratch )
Thank you so much! I have my practical test on scratch tomorrow and I can finally make this 😊.
Thank you very much this helped a lot
Question: will Scratch 4 be a thing?
Likely.
yes, it will come out in 2025
@@greatanimationsstuff1867 Very Late
"So our character . has something to jump.. over" lol
This lady is legit more helpful than my teacher
people who love to make scrach games
Me
My teacher showed me this and expects us to do it in one go BUT SHE TALKS QUICK.... so im watching from home and taking notes
This Helped Out Aton This Is An Amazing Video!
I would make a astronaut cat to jump over asteroids!
thats an awesome idea!
@@VanshDeVansh Thank you!
the one that is jumping just dies so quickly
Thanks for the tutorial. Scratch is new to me and I'm trying to recall the class instructions. So it's helpful to replay this video to get the concept. 👍
Do not use this tutorial it is bad scratch is not reliable for tutorials check out griff pach instead
@@vanilla4475
Okay
Thank you 💕
thank you so much, this helped so much! I want to make really fun games, and this is a great start! Thank you, again
This person is so helpful. I bet she is a scratch pro
She’s a dev
Great tutorial... My son just made one jumping game for his school project and improvise by adding the background music! :D
Really nice explanation! I posted this and this was really fun! Nice! Good vid btw!
How do I stop the player from going off the screen. Is there something like a constrain function? I know you guys have a bounce function to make the player bounce off the screen but what about constrain?
The character and everything else are not moving the obstacles are
But the player is movable if we add code for it.@@DoubleKclub
@@DoubleKclubthank u for answering ppl questions
@@TND12 you're welcome
The jump part really helped me,THANK YOU for the help
this is so helpful, you make it easy to understand, kudos to you
Thank you! My lecture was decent but this actually helped more and explained more. Awesome sauce
Miigwetch