Preferably you shouldn’t use :find() if you’re typing out the entire string.
self.Name:find(full_name) → self.Name == full_name
find should only be used whenever a string fairly long o / a hard to type.
Preferably you shouldn’t use :find() if you’re typing out the entire string.
self.Name:find(full_name) → self.Name == full_name
find should only be used whenever a string fairly long o / a hard to type.