Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How do make a flappy bird game
- monkey2012halfpint
-
0 posts
How do make a flappy bird game
How do you make a flappy bird game can I have some code help
- kiwilover2736
-
1000+ posts
How do make a flappy bird game
There are various tutorials on YouTube, so i'd recommend searching for one. You can always also check already existing Flappy Bird games here on Scratch!
- Zenocker
-
9 posts
How do make a flappy bird game
Look at some tutorials! They’re basically everywhere.
Just look it up on google/YouTube.
Here’s the first video I found when searching on google:
https://www.youtube.com/watch?v=WNElB_uppNQ
(Not advertisement)
Just look it up on google/YouTube.
Here’s the first video I found when searching on google:
https://www.youtube.com/watch?v=WNElB_uppNQ
(Not advertisement)
- OsomKoolGuy
-
78 posts
How do make a flappy bird game
you can use some code like this to get the bird to work:
Then for the pipes you can use
You could program a velocity system for the bird if you know how instead of the more simple approach given
- youormeletsbringit
-
69 posts
How do make a flappy bird game
You can get an idea from the code in my project https://scratch.mit.edu/projects/1000104964
- abubriski
-
500+ posts
How do make a flappy bird game
And for the pipes:
Last edited by abubriski (June 5, 2024 12:11:32)
- PointerOS_software
-
35 posts
How do make a flappy bird game
Just put this code on the bird sprite: How do you make a flappy bird game can I have some code help
you can increase the vertical velocity value in the else branch to increase the speed of falling. Also you can rearrange the code so as to omit the “not” operator if u want.
follow this code by:
then go to the obstacle sprite and you can make some clones scripts for the obstacles and if then clone touching bird, broadcast death, game over.
- PointerOS_software
-
35 posts
How do make a flappy bird game
The mouse down script could be abused and players could just hold onto the mouse button instead of clicking in an order, also changing Y this drastically will make way for some choppy movements. you can use some code like this to get the bird to work:Then for the pipes you can useYou could program a velocity system for the bird if you know how instead of the more simple approach given
- ayushdel_test
-
1 post
How do make a flappy bird game
Bird code -
obs-
obs-
Last edited by ayushdel_test (June 6, 2024 10:03:36)
- abubriski
-
500+ posts
How do make a flappy bird game
That's why I made sure to do it this way (I am not @OsomKoolGuy):The mouse down script could be abused and players could just hold onto the mouse button instead of clicking in an order, also changing Y this drastically will make way for some choppy movements. you can use some code like this to get the bird to work:Then for the pipes you can useYou could program a velocity system for the bird if you know how instead of the more simple approach given
- Discussion Forums
- » Help with Scripts
-
» How do make a flappy bird game