Hi all! Trying to make a bossfight game where the player can shoot six times before they have to reload. However, if you spam click during the reloadinf, once your bar refills all six projectiles will come out at once. Ive tried a couple things to fix it but none have worked. Any ideas? Heres the game:
2 Likes
If you want to get rid of the buffering altogether, you can use something like Forever, If <A button is pressed>…
If you have a variable that is set to “true” when the button is pressed, and “false” whenever it isn’t pressed, you can make sure that each button click results in a single shot instead of multiple.
I should look into if there’s a way to disable button press buffering, because I also often find it annoying.