how to send information to the next sceene?

i´ve been wondering how to do this, for example to have a loadout sceene and when you enter a game sceene you would have the loadout you chose. I apreiate your time and thank you in advanced.

See DontDestroyOnLoad. This is the simplest/straight-forward way to keep objects around forever storing data. You can try a static class you initialize once and store data there. There’s PlayerPrefs for more permanent storage, but that’s going into saving territory. Your question is a little vague and there are dozens of ways to transfer data.

  • Store it in (static) variables
  • PlayerPrefs
  • Mark some game object DontDestroyOnLoad, so it’s kept after scene is loaded