Answers for "roblox lua find a first word of a string before a character"

2

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
Posted by: Guest on March-31-2020

Code answers related to "roblox lua find a first word of a string before a character"

Browse Popular Code Answers by Language