CreateClientConVar( "bhop_enabled", 0, true, false ) local function bHop() if ( tobool( GetConVarNumber( "bhop_enabled" ))) then if ( input.IsKeyDown( KEY_SPACE ) ) then if ( LocalPlayer():IsOnGround() ) then LocalPlayer():ConCommand( "+jump" ) else timer.Simple( .2, function() LocalPlayer():ConCommand( "-jump" ) end ) end else LocalPlayer():ConCommand( "-jump" ) end end end hook.Add( "Think", "SecondPrint", bHop )