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

i cannot change the player's head color help?

Asked by 2 years ago

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"

0
where is the script located? sne_123456 439 — 2y
0
:/ Really Man My Script Was Tested And Everything Cmon Now Bro :/ 25MouseSensitivity 63 — 2y

2 answers

Log in to vote
1
Answered by 2 years ago
Edited 2 years ago

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)
Ad
Log in to vote
0
Answered by 2 years ago
Edited 2 years ago

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

Answer this question