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

How would I efficiently add infinite button GUI's with their own events?

Asked by
Nootian 184
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:

01MakeRandom = Random.new()
02 
03Folder = workspace.Buttons
04CloneButton = workspace.CloneButton
05 
06for ButtonNumber = 1,MakeRandom:NextInteger(0,100) do
07    ClonedButton = CloneButton:Clone()
08    ClonedButton.Parent = Folder
09    ClonedButton.Name = "Button_"..ButtonNumber
10end
11function Print(ObjectValue)
12    print("yay!")
13    print("we did it!")
14    print(ObjectValue.Name)
15end
16 
17 
18--Each button has: "Button_5" or "Button_6" for ease, or you can use in pairs

The buttons go into the function: Print()

0
What do the buttons need to do? IvanJupiter 36 — 4y
0
ill edit it Nootian 184 — 4y
0
is there's any specific task the button needs to do or they're all the same? Is_Hunter 152 — 4y
0
they actually should give the object value of themself to a function Nootian 184 — 4y

1 answer

Log in to vote
1
Answered by 4 years ago

Aslong as you reapeat the pattern and change the number you can make that button do anything an infinite amount of time.

CODE:

01local BUTTONNUMBER = 1
02 
03local BUTTON =  script.Parent.TextButton.Name
04 
05 
06BUTTON = BUTTONNUMBER
07 
08 
09 
10function OnClicked()
11 
12BUTTONNUMBER = BUTTONNUMBER + 1
13print(BUTTONNUMBER)
14 
15 
View all 54 lines...
0
Thank You! Nootian 184 — 4y
Ad

Answer this question