Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

i am trying to make a sniper when i zoom in its not stable how do i fix?

Asked by 6 years ago

zoom script model that i Made : https://www.roblox.com/catalog/02521288629/redirect

01script.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.Button2Down:Connect(function()
08 
09while zomm == true do
10    wait()
11    cam.CameraType = Enum.CameraType.Scriptable
12    cam.CFrame = script.Parent.zoomin.CFrame
13end
14end)
15     mouse.Button2Up:Connect(function()
View all 23 lines...

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

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:

01script.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.Button2Down: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.Button2Up: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)
20end)

tell me if it worked or not!

0
you could also lower the FOV of the camera, but that might not be the effect you want turtle2004 167 — 6y
0
it work but when i move it washables helleric -3 — 6y
0
washables? the8bitdude11 358 — 6y
Ad

Answer this question