OBJECTIVE
To pick a random ImageButton from your GUI.
UNDERSTANDING YOUR ERROR
"math.random
is expecting a number and not an object."
The math.random function accepts at most two arguments, and they both must be integers.
You must be aware that this is a table:
1 | local btn = this.Buttons:GetChildren() |
Because the :GetChildren() method fetches every child in your this.Buttons
and puts it in a table.
1 | b = math.random( 1 , btn [ i ] ) |
So what you're doing is you're indexing/accessing the table, so you get an object instead - which is the child of this.Buttons
, but what you probably intended to pass an integer.
1 | local this = script.Parent |
3 | local btn = this.Buttons:GetChildren() |
4 | local RandomInteger = math.random(#btn) |
7 | local RandomButton = btn [ RandomInteger ] |
You don't need a "for" loop, else you will iterate through ALL of the buttons when you only need 1.
Read up on arrays if you don't understand line 6.
Questions? Comments? Skepticism? Comment down below or PM me!