1 | local part = script.Parent |
2 | part.Touched:connect( function (hit) |
3 | if hit.Parent then |
4 | if hit.BrickColor = = "Dark orange" and hit.Material = = "Wood" then |
5 | hit.Parent.BrickColor = BrickColor.Black() |
6 | end |
7 | end |
8 | end ) |
It's supposed to, when a part is made of dark orange wood, "burn" it. There are no errors in the output.
Thank you in advance for any help you may provide.
You forgot to check if a humanoid has checked it, you use ontouch function and get the parent of what hit it returning the humanoid.
1 | function onTouch(part) |
2 | local humanoid = part.Parent:FindFirstChild( "Humanoid" ) -- used to find humanoid in player ontouch |
3 | local block = script.Parent |
4 | if (humanoid ~ = nil ) and block.Material = = Enum.Material.Wood and block.BrickColor = = BrickColor.new( 'Bright orange' ) then -- Enum to check material requirement, BrickColor.new for part color requirement |
5 | block.BrickColor = BrickColor.new( 'Black' ) |
6 | end |
7 | end |
8 | script.Parent.Touched:connect(onTouch) |