i have tried to change the player's head color and it doesn't work
script.Parent:WaitForChild("Humanoid")
script.Parent:WaitForChild("Head")
script.Parent.Head.BrickColor = "Bright yellow"
You need to change skin colors inside of the "Body Colors" object.
local plr = game:GetService('Players').LocalPlayer plr.Character:WaitForChild('Body Colors').HeadColor3 = Color3.fromRGB(255, 255, 0)
Here Is A Simple Script I Made;
local Player = game.Players.LocalPlayer local PlayerCharacter = game.Workspace:WaitForChild(Player.Name) -- // New Way To Identify The Char local PlayerHead = PlayerCharacter:WaitForChild('Head') -- // Identifing The Head PlayerHead.BrickColor = BrickColor.new('Yellow') -- // Changing The Brick Color