will i have to use trigno to do it or is there a simpler way this is the current code
wait()
local ts = game:GetService("TweenService")
local b = script.Parent
local cam = game.Workspace.CurrentCamera
local cc = game.Workspace.TestCam
local info = TweenInfo.new(5,Enum.EasingStyle.Linear,Enum.EasingDirection.In,-1,true,0)
local properties = {CFrame = CFrame.new(-4, 6, 38)}
local tween = ts:Create(cc,info,properties)
cam.CameraType = Enum.CameraType.Scriptable
wait()
b.Activated:Connect(function()
tween:Play()
cc:GetPropertyChangedSignal("CFrame"):Connect(function()
cam.CFrame = cc.CFrame
tween:Play()
end)
end)
