So my game has a custom character, and I made it so you can get a gamepass that changes the color of this custom character. I made it so once you select a color, the character changes with a new custom character with different colors. The only problem with this is that you manually have to put in the character scripts inside the character. The main issue is that the local scripts will not run because they are not in a spot that will run the local scripts. Is there a way to make these local scripts run inside the character after they change their starter character mid-game?
StarterPlayerScripts wouldnt break when changing character, but server scripts cant see PlayerScripts.
Can’t you just place a script in ServerScriptStorage and the local script in ReplicatedStorage, then clone and change the parent of that local script to the character you need it in? That is what I do for my custom characters when they need separate animations.