Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Hello, my question is about changing appearance of character?

Asked by 6 years ago

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

0
use MarketPlaceService, look up tutorials about it on the wiki or maybe even on youtube Le_Teapots 913 — 6y
0
Ok cool I know that gets the stuff from catalog, but I want it to be like I press a button on keyboard and boom the hat appears or even a Tool click. Ok forget the button and tool, just you get what I mean I want it on the person so when they join they have it or they buy it from shop and they can equip it. LuckiestJade -5 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

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.

Ad

Answer this question