Hello, I was wondering if there is a way to set your camera to look at a scene, and the camera doesn’t move.
Sorry if my explanation is hard to comprehend (better explanation in replies), but I would like a way to view my scene, much like camera mode in blender or unreal engine, where you can locate a camera and return to that set view whenever you want.
Is there anyway to do this in Studio?
(Sorry if this is in the wrong category but I don’t know where to post.)
Are you talking about freecam? Pretty sure it only exists in the Roblox Client, not the Roblox Studio Client. To activate it, playtest any one of your games, and press Shift + P.
It is quite hard to explain in words, but I shall give it another go:
In blender/unreal engine, you can position a camera to look at what you are building. You can then move and construct your build freely, but when you want to see it from the camera’s POV, you can return to it’s POV.
This would make it much easier to construct builds for showcases or just pictures, as you can focus on what the build looks like from the set camera’s perspective, rather than an estimate.
in the camera object in workspace is your camera, locally I think, you can change the properties. You can also delete it to tp right to the center of the world.
local Cam = game.Workspace.CurrentCamera
Cam.CameraType = Enum.CameraType.Scriptable -- So you can change pos
Cam.CFrame = (part cframe or cframe value)
Just set the CameraType back to Custom to unview it. You can go more into depth with tweens, but this just setting a static position.