i was reading and testing the wiki when i got to using Material property with scripts i did what it said and it does not change the material of my object this is what i have
workspace.boron.BrickColor=BrickColor.new("Bright blue") workspace.boron.Material=6
the value "6" in the wiki is foil when i tried it and clicked the play button my object stayed plastic how do i make it work?Thanks.
for properties that are "dropdown lists" you use Enum
workspace.boron.BrickColor = BrickColor.new("Bright blue") workspace.boron.Material = Enum.Material.Foil
Do this:
game.Workspace.boron.Material = "Foil"