-- in a LocalScript local camera = game.Workspace.CurrentCamera camera.CameraSubject = game.Workspace["Korblox & Overseer & Redcliff Models"].Sparks script.Parent["Intro Gui"]["Main Frame"]["Play Game Button"].MouseButton1Click:connect(function(playerCamera) game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid game.Workspace.CurrentCamera.CameraType = "Custom" end)
Is there a way to lock the camera so that the player cannot move it around with the right mouse button?
Do
-- in a LocalScript local camera = game.Workspace.CurrentCamera camera.CameraSubject = game.Workspace["Korblox & Overseer & Redcliff Models"].Sparks script.Parent["Intro Gui"]["Main Frame"]["Play Game Button"].MouseButton1Click:connect(function(playerCamera) game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid game.Workspace.CurrentCamera.CameraType = "Scriptable" end)
instead of
-- in a LocalScript local camera = game.Workspace.CurrentCamera camera.CameraSubject = game.Workspace["Korblox & Overseer & Redcliff Models"].Sparks script.Parent["Intro Gui"]["Main Frame"]["Play Game Button"].MouseButton1Click:connect(function(playerCamera) game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid game.Workspace.CurrentCamera.CameraType = "Custom" end)