Camara tweening issue (Camara doesn't stay at his destination)

My current result is that my camara goes back to the player but how do i make it so that the camara stays at the tweened position i give him? Thank you for reading!

Current result:

The script i made for the tweening

local cam = workspace.CurrentCamera
local FocusPart = game.Workspace.FocusPart
local player = game.Players.LocalPlayer
local EndPart = game.Workspace.EndPart
local TweenService = game:GetService("TweenService")
-----

local tweeningInformation = TweenInfo.new(5,Enum.EasingStyle.Bounce,Enum.EasingDirection.Out,0,  true,0 )

local  PartPropeties = {CFrame = FocusPart.CFrame}

local TweenAnimation = TweenService:Create(cam,tweeningInformation,PartPropeties)
----

wait(5)
TweenAnimation:play()
1 Like

Make the camera type Scriptable by adding this line:

cam.CameraType = "Scriptable"
1 Like

I forgot to add that now that i see it, thank you very much you’re amazing!

1 Like