check if a string has a word roblox code example
Example: how to check if a sting incules something roblox
local cool_string = "Hi lol"
if cool_string:match("lol") then
print("yes")
end
local cool_string = "Hi lol"
if cool_string:match("lol") then
print("yes")
end