https://script.google.com/home/projects/1Np6F1VOgWiph580d3HJXPzlpqh2Ib8fmVULD9Vdys_hw29VYZ2HNAkOd/edit

function reset() {
  
  // テンプレート
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();

  // セルの色と回答をリセット
  sheet.getRange('B3:E8').setBackground('white').clearContent();

  // チェックボックスをリセット
  var checkboxCell = ['F2:F8','H8'];

  // チェックボックスをすべてfalseに設定
  checkboxCell.forEach(function(range) {
    sheet.getRange(range).setValue(false);
  });

}