Volumetric Lighting Plugin [NO LONGER UPDATING]

@katclap Thank you for getting back to me so soon! Will Volumetric Lighting lag my games (kind of like using a lot of meshes)?

2 Likes

Right now it is pretty consuming, but that’s something that I’m working to fix before I fully release the plugin.

2 Likes


i dont notice anything different am i doing something wrong or is it the plugin. I just got it rn

1 Like

it works better in dark environnements like night

1 Like

I found this snippet of code in the plugin using a web extension, can you please explain what it actually is, because I’m not sure if I would want to install this piece of obscure code anywhere near my games.

(it seems like you are getting RunService and then changing the quality level, which to my knowledge, has a security context higher than client code)

4 Likes

Hi! The reason it looks that strange is because the string was encoded to hexadecimal to make the code less readable, if you convert it you’ll simply get “RunService”.
It does not change the graphics quality, it simply checks if the graphics quality is equal to or higher than the set minimum required graphics option.
It also sets the position of the filter to the camera so I put it in RunService although I’ll be updating it to check any time it changes.

Your game may not have the filter in place is because scripts can’t change the MeshId even in plugins, if you read the post you’ll find a section that explains how to set it up!

I put this into a converter and it just says “RunService” also if you pay attention you can see that it would have to be RunService either way because it’s using RenderStepped. I decode a lot of backdoors for fun so I have a ton of converters and this is just simple compared to other ways of hiding things I’ve seen.

2 Likes

Does this plugin only work with meshes, or all parts?

The filter is a mesh, parts don’t hit light the same way that mesh does. But rays apply to anything that creates a shadow.

1 Like

We need to change the meshid but we don’t have any mesh???

What?

When you apply the filter, a MeshPart is placed in ReplicatedStorage with the name “Filter”. That is the MeshPart that you need to change.

1 Like

yes but we don’t have any mesh that we can put in the meshid.
Like, what mesh/meshid we need to put?

So the rays themselves are meshes, but the rays will come from any part (whether mesh or not)?

1 Like

Exactly, the rays come from any part.

1 Like

Ah ok I understood, thanks (i’m blind omg)

1 Like

Hey, I thought I would give it a shot. Sadly, it did not work. Error:

Edit:

Got it loaded, but I don’t see the effect:

1 Like

Hmm… Intresting plugin… But there is a negative to that, Performance.

1 Like

Hey! Sorry for the late response. Try updating the plugin. Did you change the MeshId to the specified Mesh?