OK, so really I'm not that good at scripting, but I know a few scripts. But this is one I want and need to know;
How do you make a script that, when you spawn, zooms a player in automatically?
At the moment I've added a 'Zoom in to play!' script, but some players don't know how to zoom in, also iPad players cannot zoom in. It'd really help me if you answered my question!!!
~Legodudezx
Players have a property called CameraMode
Set this to Enum.CameraMode.LockFirstPerson
and they won't be able to leave it.
The Camera's coordinates and orientation are defined by the CoordinateFrame
property of the camera. It works just like a CFrame, so if you want to zoom in, you just have to "bring forward" this CFrame using its LookVector, like this :
Cam = game.Workspace.CurrentCamera Cam.CoordinateFrame = Cam.CoordinateFrame + Cam.CoordinateFrame.lookVector
I scripted this: http://web.roblox.com/my/Item.aspx?id=152410765 Please give me credit.
Could you provide the script?
However, I won't be the one to answer this problem.