When you code, and an error pops up, next time check the lines the error is at in your case its at (131,14), AND you can see at that line that you are declaring the method public void KillPlayer()
as a bool and not a method
you did
bool KillPlayer()
needs to be
public void KillPlayer()
↧