My if statement runs through as if the conditions have been met even when they haven\'t. I have tried moving bits of code about and even rewriting the if statement differently b
Your loop problem can be explained:
while (continueBool = true)
should read
while (continueBool == true).
while (continueBool == true)
As your code currently stands, you are setting it to true instead of checking for a value, so it will never exit.