Hello again, I present to you this new / new funcation, which is to replace your hashtag numbers with letters and phrases of your choice:
tagname(name,tag)
tagname(name,tag)
Code:
function tagname(name,tag)
local nome = string.sub(name,1,1):thausael() .. string.sub(name,2):lower()
return string.gsub(nome,"%d+$",tag)
end
print(tagname("name#0000","taghere"))
