How do I check for a mouse button click on every child of a scrolling frame?
Asked by
5 years ago Edited 5 years ago
Hello, friends!
I have the following script
01 | local frame = script.Parent |
03 | Instance.new( "UIListLayout" , frame) |
05 | for _,v in pairs (game.ReplicatedStorage.mythings:GetChildren()) do |
06 | local button = Instance.new( "TextButton" , frame) |
08 | button.BackgroundColor 3 = Color 3. new( 232 , 67 , 147 ) |
09 | button.BorderColor 3 = Color 3. new( 170 , 255 , 255 ) |
10 | button.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
12 | button.Size = UDim 2. new( 0 , 146 , 0 , 19 ) |
13 | button.Font = "GothamBlack" |
14 | button.TextScaled = true |
16 | local buttonBG = Instance.new( "TextButton" , button) |
17 | buttonBG.BackgroundColor 3 = Color 3. new( 109 , 110 , 108 ) |
18 | buttonBG.BorderColor 3 = Color 3. new( 170 , 255 , 255 ) |
19 | buttonBG.size = UDim 2. new( 1 , 0 , 0.05 , 0 ) |
20 | buttonBG.Position = Vector 2. new( 0 , 0 , 1.02 , 0 ) |
25 | frame.CanvasSize = UDim 2. new( 1 , 0 , 0 ,#game.ReplicatedStorage.mythings:GetChildren()* 25 ) |
And what it does is get all the children of a folder in ReplicatedStorage and makes buttons in a scrolling frame for them
so what I'd like to do is change a value in the player's backpack to the name of the button they pressed but I wouldn't want to have to put scripts in every single one of the buttons
is there any way I could check for button presses in all of them with one script?
If so, please try and give me details on how to do so.
fyi: this is not a request