for _,v in ipairs(WaveMessages) do
if string.lower(Message):match(string.lower(v)) then
-- do something
end
end
Something like this? I’m pretty sure thats how, If not, There are threads on how to make strings case sensitive.
for _,v in ipairs(WaveMessages) do
if string.lower(Message):match(string.lower(v)) then
-- do something
end
end
Something like this? I’m pretty sure thats how, If not, There are threads on how to make strings case sensitive.