I’m currenly making word-guess game. I have module script in it in which i have table with all words.
Words from this table should be written at the board. It works with english words, but with russian I have a lot of problems.
I’m packing recieved word into table via string.split(“string”, " ") method, and i have 2 problems with this packing:
1. All packed non-english characters are duplicating (if word consists of for example 4 characters, I get table with twice more children - 8)
2. All packed non-english characters are replaced to question symbols (like this: �)
What I Already tried?
I dont know what i can do with that, so I rely on you guys. If you can’t understand smth or need more details or images/videos - let me know.