How can I use MouseButton1Click on children?
I want to make something happen when one of several buttons is clicked. All the buttons are text buttons, parented to a frame. The following code gives me an error like this: attempt to index field "MouseButton1Click" (a nil value)
Any help on how to make this work would be appreciated.
1 | local buttons = script.Parent.Frame:GetChildren() |
3 | buttons.MouseButton 1 Click:connect( function () |
- I checked the wiki-- MouseButton1Click is a valid event of the TextButton object, so I don't think that's the problem :V