I been making my own menu and I have a slight problem. I have 2 scripts not working..I got these scripts from the Managed gsc list but they don't seem to work. The scripts are Nova Gas and Godmode.
doGod()
{
if(self.God==false)
{
self iPrintln("^6 Enabled!");
self enableInvulnerability();
self.God=true;
}
else
{
self iPrintln("^6 Disabled!");
self disableInvulnerability();
self.God=false;
}
}
NovaGas()
{
self endon("disconnect");
self endon("death");
cur=self getCurrentWeapon();
wait 0.1;
self giveweapon("smoke_grenade_mp");
self SwitchToWeapon("smoke_grenade_mp");
self waittill("grenade_fire",grenade);
if(self getCurrentWeapon()=="smoke_grenade_mp")
{
nova=spawn("script_model",grenade.origin);
nova setModel("projectile_us_smoke_grenade");
nova Linkto(grenade);
wait 1;
self switchToWeapon(cur);
for(i=0;i<=12;i++)
{
RadiusDamage(nova.origin,300,100,50,self);
wait 1;
}
nova delete();
}
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.