local check = menu.Switch("Settings", "Low Delta", false, "Low Delta")
local check2 = menu.Switch("Settings", "Randomize Low Delta", false, "Randomize Low Delta")
local function hui()
local prem = check:GetBool()
local prem2 = check2:GetBool()
if prem == true then
antiaim.OverrideLimit(22)
end
if prem2 == true then
check:SetBool(false)
antiaim.OverrideLimit(math.random(15,28))
end
end
cheat.RegisterCallback("prediction", hui)