Nothing that I type in works and I put down this and It didn't work and don't say that you need to put down local and that stuff because that doesn't work either. game.Workspace.Bar1.Material = Enum.Material("Corroded Metal") game.Workspace.bar2.Material = Enum.Material("Corroded Metal") game.Workspace.bar3.Material = Enum.Material("Corroded Metal") game.Workspace.bar4.Material = Enum.Material("Corroded Metal")
Right. When you do Enumerators (Enums), There is no function in that Enumerators because it is a library of properties.
So instead of doing Enum.Material("Corroded Metal")
do this:
game.Workspace.Bar1.Material = Enum.Material.CorrodedMetal --It's also only one word.