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

R15 Body Colour Change?

Asked by 6 years ago

Help, I'm trying to make an R15 body colour change script, but it won't work. Here is the script: The localscript is inside the StarterPack, so if you play the game it will be in the Player's backpack.

char = script.Parent.Parent.Character
wait(1)
            char.RightLowerArm.BrickColor = BrickColor.new("Black")
            char.RightHand.BrickColor = BrickColor.new("Black")

Please help correct me, I don't know what I did wrong, it seems right.

0
Use the "BodyColors" OMG_Gaming404 73 — 6y
0
use WaitForChild() to wait for the body parts to load, as it usually takes more than 1 second for characters to load mattscy 3725 — 6y

1 answer

Log in to vote
0
Answered by
Vulkarin 581 Moderation Voter
6 years ago

I think you should use body colors instead

local player = game.Players.LocalPlayer
player.CharacterAdded:Connect(function(char)
    local body = char["Body Colors"]
    body.RightArmColor = BrickColor.new("Black")
end)
0
I did before, it didn't work, it only works in studio. LordMeIon 2 — 6y
0
Nvm, I did it another way, colouring an R15 rig doesn't seem possible. LordMeIon 2 — 6y
Ad

Answer this question