Hello community, I have an issue in one component of my code where the camera changed event doesn't fire somehow even though the properties of it(CFrame) has changed. Let me paste that part of code to depict what i wrote in my script
local camera = game.Workspace.CurrentCamera camera:GetPropertyChangedSignal("CFrame").Change:connect(function(cframe)-- fires when the player's camer move print ("Test") end)
However when I test the game the camera changed function doesn't fire for some reason(the output won't print test) whenever I move my player's camera around. Is there any way to circumvent/solve this?
Any help is greatly appreciated