Hi, I was wondering how I can, if possible, make a function run if one of the descendents is clicked when I use GetChildren()? Is there another way besides making a function for each individual button?
1 | local buttons = script.Parent.Frame:GetChildren() |
2 |
3 | buttons.MouseButton 1 Click:Connect( function () |
4 | print ( "click" ) |
5 | end ) |
You need to connect a clicked event on the button's children using a for loop.
1 | local buttons = script.Parent.Frame:GetChildren() |
2 | --Connecting click events on the button's descendants. |
3 | for _,v in pairs (buttons) do |
4 | v.MouseButton 1 Click:Connect( function () |
5 | print ( "click" ) |
6 | end ) |
7 | end |