local ID = {
[1] = {x,y,width,height,"Test[1]"},
[2] = {x,y,width,height,"Test[2]"}
}
for _,v in ipairs ( ID ) do
Button = guiCreateButton(v[1],v[2],v[3],v[4],v[5],false)
end
[1] = {x,y,width,height,"Test[1]"}, -- Create GUI Button Arguments
for _,v in ipairs ( ID ) do -- ID = the Table
Button = guiCreateButton(v[1],v[2],v[3],v[4],v[5],false)-- get data from table . v[1] = argument[1] from the table #
end