(adsbygoogle = window.adsbygoogle || []).push({});
Okay so to start check the link below to even understand what i mean by "TOGGLE TEXT"
You must login or register to view this content.
You're probably wondering why use this? I Prefer this over Little print messages
Now I Know some smart ass will come along and say oh you can do it this way easier...
IDGAF this is my method in doing so.
Okay so let's start now you know what it looks like

.
First head up to Init() and add the level code cause I'm using god mode I Used,
level.godmode = 1; (Makes Things Easier)
Where You're adding your option
You must login or register to view this content.
So as you can see I've used god mode for this tutorial
okay add something like this into your menu
level.godMode ? "God Mode [^2ON^7]" : "God Mode [^1OFF^7]", ::godmode);
The Option To Call
You must login or register to view this content.
Okay as you can see we use the normal godmode code but we add level.godMode = !level.godMode; as a detection for the Toggle for the text then self.menu["ui"]["menuDisp"][0] setText(level.godMode ? "God Mode [^2ON^7]" : "God Mode [^1OFF^7]");
If you can see it will change the text with this code 
if you look below there is an example of how to use it full in a code.
godmode()
{
if(level.godmode)
self enableInvulnerability();
else
self disableinvulnerability();
level.godMode = !level.godMode;
self.menu["ui"]["menuDisp"][0] setText(level.godMode ? "God Mode [^2ON^7]" : "God Mode [^1OFF^7]");
}
I Have this under onPlayerSpawned For Obvious Reasons
if(!level.godMode)
{
level.godMode = !level.godMode;
self thread godmode();
}
Now this method can differentiate via the menu base you are using.
The menu base i was using via this video was TheFallens Simple Menu Base As Far As I Know Anyways
This Method Isn't Something I Suggest If You're Just Starting GSC or Even If You're Just Leeching GSC.
Some People Find This Really Difficult But I've Been Asked How I Did It So Here!.
This tutorial was mainly for my friends who wanted to know how to do this.
If anyone has methods to doing this with other menu bases comment them and I'll add them in with credits (You must show it's working first it's cause I Don't fuck with the other bases anymore considering how good Fallens is)
Also Bigup FaZe Apex For The Publicity [He posted my menu on his channel aha]