Im trying to make a script that enables a characters plastic material to become other materials, I've tried everything I can think of script wise to get it to work, without making it a whole different script on its own, which would through the whole process out of sync. So, I need to know, why wont
player.Character:findFirstChild("Torso").Material = Material.new("Wood")
player.Character:findFirstChild("Head").Material = Material.new("Wood")
player.Character:findFirstChild("Left Arm").Material = Material.new("Wood")
player.Character:findFirstChild("Right Arm").Material = Material.new("Wood")
player.Character:findFirstChild("Left Leg").Material = Material.new("Wood")
player.Character:findFirstChild("Right Leg").Material = Material.new("Wood")
Work, and what will work? Ill give credit where credit is due obviously. |