if you're interested about the mid thing
Mid(string,whereyouwanttostartofstring,numberofletterstoreadfromstartofstring)
so for example
if we have a string called word with the value of "potatoe"
Mid(word,1,2) would give you "po"
you can also use Len(word) to get the number of characters in a word so you can do Mid(word,1,len(word)) to get: "potatoe"
and so on
Oh also if you wanted you could use the Mid thing to merge 2 parts of a string together, thats a cool trick if you want to save names and scores in the same variable
(example:
playerscore has saved inside of it : Playerone8
leaderbordshowtext = (Mid(playerscore,1,Len(playerscore)-1) & " has score of " & Mid(playerscore, Len(playerscore)-1,1)
which gives: Playerone has score of 8
sorry if i went off topic xD