Create, Compete & Win at Redbrick Connect 2024! 🎉
SnippetCreate a Game Start button

Create a Game Start button

Select the start button you want

Click the + button in the upper left -> GUI -> Select the start button you want


Select Start Button

Code

otherScript
const startbtn = GUI.getObject("ballstopcle_button_play_on(e77)");
 
function Start() {
  startbtn.onClick(() => {
    startbtn.hide();
  });
}

If the script above is part of a start button script, it could be written as follows:

ballstopcle_button_play_on(e77)
function Start() {
  this.onClick(() => {
    this.hide();
  });
}