CameraMaxZoomDistance = [[3]]
What's wrong this this?
Why is the number in brackets? Shouldn't it just be
CameraMaxZoomDistance = 3
Like Nexx said, you should be using just
CameraMaxZoomDistance = 3
But you have to set it for every player individually. I don't know if you have code to do that or not, but here is an example of it:
--Script, ServerScriptService game.Players.PlayerAdded:connect(function(player) player.CameraMaxZoomDistance = 3 end)