I need to call the require on a lua file that will not always be in the same place. I was trying to call require on the full path name but that doesn\'t seem to be working e
If you just need to load a file, use dofile, which takes a path:
dofile
dofile("C:\\Users\\Me\\MyLuaProject\\foo")