Can exploiters activate module script functions on client?

the title really explains it
i need to know if this is possible

2 Likes

Exploiters are limited to what they can call from modules. If the module has server stuff like datastore, etc. They can’t call it without it erroring. Exploiters can run module function that are public.
require(path).functionExample(…)
To stop this most people will add a env check with getfenv.
tl;dr: Yes, exploiters have access to module scripts and functions on the client.

3 Likes

what is an env chack with getfnv?

1 Like

When a exploit runs a module’s function, that function runs at exploit level. We can use this to check if the env of the current running script is an exploit via getfenv.

1 Like

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