document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. local Vermelho = 250
  2. local Verde = 250
  3. local Azul = 0
  4.  
  5. addEventHandler("onClientGUIClick",root,
  6.     function ()
  7.         if ( source == getControl(wndCreateVehicle,"vehicles") ) then
  8.             for row=0, guiGridListGetRowCount(getControl(wndCreateVehicle, "vehicles")) do
  9.                guiGridListSetItemColor(getControl(wndCreateVehicle, "vehicles"),row,1,Vermelho,Verde,Azul)
  10.             end
  11.         end
  12.     end
  13. )
');