zoom script model that i Made : https://www.roblox.com/catalog/02521288629/redirect
01 | script.Parent.Equipped:Connect( function () |
02 | local plr = game.Players.LocalPlayer |
03 | local mouse = plr:GetMouse() |
04 | local char = game.Players.LocalPlayer.Character |
05 | local zomm = true |
06 | local cam = game.Workspace.CurrentCamera |
07 | mouse.Button 2 Down:Connect( function () |
08 |
09 | while zomm = = true do |
10 | wait() |
11 | cam.CameraType = Enum.CameraType.Scriptable |
12 | cam.CFrame = script.Parent.zoomin.CFrame |
13 | end |
14 | end ) |
15 | mouse.Button 2 Up:Connect( function () |
your setting the camera's CFrame (coordinate frame) and using a loop using wait() as a yield
A simpler way to do it is setting the camera subject to zoomin, and lock the player's camera to FirstPerson mode
Script would look like this:
01 | script.Parent.Equipped:Connect( function () |
02 | local plr = game.Players.LocalPlayer |
03 | local mouse = plr:GetMouse() |
04 | local char = game.Players.LocalPlayer.Character |
05 | local zomm = true |
06 | local cam = game.Workspace.CurrentCamera |
07 | mouse.Button 2 Down:Connect( function () |
08 | if zoom then |
09 | cam.CameraSubject = script.Parent.zoomin -- sets camera subject to the scope |
10 | plr.CameraMode = Enum.CameraMode.LockFirstPerson -- sets player’s camera to first person |
11 | end |
12 | end ) |
13 | mouse.Button 2 Up:Connect( function () |
14 | zomm = false |
15 | cam.CameraSubject = char:FindFirstChildOfClass(“Humanoid”) -- or change to your humanoid’s name |
16 | plr.CameraMode = Enum.CameraMode.Classic -- makes player able to go into third person |
17 | wait( 2 ) |
18 | zomm = true |
19 | end ) |
20 | end ) |
tell me if it worked or not!