Roblox lua string for anything code example
Example 1: how to print a string in roblox lua
local string = "" -- strings are enclosed in "" or ''
print(string) -- prints our variable string
print("Hello") -- directly print a string
Example 2: string.match roblox
string.match(string, match) -- the first argument is your string, the second argument is your string that you want to find in the first argument