Infinite Loop?

Guys,
I’m sorry I feel really dumb for having to ask this question and I probably oversee something really obvious, but how is this an infinite loop? (this is a test, as I have never used loops bevore):

Thanks a lot for your help!

while loops need to edit their conditional variable within the loop body for it to complete.

set PressT to false within the WhileLoop body branch to exit.

i recommend you avoid while loops. foreach and for loops are less likely to cause infinite loops.

How to check as correct?

Got it xD.