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:
1 | local setCFrame = game.Workspace.SetPart.CFrame |
2 | -- You can also do a custom CFrame value, |
3 | -- local setCFrame = CFrame.new(0,0,0) |
4 |
5 | local camera = game.Workspace.CurrentCamera |
6 |
7 | camera.CFrame = setCFrame |
This code will place the camera at an exact location. Leave an upvote if I helped! :)