The while loop is written: while(playerOneHealth <=0 || playerTwoHealth <=0)
This should read: while(playerOneHealth > 0 && playerTwoHealth >0) as the loop should end when one of the players reaches 0 health. This needs to be updated in all of the screencaptures of the scripts as it is the same throughout.
The while loop is written: while(playerOneHealth <=0 || playerTwoHealth <=0) This should read: while(playerOneHealth > 0 && playerTwoHealth >0) as the loop should end when one of the players reaches 0 health. This needs to be updated in all of the screencaptures of the scripts as it is the same throughout.