local CurrentCamera = workspace.CurrentCamera
repeat
task.wait()
CurrentCamera.CameraType = Enum.CameraType.Scriptable
until CurrentCamera.CameraType = Enum.CameraType.Scriptable
CurrentCamera.CFrame = workspace.wju.CFrame
CurrentCamera.CameraSubject = workspace.wju
print("Set!")
The CFrame needs to be set, in addition to the CameraSubject. I added a repeat loop, it isn’t necessary, but I thought I would just for extra confirmation. This should be a LocalScript, just to let you know!
Additionally, I added a print statement, just for debugging reasons. (Remove it after you test it, it should work!)