Please check out my game!

2 Likes

The game seems pretty good, but it looks like it needs a few bug fixes.

Not sure if this is intentional but pressing e lets me decrease my own healthbar? And a little bit after walking into a giant pizza I got (no exaggeration) 9999999999x lives

Hey! Thanks for the feedback.
I know there’s a lot of bugs Im only brand new and in the eighth grade.
The 999999999x lives is supposed to be a short time of immunity, I don’t know how to make it other than like that.
Im aware of the stamina problem, that is a problem Im working on!

I found a pretty good cheese strat using the maps geometry by going to the right and using that y shape to block most zombies coming from up and simply shooting left to defeat all zombies coming from the left, only occasionally shooting zombies from the right since they’re unlikely to appear there

If you want to give yourself temporary immunity, add in a Boolean variable for “is-immune” and set it true.

Then in any enemy collision, have an if statement to check if “is-immune” is true, if so just don’t take any damage away.

Once you want the immunity to end you can just set the variable back to false.

1 Like