function FlickShot()
if elements.checkboxes.flik and isKeyDown(VK_LBUTTON) then
local handle = GetNearestPed()
if handle ~= -1 then
local myPos = {getActiveCameraCoordinates()}
local enPos = {getCharCoordinates(handle)}
local vector = {myPos[1] - enPos[1], myPos[2] - enPos[2], myPos[3] - enPos[3]}
if isWidescreenOnInOptions() then coefficentZ = 0.0778 else coefficentZ = 0.103 end
local angle = {(math.atan2(vector[2], vector[1]) + 0.04253), (math.atan2((math.sqrt((math.pow(vector[1], 2) + math.pow(vector[2], 2)))), vector[3]) - math.pi / 2 - coefficentZ)}
local view = {fix(representIntAsFloat(readMemory(0xB6F258, 4, false))), fix(representIntAsFloat(readMemory(0xB6F248, 4, false)))}
local difference = {angle[1] - view[1], angle[2] - view[2]}
local smooth = dif / (elements.checkboxes.aim.v * multiplier)
setCameraPositionUnfixed((view[2] + smooth[2]), (view[1] + smooth[1]))
end
end
return false
end