Heres the script, it's responding to print the part's name but couldn't find the part's material.
1 | for i,v in pairs (game.Workspace:GetChildren()) do |
2 | if v.Name = = "P1" and v:IsA( "WedgePart" ) then |
3 | print (v.Name) |
4 | if v.Material = = "Grass" then -- Not working here |
5 | v.BrickColor = BrickColor.new( "Medium green" ) |
6 | end |
7 |
8 | end |
9 | end |
use this:
if v.Material == Enum.Material.Grass then