gui

Get access to all of our gui controls

The gui object gives your script access UI. This allows scripts to check or modify controls like checkboxes, buttons, and textboxes, and more.

Examples:

Checkbox

var state = gui.triggerCheckBox.Checked;

Combobox

// getting selected text
var text = gui.rcsDisableComboBox.Text;
// set index, 0 will be the first option
gui.rcsDisableComboBox.SelectedIndex = 0;

Last updated

Was this helpful?