UI.AddSliderFloat(" ", 0, 0);
UI.AddLabel("")
UI.AddLabel(">Pasta AA<")
UI.AddLabel(">version PASTA<")
UI.AddSliderFloat(" ", 0, 0);
UI.AddLabel("")
UI.AddCheckbox("Activate antiaim")
UI.AddDropdown("AntiAim Type", ["v1", "v2", "v3"]);
UI.AddSliderFloat(" ", 0, 0);
UI.AddLabel("")
UI.AddLabel(">PASTED BY PASTED BY<")
UI.AddSliderFloat(" ", 0, 0);
function check() {
if (UI.GetValue("Activate antiaim") == true) {
UI.SetEnabled("AntiAim Type", 1)
} else {
UI.SetEnabled("AntiAim Type", 0)
}
}
Cheat.RegisterCallback("Draw", "check");
multiplierOptionsone = [-2, -1, -3, 3];
multiplierOptionstwo = [-2, -1, -3, 3];
multiplierOptionsthree = [-2, -1, -3, 3];
function getRandomIntInclusiveone(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function getRandomIntInclusivetwo(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function getRandomIntInclusivethree(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function getRandomIntInclusivedop(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1.3)) + min;
}
function aa() {
// aa function
const typeaa = UI.GetValue("AntiAim Type")
if (UI.GetValue("Activate antiaim") == true) {
if (typeaa == 0) {
AntiAim.SetOverride(1);
AntiAim.SetFakeOffset(getRandomIntInclusiveone(20, 40));
AntiAim.SetRealOffset(getRandomIntInclusiveone(30, 50) * multiplierOptions[getRandomIntInclusiveone(0, multiplierOptionsone.length)]);
} else if (typeaa == 1) {
AntiAim.SetOverride(1);
AntiAim.SetFakeOffset(getRandomIntInclusivetwo(12, 18));
AntiAim.SetRealOffset(getRandomIntInclusivedop(19, 23) * multiplierOptions[getRandomIntInclusivetwo(0, multiplierOptionstwo.length)]);
} else if (typeaa == 2) {
AntiAim.SetOverride(1);
AntiAim.SetFakeOffset(getRandomIntInclusivethree(8, 14));
AntiAim.SetRealOffset(getRandomIntInclusivethree(14, 8) * multiplierOptions[getRandomIntInclusivethree(0, multiplierOptionsthree.length)]);
}
}
}
Cheat.RegisterCallback("CreateMove", "aa");