So basically I'm trying to change the npc's head color. Though for some reason the game isn't recognizing the properties in the players Body Color. Could I get a better understand of how to get that. And btw I'm using Remote events in this so the act like the variables are in the actual server script but in the local.
Scirpt
local guy = game.Workspace.NameHere local Black = script.Parent.Parent["Skin Colour"].Black local BlackC = Vector3.new(90,45,0) game.ReplicatedStorage.Black.OnServerEvent:Connect(function(Player,Black,guy,BlackC) print(BlackC.Value) guy["Body Colors"].HeadColor3 = Color3.new(BlackC) end)
Thanks.