local ServerCommands = require(254969628) print(type(ServerCommands)) -> "Nil"
Unable to find module AssetId
http://www.roblox.com/----item?id=254969628
return { {Network = game:GetService("NetworkServer")} }
Why would this be erroring?
Your error means that there were no assets matching the prerequisites for the require
function to be called.
The Asset you're attempting to call the require function on must be a ModuleScript.
The Asset must either be owned by you or be open-sourced.
The Instance that the Asset contains, has to be named 'MainModule' if it's expected to be able to be called upon by the require function by it's ID
So, I suggest you check all of these prerequisites and make sure nothing is out of place. If the problem persists then please comment below.