I don't like the ROBLOX normal camera offset, makes the character looks small. How to do this, without glitching the camera?
First, create a LocalScript at StarterPack then use this code:
1 | local cam = game.Workspace.CurrentCamera |
2 |
3 | cam.CameraSubject = game.Workspace.Humanoid |
4 | cam.CameraType = "CameraType" |
All Camera Types, you can find at Roblox Wiki, there has a lot of types and videos that you can see how it work.