How would I make camera similar to Phasmaphobia on Roblox

Phasmaphobia has a video/photo camera item and I want to somehow replicate that onto Roblox
(Example below)


I’ve tried using viewport frames, but I’ve come to realize that it barely uses any lighting at all.

I’ve looked basically everywhere and most answers are: viewport frames, scriptable camera (which I don’t want)

I can live without it, but it would be a nice touch to have.
I would like some ideas

1 Like

Pretty sure roblox isn’t capable of making a camera with an actually working display unless you use ViewportFrame’s

1 Like

You should use ViewportFrame combined with raycasting to simulate a camera feed. However, keep in mind that ViewportFrame has several limitations:

  • No support for real physics, particles, or post-processing effects.
  • Limited lighting capabilities—it does not accurately render shadows, AO, or GI.
  • Lower texture and rendering resolution compared to the main viewport, which can make detailed scenes look worse.

In some cases, these limitations may not be a problem and can even positively affect the atmosphere of the experience by creating a more stylized, eerie, or retro aesthetic. The reduced lighting and lower resolution can help achieve a grainy, VHS-like, or night-vision effect, which might enhance immersion in horror or paranormal-themed games.

However, if you require higher image quality and better lighting, I recommend using layered ViewportFrames to enhance depth and sharpness, while adjusting lighting settings within the constraints of what ViewportFrame supports.

1 Like

Ok, I’ll try doing layered viewport frames. Thank you!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.