``` AntiCurve = function() if utility["Miscellaneous"]["Anti Curve"] and utility["Silent Aim"]["Active"] then local character = LocalPlayer.Character if character and character.PrimaryPart then local characterCf = character.PrimaryPart.CFrame local target, _ = GetClosestPlayer() if target then local targetPos = target.Position local charPos = character.PrimaryPart.Position character:SetPrimaryPartCFrame(CFrame.lookAt(charPos, Vector3.new(targetPos.X, charPos.Y, targetPos.Z))) wait() character:SetPrimaryPartCFrame(characterCf) end end end end ```