(adsbygoogle = window.adsbygoogle || []).push({});
Firstly i would like to say that alot of people will know these but these are specifically for the newer coders.
Other than that i would also like to say that here you have a few Disable and Enable functions that i think would work well if you were making a game mode.
Disable/Enable Jumping.
**Disable Jumping:**
allowJump(false);
**Enable Jumping:**
allowJump(true);
Disable/Enable Sprinting.
**Disable Sprinting:**
allowSprint(false);
**Enable Sprinting:**
allowSprint(true);
Disable/Enable Controls.
**Disable Controls:**
freezecontrols(true);
**Enable Controls:**
freezecontrols(false);
Disable/Enable Weapons.
**Disable Weapons:**
DisableWeapons();
**Enable Weapons:**
self EnableWeapons();
Disable/Enable Aiming.
**Disable Aiming:**
allowADS(false);
**Enable Aiming:**
allowADS(true);
Disable/Enable Crouching.
**Disable Crouching:**
allowCrouch(false);
**Enable Crouching:**
allowCrouch(true);
Disable/Enable Standing
**Disable Standing:**
allowStand(false);
**Enable Standing:**
allowStand(true);
Flame if you like it won't bother me one bit. Thank the thread and it will encourage me to keep producing things

.