This is a simple cinematic script I made which drops 2 black bars and hides all hud components when activated.
It currently features a small config in the client.lua.
I plan on possibly adding some timecycle modifiers to make the game look slightly better however you would be better downloading a graphics pack like Terrov.
And installation is like any other resource, drag and drop into your resources folder and add start CinematicCam to your server.cfg.
Here is a video for the people to lazy to try this resource out.
Here is the download, you most likely needs this link!
Thanks to @glitchdetector for his function to disable health and armour
All other info you need should be found within the client.lua however if you have any questions feel free to ask in the comments.
tried this method to remove the command and the scrip loads but doesnt function any other suggestions to make it a button press and not a command? – Script below
Citizen.CreateThread(function() – [[Requests the minimap scaleform and actually calls the rect function allong with the hud components function.]]
minimap = RequestScaleformMovie("minimap")
if not HasScaleformMovieLoaded(minimap) then
RequestScaleformMovie(minimap)
while not HasScaleformMovieLoaded(minimap) do
Wait(1)
end
end
if IsControlJustPressed(0, 344) then
CinematicCamBool = not CinematicCamBool
CinematicCamDisplay(CinematicCamBool)
end
while true do
Citizen.Wait(1)
if w > 0 then
DrawRects()
end
if CinematicCamBool then
DESTROYHudComponents()
end
end