Local animation/taunt script

I need a script that will make me stay crouched the entire time

Code:
// sticky crouch for 1.40

function StickyCrouch::BindInit() after GameBinds::Init {
  
	$GameBinds::CurrentMapHandle = GameBinds::GetActionMap2( "playMap.sae");
	$GameBinds::CurrentMap = "playMap.sae";
	GameBinds::addBindAction( "StickyCrouch", MAKE, IDACTION_TOGGLE_CROUCH, 0 );
	
}
 
Back
Top