Attempting to run a Require() Script as a loader.
But does not insert the Service Script as another asset model (script) and the output shows "Unable to find module for asset id."
require(2672209209)() wait(1) script.Parent:Destroy()
(These are short code line, there is nothing more too it.)
What can i do to resolve the Unable to find module for asset id?
I gave you the answer before. You have extra ().
require(2672209209) wait(1) script.Parent:Destroy()
Make sure that the numbers actually are the script model numbers, after that you make sure that this script is inside of a servermodule. Else it won't work.