Your Z not zooming out when tapping problem is probably due to the fact that you subtract in your first bit there:
if camera.FieldOfView >= maxzoom then
return
else
camera.FieldOfView = camera.FieldOfView - zoomspeed
task.wait(0.002)
end
should probably be:
if camera.FieldOfView >= maxzoom then
return
else
camera.FieldOfView = camera.FieldOfView + zoomspeed
task.wait(0.002)
end
** You are now Level 2! **