Need help with Camera Issue

Hello

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.


Conclusion

If anyone knows how I can fix this or what setting I might touched, (Properties, not Studio Settings) please let me know.

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
1 Like

I will try this when I can! I might have deleted one of the scripts and didn’t realize it??

Search for any script using

game.Workspace.CurrentCamera
1 Like