local variable1 = anything
and the these options come up after you type the variable for autofill
variable1.Pack
variable1.Find
variable1.Format
variable1.GMatch
what are these called in the object browser?
Thanks in advance
local variable1 = anything
and the these options come up after you type the variable for autofill
variable1.Pack
variable1.Find
variable1.Format
variable1.GMatch
what are these called in the object browser?
Thanks in advance
find
, format
and gmatch
are string functions. They aren’t in the object browser because they’re not objects—they’re functions. I’m not sure what Pack
is.