Trying to use this module script but don't know how to make it work

I’m trying to use this module script. But I don’t know how to make it work. Anyone know what to do? vLua: Loadstring reimplemented in Lua - Roblox I tried doing:

require(560295289)("code here", getfenv())

But it just does absolutely nothing. This is also not for an actual game, Its for a game that lets me run ss scripts. So don’t worry about security or anything. And also no I’m not exploiting.

2 Likes

Its not for a game its for a game that lets me execute code. Im making a custom executor so I don’t get my stuff logged. Its not for a game so don’t worry about security

4 Likes

I see. Thank you for clarifying.

3 Likes

Assuming this is for a exploit cause this is the only time I see stuff like this, make sure your executor is serverside as you can’t require modules from the client.

1 Like

Isn’t for an exploit. It’s for a server side executor thingy. Like the script builder command on adonis. And I’m requiring the module from a server script. (I think I might have to send the module bytecode i think)

Does your game have LoadStringEnabled set to true?

The game I’m using this on, I don’t think so. Because I tried executing something but it didn’t work, But when I executed something on studio it did. So that’s why I’m trying to use this loadstring module so I dont have to worry about loadstring being enabled.

You will need LoadStringEnabled set to true for loadstring to work. Given this module was last updated in 2016 this probably predates the FilteringEnabled update and probably doesn’t work anymore due to changes in game security.

Its a lua vm (also im switching to this because its new vLua: Loadstring reimplemented in Lua - Roblox updated 2020) Sorry if I confuse you on what my goal is.

I solved my own problem.
What I did wrong was i forgot an extra () XD