some Player on Our Server play with a Controller. But if u Aim on someone with Controller, u have Autoaimlock on his head.
Anyone has a script for this or can explain how we can disable it for the players? We dont want to disable the Controller at all because of Flying or driving. Also we dont use “Citizen” we have an QB Framework Server.
Implement this native into your client-side. I’d imagine this only needs to be set once, but play around with it as the native has no description so there’s no way to know for sure.
Citizen.CreateThread(function()
while true do
Citizen.Wait(1000) – Only needs to run occasionally
SetPlayerTargetingMode(3) – 3 = Free Aim (no aim assist)
end
end)