I have a function that is suppose to remove bricks when it touches the brick with the function. How can I make it so the function will also delete anchored bricks?
Here's the script:
function onTouched(hit) if hit.Name == 'BuildingBrick' then hit:Destroy() end end script.Parent.Touched:connect(onTouched)