You can make a function then if the gui visible then use :
guiGridListSetItemText
For Ex :
-- # Client Side
function SetGridMoneyText ( )
for i = 1,3 do
guiGridListAddRow(GUIEditor.gridlist[1])
end
guiGridListSetItemText(GUIEditor.gridlist[1], 0, 1, "- Money : "..getPlayerMoney(localPlayer).." $", false, false)
guiGridListSetItemText(GUIEditor.gridlist[1], 1, 1, "-", false, false) -- Add any thing you want name ping..etc
guiGridListSetItemText(GUIEditor.gridlist[1], 2, 1, "-", false, false) -- too
end
bindKey("F1","down",
function ( )
if guiGetVisible ( GUIEditor.gridlist[1] ) then
guiSetVisible ( GUIEditor.gridlist[1] , false )
showCursor ( false )
else
guiSetVisible ( GUIEditor.gridlist[1] , true )
SetGridMoneyText( )
showCursor ( true )
end
end
)