is there any way to get the amount of characters a player has in their name into a number, for example is the player name is slayer then the amount would say 6, if so could anyone link me to some explanation about it or tell me here
stringLength = string.len("hello world")
This would print the number of characters in the string hello world and put it inside the stringLength variable. stringLength is now 11
Like bash said, you can also do print(#("hello world")) '#' meaning number of characters within the string