when i go in first person in studio, my mouse is unlocked and i can't move the camera even when im holding the right mouse button. i have been having this issue for weeks.
This seems to be a common issue try this in StarterPlayerScripts as a local script I found this in the Devforum
local plr = game.Players.LocalPlayer local plrGui = game.Players.LocalPlayer:WaitForChild("PlayerGui") local ScreenGui = Instance.new("ScreenGui", plrGui) local TextButton = Instance.new("TextButton") local UIS = game:GetService("UserInputService") TextButton.BackgroundTransparency = 1 TextButton.Size = UDim2.new(0, 0, 0, 0) TextButton.Text = " " TextButton.Parent = ScreenGui UIS.InputBegan:Connect(function(Input, IsTyping) if IsTyping then return end if Input.KeyCode == Enum.KeyCode.V then TextButton.Modal = true task.wait() else TextButton.Modal = false task.wait() end end)
Hope this helps!!