Expected '=' in line 3, column 9
I'm coding something and this error keeps popping up where it says "Expected '=' in line 3, column 9. I have a preexisting = in the line in column 10. I've tried moving it to column 9 and it still shows this same error. help pls?
It just keeps showing that same error. Can someone help?
You're going to have to share your code. Make sure to preserve its formatting by pasting it between backticks so we can read it. You can look up the rules for markdown syntax if you need help.
It usally works if you make the code in another way, for example:
local x = 5
x += 1
maybe try
local x = 5
x = x + 1
That usally works. :D
(Did not see you're screen shot btw.)