Hello everyone.
I have a doubt, because I am not able to change the color of the hands of the characters to a specific color (simulating latex gloves). I don’t use the Character[“Body Colors”] method because I only need to change the color of the hands.
This is a function that I made for testing.
local OC = nil – OriginalColor (external variable)
local function PonerGuantes(player,flag)
local character = player.Character
if flag then
character.LeftHand.BrickColor = BrickColor.new(“Lapis”)
character.RightHand.BrickColor = BrickColor.new(“Lapis”)
else
character.LeftHand.BrickColor = BrickColor.new(tostring(OC))
character.RightHand.BrickColor = BrickColor.new(tostring(OC))
end
end