I want to have it where I don’t have to hold down right click in order to move the camera, and I’m not talking about shift-lock. So basically normal Roblox camera just without holding down right click.
I’ve looked at many topics and haven’t seen any talking about this from what I’ve found. Please help me with this situation.
If you’re talking the Camera that’s relative to the mouse (Or behind), you can just change the CameraOffset of that to 0, 0, 0/0, 0, 1 (I think) if you want it within the center/behind the Character
Otherwise you’ll need to specify more information in relation to what you exactly want
remember I want the character to move like a normal roblox character not with shift lock enabled movement where you look and your player instant turns that way ill look more into it but normal movement vs shiftlock movement is totally different.
If anyone is seeing this and needing help, you can just lock the mouse position to the middle of the screen. Roblox really doesn’t like this, and it will refresh every frame. So just make it run every frame.
local RunService = game:GetService"RunService"
RunService:BindToRenderStep("MouseLock",Enum.RenderPriority.Last.Value+1,function()
if game.Players.LocalPlayer.Character.Humanoid.Health <= 0 then
else
UserInputService.MouseBehavior = Enum.MouseBehavior.LockCenter
end
end)