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

Lock player's camera distance and unlock when click?

Asked by 4 years ago

I made this script that locks the player's cam distance to 10 which is only to avoid zooming in and out by accident. How can I make it so when the player clicks again, it lets him/her use the scrolling to zoom in and out?

local player = game.Players.LocalPlayer

script.Parent.MouseButton1Click:Connect(function(click)
    player.CameraMaxZoomDistance = 10
end)

1 answer

Log in to vote
1
Answered by 4 years ago

You could set a variable defining if it was enabled or not, and change that based on the player click. Example:

local player = game.Players.LocalPlayer
local locked = false

script.Parent.MouseButton1Click:Connect(function(click)
    if locked == false then
        player.CameraMaxZoomDistance = 10
        locked = true
    elseif locked == true then
        player.CameraMaxZoomDistance = 128 -- This is game default, set this to whatever you want
        locked = false
    end
end)
Ad

Answer this question