Im TinkyWinkyDev, a Indie Developer. Im current making a almost-fully interactible menu. But i need to my CurrentCamera follow my mouse… But i dont know how do i do this, i tried searching tutorials but i dindt finded any.
Regarding your question, You can make your Camera face your mouse using CFrames.
Heres what I mean.
local RunService = game:GetService("RunService");
local Mouse = game.Players.LocalPlayer:GetMouse();
local Camera = workspace.CurrentCamera;
RunService.Heartbeat:Connect(function()
Camera.CFrame = CFrame.new(Camera.CFrame.Position, Mouse.Hit.p);
end)