function blablabla(row1, row2)
lbl1 = guiCreateLabel(0,0,100,10, row1.." "..row2, false)
lbl2 = guiCreateLabel(0,0,100,10, row1.." "..row2, false)
lbl3 = guiCreateLabel(0,0,100,10, row1.." "..row2, false)
labels = {
lbl1,
lbl2,
lbl3,
}
end
to hide all lables you can use
for k,v in ipairs(labels) do
guiSetVisible(v,false)
end
or if you want hide 1 label use
guiSetVisible(labels[1],false)