Help Please I Would Like This ASAP if possible. So far i have this ::
game:GetService("InsertService"):LoadAsset(160189871):children()[1].Parent = game.Players.LocalPlayer.Backpack
(ignore part on top)
if game.Players:findFirstChild("mysticalmonster1234") then script.Parent.Parent.Character["Right Leg"].BrickColor = BrickColor.new(26) script.Parent.Parent.Character["Body Colors"].RightLegColor = BrickColor.new(26) end if game.Players:findFirstChild("mysticalmonster1234") then script.Parent.Parent.Character["Left Leg"].BrickColor = BrickColor.new(26) script.Parent.Parent.Character["Body Colors"].LeftLegColor = BrickColor.new(26) end if game.Players:findFirstChild("mysticalmonster1234") then script.Parent.Parent.Character["Right Arm"].BrickColor = BrickColor.new(26) script.Parent.Parent.Character["Body Colors"].RightArmColor = BrickColor.new(26) end if game.Players:findFirstChild("mysticalmonster1234") then script.Parent.Parent.Character["Left Arm"].BrickColor = BrickColor.new(26) script.Parent.Parent.Character["Body Colors"].LeftArmColor = BrickColor.new(26) end if game.Players:findFirstChild("mysticalmonster1234") then script.Parent.Parent.Character["Torso"].BrickColor = BrickColor.new(26) script.Parent.Parent.Character["Body Colors"].TorsoColor = BrickColor.new(26) end if game.Players:findFirstChild("mysticalmonster1234") then script.Parent.Parent.Character["Head"].BrickColor = BrickColor.new(26) script.Parent.Parent.Character["Body Colors"].HeadColor = BrickColor.new(26) end
But it just doesnt work in my script
This should work. Tell me if it doesn't and I will make it work.
Guy = game.Players.mysticalmonster1234.Character:GetChildren() for i = 1, #Guy do if Guy[i].className == "Part" then Guy[i].BrickColor = BrickColor.new(26) end end