How do I lock a camera in a certain spot for my title screen project? I want a certain view from this point that cannot be moved at all. Any scripts help! Thanks!
Hello, so basically you use CameraType
for that, then set your CFrame. Here is an example:
--local script local player = game.Players.LocalPlayer local currentcam = player.CurrentCamera currentcam.CameraType = "Scriptable" currentcam.CFrame = CFrame.new(Vector3.new(0,0,0)) -- Place your desired position in the 3 zeros section.
Hope it helps!