I dont know if i this is the right thread to put this on but i am getting this error when creating a movement script
Assets/Scripts/Movement.js(35,1): BCE0044: expecting }, found ‘’.
I dont know if i this is the right thread to put this on but i am getting this error when creating a movement script
Assets/Scripts/Movement.js(35,1): BCE0044: expecting }, found ‘’.
The end of the error message is telling you what’s up. It was expecting to find a } character, but it instead found a " character and doesn’t know what to do with it.
Also, it’s pointing at line 35, and your screenies only go up to line 34.
For every opening brace { you have, you need a matching closing brace }. You’re either missing one of those, or you have a quote " where it’s not valid.
This stuff is super cryptic at first, but with practice you’ll fix errors like this in a snap. Bear with it and be patient, you’ll get there. Best of luck!
Thank you
Please post in the correct category (scripting questions go in Scripting), and post code as code, not as images. Thanks.
–Eric
You’re most welcome. Did you get it solved?
Yes i removed the bottom of the script and it seemed to fix it
There are close to 150 questions and answers about BCE0044 here: