No, the thing is that that does work, but manually putting in strings without the spaces does not add spaces, so I'm very confused about what makes that work.
So I did a little digging and I
found out why.Basically, ULib trims down non-quoted sentences and adds them into a table, for example: 'I am cool' would be returned at { "I", "am", "cool" }. While, '"I am cool" lol' is returned at { "I am cool", "lol" }