How do I make my players choose their clothes

I don’t wanna be spoonfed everything. It’s just that my problem is I don’t know where to start at all. I’d like a Custom Clothing similar to Electric State where the players put clothing, hats, accessories ids and the player’s clothing changes. How do I go about doing this

In the character, you can insert pants, and a shirt object.
Screen Shot 2020-11-22 at 12.09.11

If you are using a starter character, then you can insert it manually. However if you don’t have a starter character, you can place them in a script using Instance.new. If you go to the properties of the clothing, you will see a template.
Screen Shot 2020-11-22 at 12.09.35
Simply put the ID of the shirt that you want and the clothes should appear on the character. Now if you want people to be able to put custom clothing, you would first find some way to get the id of the clothing, and then set the ShirtTemplate to the ID. If i’m not mistaken, you need to format it with rbxassetid://. It would look something like this.

Shirt.ShirtTemplate = "rbxassetid://"..324234-- id of the clothing

Not sure if this was what you were looking for. :thinking: