I want a function that toggles between different hair styles, right now I can only toggle between bald (which isn’t even an option I want to have) and the first of the hair styles. How would I go about making the other hair styles visible?
Instead of setting the item as visible, make them into a prefab and instantiate them when you need them. Instead of having a List, make an Array, and also make an int of the current Selected hairstyle. whenever the button is pressed currentHairStyle++ (or --) and instantiate the current Hairstyle and remove the currentHairStyle - 1.
This would be the way I would do it.
And since you don’t want bald, on Start(). set currentHairStyle to 0, and instantiate HairStyle 0