First Char uppercase

how to make first char uppercase

Run it through a script using either JS or Python

Can you explain more? because iam new bie on here

Paste this into LoliCode (replace all instances of myVar with the name of your variable). Do not paste this inside a block, paste it outside (so after an ENDBLOCK and before the next BLOCK statement).

myVar = myVar[0].ToString().ToUpper() + myVar.Substring(1);