Making the Camera Wide

Hello Developers! I wanted to manipulate my camera to make it look like the “putin walk meme”, What is the best way to achieve that?

I tried manipulating the FOV and several other settings but that doesn’t help me much…

I’m afraid that it’s not possible currently.

1 Like

Are you sure? This game manages to manipulate it., it also says in the description;

recent change: camera height went from 0.4 to 0.3 for wider distortion (roblox’s default 1)

This can be done by creating a weird CFrame (the magnitude of the UpVector represents the vertical scale of the view)
The Camera should be set to Scriptable:
workspace.CurrentCamera.CFrame = CFrame.fromMatrix(Vector3.new(0,50),Vector3.new(1),Vector3.new(0,.5),Vector3.new(0,0,1))
This would make the camera wider.

2 Likes

This actually IS possible, read my reply above :smiley:

Thank you so much!! Have a great day :smile: