local text=guiGetText(editBox) -- переменную text попробуйте вставить там вместо текста.  
		
			 
		 
		
			 
		 
	
 addEventHandler( 'onClientGUIChanged', root, function()
      if source == hs_gui['name'] or source == hs_gui['status'] or source == hs_gui['cost'] or source == hs_gui['owner'] or source == hs_gui['idname'] then --label name
      local currText = guiGetText( source ); -- переменную text попробуйте вставить там вместо текста. 
      local newText = string.gsub( currText, '', '' ); 
      if newText ~= currText then
        guiSetText( source, newText );
      end;
    end;
end );
	Что то не хочет отображать. Правильный ли ?