This is a simple FlappyBird knockoff game created using Pygame, a popular Python library for creating 2D games. In this game, you control a bird and try to navigate it through a series of pipes by tapping the spacebar to flap its wings and avoid collisions.
- Python 3.x
- Pygame
- Clone or download this repository to your local machine.
- Grab the latest release of Python from here and install Pygame by executing
pip install pygameNote: If the pip install pygame did not work for you, then try this:
- Windows:
python -m pip install pygame- Mac:
python3 -m pip install pygame- Linux: Same as windows.
- Press the spacebar to make the bird flap its wings and navigate through the pipes.
- Avoid collisions with the pipes.
- Your score increases as you pass through each pair of pipes.
- The game ends if the bird collides with a pipe or if it hits the ground.
- Spacebar: Flap wings to fly.
- R: Reset
- main.py: Main Python script containing the game code.
- assets: Directory containing game assets such as images and sounds.
Contributions are welcome! If you have any suggestions, bug fixes, or improvements, feel free to open an issue or create a pull request.
This project was inspired by the classic game Flappy Bird developed by Dong Nguyen. Special thanks to the Pygame community for their excellent resources and tutorials
This project is licensed under the MIT License.

