I want to be able to change the appearance of a character, and make them wear things from catalog. So I want to be able to change their hat, gear, clothing too etc. As well as animations.
If I wanted to do something like this, how would I go about it? Thnx
How about this?
UIS = game:GetService("UserInputService") torso = game.Players.LocalPlayer.Character.Torso if UIS:IsKeyDown(Enum.KeyCode.X) then torso.BrickColor = BrickColor.Random() end
I cannot show you how to use the MarketPlaceService because I have not mastered it. However, the above script is an example of pressing a key to do something.