unity UI basic float text display code example
Example: Add float value to ui text in unity
//Attach your Text Object in the Inpsector
public Text goldUi;
float gold = 3;
goldUi.text = "You have" + gold.ToString("00") + "gold";
//This will display: You have 3 gold