Feugazi
(Feugazi)
#1
So in my game I have TowerPlots
where players can place towers. I have these Plots
organized into 1 Group
.

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
alexb_83
(alex)
#2
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)