roblox finding string in sentence code example
Example: how to fins certain peice of text in a string roblox
local str = "Roblox is a cool game"
str = str:lower()
if str:find("roblox") then
print("found it in string")
end
local str = "Roblox is a cool game"
str = str:lower()
if str:find("roblox") then
print("found it in string")
end