I know this isn't a request site and that this should be a question, but is it possible to detect if there is a character in a text box. Like the text box is labeled "words are fun", I want to see if the script can detect if "words" is in the text or maybe if i type "a b c" im looking for a and it will print if we find a
im sorry that this question isnt valid
Just after a quick research, I found the answer!!!!!!
string.lower will help.
Example:
1 | local str = "Roblox is a cool game" |
2 | str = str:lower() |
3 |
4 | if str:find( "roblox" ) then |
5 | print ( "found it in string" ) |
6 | end |
output = found it in string