Hey i have a question! If i ask about a Screen Gui if the player want the custom character or not how can i set the custom character as player character ?
Make a GUI for first and a two text/image button. Put your StarterCharacter in "ReplicatedStorage" When player clicking "no" it's basically closing a gui. When player clicking "yes" then it's launching a script something like this: local player = game.Players.LocalPlayer local Variable = game:GetService("ReplicatedStorage") local c = Variable.StarterCharacter:Clone() c.Parent = player.PlayerScripts --Not sure where do you need put a StarterCharacter in localplayer.
it's kinda not 100% working script, just example