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

Collection Service for GUIs?

Asked by 4 years ago

In my game, I'm creating a lot of textbuttons with a localscript. I essentially want to be able to sense if any of them are clicked, and know which one. Right now I'm accomplishing this by inserting a localscript into every button, but I don't want that many scripts, preferably just one.

I know that there's collectionservice, but I tried using it and it didn't work. Here's my code:

1--This is a localscript
2local collectionService = game:GetService("CollectionService")
3 
4for _, gui in pairs(collectionService:GetTagged("Button")) do
5    gui.MouseButton1Click:Connect(function()
6        event:FireServer(gui.Name)
7    end)
8end

I'm not sure if it's possible to do this using collectionservice, and if it isn't how would you do this?

Any help would be appreciated :)

0
Just a note, the error is that the code simply doesn't fire when a button is clicked. thecelestialcube 123 — 4y

Answer this question