SkinColor (Property)

From Legacy Roblox Wiki
Jump to navigationJump to search
SkinColor
Property BrickColor BrickColor
Description Stores the color of the skin.
Member of Skin


Example

This would be copied in a LocalScript. The LocalScript would be in either the StarterGui or StarterPack.

Example
local skin = Instance.new("Skin")
skin.Parent = game.Players.LocalPlayer.Character.Torso
skin.SkinColor = BrickColor.new("Really Red")

The above example would make the Torso, Head, Right Arm, Left Arm, Right Leg, and Left Leg the BrickColor "Really red".