ID:2224477
 
(See the best response by Lummox JR.)
I tried using findtext(string, "\") but that doesn't work because \ is used as some sort of escape text thing, I don't know.

I want to find a backslash in a text string if there is one, how do I do that? I'm trying to prevent players from putting backslashes in their names.
Best response
The backslash itself needs to be escaped, so the string you want is "\\".
Ok thanks