well im beginner, i just learned LUA a bit i used this code
game.Workspace.Model.Part = Enum.Material.Grass
then this freaking error made me crazy Part is not a valid member of Model
The issue is that you are trying to set Model.Part
as if it were a property. You need to access the Material
property of the part.
game.Workspace.Model.Part.Material = Enum.Material.Grass