I was recently working on my game. I tested it, and later published it after making some other changes. All of sudden my camera is over the map and not with my character. I also cannot move me mouse at all.
I don’t know why this is happening or how to fix this. As I have tried to revert an update, but for some cannot figure that out or how that works anymore, like it used to.
As you can see I’m legit just looking over the water.
You could try setting a player’s camera using a local script in starter character scripts.
local cam = game.Workspace.CurrentCamera
cam.CameraSubject = game.Players.LocalPlayer.Character.Head
cam.CameraType = Enum.CameraType.Custom
or if that doesn’t work, try this:
while true do
wait()
local cam = game.Workspace.CurrentCamera
cam.CameraSubject = game.Players.LocalPlayer.Character.Head
cam.CameraType = Enum.CameraType.Custom
end