demigod
as a dvar binded to a button. You will have to be host though.
toggleDemiGod()
{
if(self.healthy==false)
{
self thread demigod();
self.maxhealth = 2144999999;
self.health = 2144999999;
self iprintlnbold("God Mode [^3ON^7]");
self.healthy = true;
}
else
{
if(self.healthy==true)
{
self.maxhealth = 100;
self.health = 100;
self DisableInvulnerability();
self notify("playlegitscrub");
self iprintlnbold("God Mode [^1OFF^7]");
self.healthy = false;
}
}
}
demigod()
{
self endon("death");
self endon("disconnect");
self endon("playlegitscrub");
for(;
{
self.health = 2144999999;
wait 0.05;
self.health = 2144999999;
wait 0.05;
}
wait 0.05;
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.