I added 2 functions RunString and FindAndRunScript. I added some comments about the functions. Don't ask me how to implement or how this is useful, figure it out.

The shitty attachment uploader won't allow me to upload my header so fuck it.

Header:

http://bluekirbygmod.googlecode.com/...ders/LuaBase.h

Example module:

https://github.com/garrynewman/gmod-module-base

Example of using the function:
Please note that all the functions print, it's just different ways of writing the function.

Code:
int MyExampleFunction( lua_State* state )
{
	LUA->RunString( "MyModule", NULL, "print( \"Hello I am black\" )", true, true );
	LUA->RunString( "Liar", NULL, "print( \"No, you're not.\" )" );
	LUA->RunString( "Yellow", "", "print( 'You're yellow!' )", true );

	return 1;
}