Checking Group, if 1 object changed

So in my game I have TowerPlots where players can place towers. I have these Plots organized into 1 Group.
image

I basically want to know if there is a way to know if a Tower is added to one of the plots.

I’ve tried TowerPlots.Changed which doesn’t seem to work.

1 Like

You can use .DescendantAdded

1 Like

You can do this:

local plot = script.Parent

plot.ChildAdded:Connect(function(child)
--now do whatever you want here, grab the thing added by using child
end)