local HK, HK2, One, Two = "N", "M", GetTickCount(), 2500 function OnTick() for i=1, heroManager.iCount do Target = heroManager:GetHero(i) if Target.team ~= myHero.team then if RunOnce ~= true then SendChat("/mute "..tostring(Target)) RunOnce = true end if Run ~= true and IsKeyDown(string.byte(HK)) then SendChat("/mute "..tostring(Target)) Run = true end elseif Target.team == myHero.team then if Run ~= true and IsKeyDown(string.byte(HK2)) then SendChat("/mute "..tostring(Target)) Run = true end end end if GetTickCount() - One > Two then Run = false One = GetTickCount() end end