[Standalone] [Paid] Helicopter Camera

Is there a way to make it so pushing the left joystick on a controller forward and back not zoom?

Have you fixed this yet?

Howdy, love the script but do you know of anyway to disable a CodeM - BlackHUDV2 when entering the camera?

It hasn’t been fixed yet. It’s on the list, I’ll get it fixed in the next update. Until then, you can change the control in the client.lua file.

I tried to look through their documentation, and sadly I don’t see any events/exports that could be used to hide the HUD. You will likely need to contact the creator directly to know if it’s possible. If you do end up hearing back from them, you can use the following events from the helicam script like so:

AddEventHandler('helicam:enteredCamera', function(netId)
    -- add an event/export to hide the hud
end)

AddEventHandler('helicam:leftCamera', function(netId)
    -- add an event/export to show the hud
end)

there’s native called ‘DRAW_CORONA 0xFF44780E’ maybe this would work

description in fivem native docs says “Allows drawing advanced light effects, known as coronas, which support flares, volumetric lighting, and customizable glow properties.”

example
local pedCoords = GetEntityCoords(PlayerPedId())
Citizen.CreateThread(function()
while true do
DrawCorona(pedCoords.x, pedCoords.y, pedCoords.z, 5.0, 255, 255, 255, 255, 4.0, 0.2, pedCoords.x, pedCoords.y, pedCoords.z, 1.0, 0.0, 90.0, 2)
Wait(0)
end
end)

Hey yeah, I saw that, it was added pretty recently to fivem, I just haven’t gotten around to adding it in to the helicam script.