C++:
/*
credits:
discord: v1pix#6305
*/
--legit Anti-Aim
ui.add_label("Legit Anti-Aim on key")
local Legitaaonkey = ui.add_hotkey("Legit Anti-Aim on key")
local pitch = ui.get("Rage", "Anti-aim", "Real anti-aim", "Pitch")
local yaw = ui.get("Rage", "Anti-aim", "Real anti-aim", "Yaw")
local attargets = ui.get("Rage", "Anti-aim", "Real anti-aim", "At targets")
callbacks.register("paint", function()
if Legitaaonkey:get() == true then
pitch:set(0)
yaw:set(0)
attargets:set(false)
else
pitch:set(1)
yaw:set(180)
attargets:set(true)
end
end)