From 07471a800762ee079bace210185a34707d19a5b9 Mon Sep 17 00:00:00 2001 From: Nightcycle <77173389+nightcycle@users.noreply.github.com> Date: Tue, 23 Jul 2024 19:01:38 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3875a27..b4b4bbc 100644 --- a/README.md +++ b/README.md @@ -18,4 +18,8 @@ Util.apply(character, clothingImage, Enum.BodyPartR15.LowerTorso) -- if you want it to change while on the character, you need to use the applied EditableImage local upperTorsoImage: EditableImage? = Util.apply(character, clothingImage, Enum.BodyPartR15.UpperTorso) assert(upperTorsoImage) + +-- if you want it to match the underlying skin color, use this: +local skinColor: Color3 = Color3.new(0.5,0.5,0.5) +upperTorsoImage.bakeSkinTone(upperTorsoImage, skinColor) ```