I want a camera position like in studio when doing something, please. I don't know how to start. Maybe move workspace cam? Not sure.
You can use a LocalScript located in StarterPlayerScripts that has the following code:
local setCFrame = game.Workspace.SetPart.CFrame -- You can also do a custom CFrame value, -- local setCFrame = CFrame.new(0,0,0) local camera = game.Workspace.CurrentCamera camera.CFrame= setCFrame
This code will place the camera at an exact location. Leave an upvote if I helped! :)