Dynamic SkyBoxes

I want to allow the player to pick an environment ( skybox ) they would like to play in but I do not want to have a scene for each skybox as I have 8 different ones.

I can not find in any of the documentation pertaining to this or on this forum any way to code for this. I could use some help in where to find the code in the documentation or if there is a demo I can use.

I know I must be missing something any help would be appreciated.

Simply put, you'd just make a script which sets one of the skybox materials like this:

RenderSettings.skybox = yourSkyboxMaterial;

Thank you, I understand now, I will have to create a variable then attach a skybox and call it with your code. Thanks again.