If you are interested in adding the word “Score” next to your Score (int value), feel free to use the below code in your own games! Be sure to test it to ensure it still fits on your screen with your resolution you set in Text Mesh Pro after adding the extra characters.
public void IncreaseScore(int amountToIncrease)
{
score += amountToIncrease; // make score go up by whatever we pass into it. (score + amountToIncrease)
// Debug.Log ($"Score is now: {score}"); // testing if score increases - tested works
scoreText.text = "Score: " + score.ToString();
}