The problem with the transfer of data between scripts.

Good day!

There was a problem with transferring data through scenes, namely with the int variable called money
I don’t understand how to convert int to string.

Thank you All in advance…

Scripts:

using UnityEngine;
using UnityEngine.UI;

public class GameControll : MonoBehaviour
{
public int money;
public Text moneyText;

private void Start()
    {
money.ToString() = InformationToScene.informationScene;
moneyText.text = InformationToScene.informationScene;
    }

public void ClickAddMoney()
    {
money++;

moneyText.text = money + " |";
    }

public void LoadInformation()
    {
InformationToScene.informationScene = money.ToString();
InformationToScene.informationScene = moneyText.text;
    }
}

Are you receiving an error? If so, post the error so we know what we are fixing/looking for.

string moneyString = money.ToString();