of     1   

Spxders
#185263653Sunday, March 13, 2016 5:40 PM GMT

Can someone help me find a way to limit a players zoom out so they don't see the whole map?
WoolHat
#185264012Sunday, March 13, 2016 5:45 PM GMT

Spxders
#185265146Sunday, March 13, 2016 6:00 PM GMT

I still cant find it in explorer
WoolHat
#185265480Sunday, March 13, 2016 6:05 PM GMT

It's a property of a Player. Means if you want global minimum zoom, you want to set it for every player once they join. game.Players.PlayerAdded:connect(function(Player) Player.CameraMaxZoomDistance = 5 end) Maybe. Use a server script
Spxders
#185268065Sunday, March 13, 2016 6:43 PM GMT

Hm not working, Im just finding out this Zoom.
Frigid_Frost
#185268796Sunday, March 13, 2016 6:53 PM GMT

Here put this into a new script: -- . Model link: http://www.roblox.com/Max-Zoom-Distance-script-item?id=160640387 -- v.1.1 June 7th 2015 game.Players.PlayerAdded:connect(function(player) wait(0.5) player.CameraMaxZoomDistance = 5 -- Change this to change zoom distance end) Credit: Made by Tonitoni
chimmihc
#185269027Sunday, March 13, 2016 6:56 PM GMT

Spxders
#185269551Sunday, March 13, 2016 7:04 PM GMT

Thanks Crimson
WoolHat
#185280206Sunday, March 13, 2016 9:25 PM GMT

Darn chimm, I knew I was forgetting an inherent property of something in game. That's definitely what OP should use if it suits his situation better.

    of     1