Hey! I’m not a scripter but I’m making a game and I don’t see anything on how to make a gamepass startercharacter. Help would be appreciated.
Thanks.
You shouldn’t be looking to use StarterCharacter for this. StarterCharacter’s canonical purpose is for changing the way all rigs are built, not for changing them for a specific set of players - and if you’re only changing their appearance but not the way the rigs are built, that’s still a bad use of it.
What’s your use case? What are you specifically trying to accomplish via StarterCharacter?
In the game there are different chef Startercharacters with different colours, what I’m trying to accomplish is a StarterCharacter that is given to you if you donated Robux.
It’s the same but with a golden head and a different face.
Yeah absolutely don’t swap out StarterCharacters to change their appearance then because that’s not how it’s intended to be used. If you’re using a custom rig build that isn’t R6/R15/Rthro then continue to use it but support colour changing. If you’re still using R6/R15/Rthro, don’t use StarterCharacter at all.
It is possible to change a character’s appearance smoothly using HumanoidDescriptions. Instead of multiple StarterCharacters you can have multiple HumanoidDescriptions responsible for describing how a Roblox character should look (if you need randomisation, randomise one of the descriptors before applying it). In the case of game pass ownership, you can apply the premium description instead.
Hm, I’ll look in to that.
Thank you for the information and help.