フォームの編集画面で作成する場合
Googleフォームで「ラジオボタン」を選択して
自身の環境に合わせてフィールドを入力して
回答者へのリンクをコピーして開くと

以下の Code.gs で formName, description, title, item.createChoice() の値を書き換えて
createMultipleChoice() を実行するとフォームが作成されます
Code.gs
ログに出力されるForm Edit URLにアクセスするとフォームの編集画面が開きます
Form Published URLにアクセスするとフォームの入力画面が開きますCode.gs
function createMultipleChoice() {
const formName = 'Favorite Color Survey';
const description = 'Please tell us your favorite color.';
const title = 'What is your favorite color?';
const form = FormApp.create(formName);
form.setDescription(description);
const item = form.addMultipleChoiceItem();
item.setTitle(title)
.setChoices([
item.createChoice('Red'),
item.createChoice('Blue'),
item.createChoice('Green'),
item.createChoice('Yellow'),
item.createChoice('Other')
]);
Logger.log('Form Edit URL: ' + form.getEditUrl());
Logger.log('Form Published URL: ' + form.getPublishedUrl());
}
ログに出力されるForm Edit URLにアクセスするとフォームの編集画面が開きます
Reference
addMultipleChoiceItem()
https://developers.google.com/apps-script/reference/forms/form#addmultiplechoiceitem
Class MultipleChoiceItem
https://developers.google.com/apps-script/reference/forms/multiple-choice-item
getEditUrl()
Class MultipleChoiceItem
https://developers.google.com/apps-script/reference/forms/multiple-choice-item
getEditUrl()
getPublishedUrl()