Variables not updating?

I’m trying to make a visual novel-type game, and to get the text to change I used a variable to count how many times the continue button was clicked to know which string of text to display, but for some reason, my variable won’t update after one click, I really don’t know how to fix it :confused:

Here’s the project

You were super close! Check out line 29 in your code. You had:
textCount = + 1
You just need to switch it up to:
textCount = textCount + 1
image

1 Like

Oh my gosh thank you!!! I knew I did something wrong there :smiley: