I know that I can turn a number value into a string using tostring(), but can I turn a string with number into a string? Lets say I have this piece of code:
local text = root
local number = 1
local name = tostring(text + number)
Would that possibly work? If yes, would the result be “root1”?