How would I efficiently add infinite button GUI's with their own events?
Asked by
4 years ago Edited 4 years ago
By infinite buttons, I mean it can be any max amount, right now I put individual scripts into each button GUI, and they all connect into an event. How would I do it without scripts, because I am trying to make a plugin, which can only handle one.
Here is the base code:
01 | MakeRandom = Random.new() |
03 | Folder = workspace.Buttons |
04 | CloneButton = workspace.CloneButton |
06 | for ButtonNumber = 1 ,MakeRandom:NextInteger( 0 , 100 ) do |
07 | ClonedButton = CloneButton:Clone() |
08 | ClonedButton.Parent = Folder |
09 | ClonedButton.Name = "Button_" ..ButtonNumber |
11 | function Print(ObjectValue) |
14 | print (ObjectValue.Name) |
The buttons go into the function: Print()