You can achieve this effect using a combination of an input event and a distance check.
Note that this code will only work in a LocalScript, so place it somewhere a LocalScript can run.
01 | local uis = game:GetService( "UserInputService" ) |
02 | local player = game.Players.LocalPlayer |
04 | uis.InputChanged:connect( function (InputObject) |
05 | if InputObject.UserInputType = = Enum.UserInputType.MouseWheel then |
09 | if (player.Character.Head.CFrame.p - workspace.CurrentCamera.CFrame.p).magnitude < . 6 then |
10 | print ( "First person achieved!" ) |
The above code isn't perfect (it will print when you zoom out as well as in, and will continue to print if you 'zoom in' while already in first person), but should be a good starting point.
Given that I know you're new to ROBLOX scripting, take a look at wiki.roblox.com, and the Object Browser in Studio, to see the API you have available.