For example, you have this:
x = "Player name = Hi. Player Value = 3. Player ID = 25167131."
How would you print 3?
I just kind of do this
x = "Player name = "..plr.Name..". Player Value = "..Value..". Player ID = "..plr.UserId.."."
The double dots lets you fit a variable into a string, and you can continue the string later on