-
What do you want to achieve?
I want to change the color of the character using brickcolor. -
What is the issue?
I try and do this by destroying bodycolors and then changing the brickcolor of every part in the character, which DOES work, on the server, and not the client? On the server I am red, but on the client I keep my normal body colors which is BLUE. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried looking for posts like this and did not find any. Also destroying the body colors has nothing to do with this, I already tested it.
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAppearanceLoaded:Connect(function(char)
char["Body Colors"]:Destroy()
for i, v in pairs(char:GetChildren()) do
if v:IsA("BasePart") then
v.BrickColor = BrickColor.new("Really red")
end
end
end)
end)