[Update] What does "Unexpected Unicode character: U+202c." mean?
Asked by
5 years ago Edited 5 years ago
Not much to tell except that I don't know what U+202c means. This is the error: Workspace.Hall.Script:10: Unexpected Unicode character: U+202c and here is my script:
02 | PrimaryPart = Hall.PrimaryPart |
03 | PrimaryPart.Position = Vector 3. new( 133.875 , 0.063 , 29.125 ) |
04 | hallClone = Hall:Clone() |
05 | hallClone.Parent = game.Workspace |
06 | hallClone.Name = "HallClone" |
09 | function AddHall(count) |
10 | local positionCloneX = 133.875 - count * 112.25 |
15 | PrimaryPart.Touched:connect( function (hit) |
16 | if hit.Parent = = game.Players then |
17 | HallCount = HallCount + 1 |
Keep in mind that this script is just a draft and not complete.
I think I do the math wrong, after all I feel really dumb for not knowing this.
Every answer counts! Thank you
Edit: After a little research, I found out that U+202c is -. So, my question has changed: How does one subtract in scripting. I don't want a literal answer, I want it to have a connection with my script.