for i,color in ipairs(GUIEditor_Button) do
guiSetProperty(color,"NormalTextColour","ff00ff00")
end
Must be the names of all the buttons with the same name Example :
GUIEditor_Window = {}
GUIEditor_Button = {}
GUIEditor_Window[1] = guiCreateWindow(558,158,247,294,"●●●|| Spawn Panel ||●●●",false)
GUIEditor_Button[1] = guiCreateButton(14,95,89,39,"Police",false,GUIEditor_Window[1])
for i,color in ipairs(GUIEditor_Button) do
guiSetProperty(color,"NormalTextColour","ff00ff00")
end
Note: If the names of buttons different You must make the same name with the all buttons but change the number of the button and change it from the iparis .
,