Copy String value inputField from Scene1 to Scene2

I just want to copy string value what i write in inputField from scene1 to scene2… (Sorry for my bad english) :smile:
Can anyone help me please?

Use PlayerPrefs to save the string value in scene 1 :

PlayerPrefs.SetString("Name", yourInputField.text);

Then load it in scene 2 :

yourStringValue = PlayerPrefs.GetString("Name");

Thanks you. It worked.