I am starting to make games in Roblox and want to change the material USING A SCRIPT. It is not in the tutorials. How do I do it?
Try using Enum.Material
1 | local block = Instance.new( "Part" , workspace) |
2 | block.Material = Enum.Material.Grass |