I suggest a change to prefix_toggle_aimbot along the lines of:
concommand.Add( BB.RandomPrefix.."_aimbot_toggle", function( ply, cmd, args )
BB.AimbotKeyDown = !BB.AimbotKeyDown;
if (BB.AimbotKeyDown == true) then
BB.Aimbot();
BB.PrintChat( Color( 255, 0, 0 ), "Aimbot Toggled On" );
else
BB.PrintChat( Color( 255, 0, 0 ), "Aimbot Toggled Off" );
end
end );
I have it bound to ALT so it was annoying trying to figure out if it was enabled or not. Nothing too critical, just a usability suggestion.