What's the "Enum.Material.Aluminum" material?

Today, when I was scripting, I found 1 strange Enum - Aluminum. But as I know, material “Aluminum” don’t exist. Can someone explain me - for what I can use it, if I can?


Also, this material don’t have any description.

1 Like

If you set a part to Aluminum with code, it instead gets set to Foil.

workspace.Part.Material = Enum.Material.Aluminum
print(workspace.Part.Material) --> Foil
1 Like

But there’s already exist “Enum.Material.Foil”… I think this Enum was used for something… But idk for what.

Foil is short for Aluminum Foil. Not sure why Roblox allows you to use both.