Hello! I'm also using a customize option for my game. Now this may take a while to explain. I will tell you about the face changer scripts that I made. I will get back to you again about the hair. The armor for the boys or the skirts for the girls, that will be hard to make, so I will have to compose something for you for that. Now, lets start with the face changer. Keep in mind, this is my script, so you will need to change names to what your gui's are called. Now, first you need to add every remote event for each face in ReplicatedStorage. Next, lets name them, I named them like this "RemoteFaceTest1", "RemoteFaceTest2", ext. Ok, next add in a local script in each ImageButton or TextButton for each face. Finally add in a ServerScript, or just a normal script in Workspace for each face you want, whether you are doing 4 faces, 5 faces, it just depends how much faces you want for your gui that the player can change to. Ok! We can finally start scripting. Now, we will start with the Local Scripts, use a script like this in each Local Script:
1 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
2 | script.Parent.MouseButton 1 Click:Connect( function () |
3 | game.ReplicatedStorage.RemoteFaceTest 1 :FireServer( "rbxassetid://PUT THE FACE ID HERE" ) |
Now, for the ServerScript:
1 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
2 | game.ReplicatedStorage.RemoteFaceTest 1. OnServerEvent:Connect( function (player, facechange) |
3 | player.Character.Head.face.Texture = facechange |
Now, give it a try, if it works, I will try to give you the answer for the hair changer, I'm gonna start working on it. Before I do anything, I'm going to make sure, are you at all using a custom character for the players? I hope this works. -Mrmonkeyman