Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I check for a mouse button click on every child of a scrolling frame?

Asked by
NewGPU 36
5 years ago
Edited 5 years ago

Hello, friends! I have the following script

01local frame = script.Parent
02 
03Instance.new("UIListLayout", frame) -- Automatically spaces the buttons for you
04 
05for _,v in pairs(game.ReplicatedStorage.mythings:GetChildren()) do
06    local button = Instance.new("TextButton", frame)
07    button.Text = v.Name
08    button.BackgroundColor3 = Color3.new(232, 67, 147)
09    button.BorderColor3 = Color3.new(170, 255, 255)
10    button.TextColor3 = Color3.new(255, 255, 255)
11    button.TextSize = 14
12    button.Size = UDim2.new(0, 146,0, 19)
13    button.Font = "GothamBlack"
14    button.TextScaled = true
15 
View all 25 lines...

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

1 answer

Log in to vote
1
Answered by 5 years ago

You can connect a MouseButton1Click event to every button in the same for loop that you use to create them. Like this:

01for _,v in pairs(game.ReplicatedStorage.mythings:GetChildren()) do
02    local button = Instance.new("TextButton", frame)
03    button.Text = v.Name
04    button.BackgroundColor3 = Color3.new(232, 67, 147)
05    button.BorderColor3 = Color3.new(170, 255, 255)
06    button.TextColor3 = Color3.new(255, 255, 255)
07    button.TextSize = 14
08    button.Size = UDim2.new(0, 146,0, 19)
09    button.Font = "GothamBlack"
10    button.TextScaled = true
11 
12    local buttonBG = Instance.new("TextButton", button)
13    buttonBG.BackgroundColor3 = Color3.new(109, 110, 108)
14    buttonBG.BorderColor3 = Color3.new(170, 255, 255)
15    buttonBG.size = UDim2.new(1, 0,0.05, 0)
View all 22 lines...
0
Ah, thank you :) NewGPU 36 — 5y
Ad

Answer this question