So, the require script is a script that inserts a model into you're game. This is what I am doing now.
require(1081187923)
Am I doing something wrong? It isn't inserting the model, do I have to add something, delete, edit anything?
The reason is that you are not doing anything with the require. For example, a module could be this
local module = {} function module:MakeModel() return Instance.new('Part') end return module
and you'd have to do in a server script
require(1234567--[[module name here]]):MakeModel()
Remember, requiring an asset cannot be used in studio, nor a local script.
Hope this helps!
Require isn't it ment to be used in a module script not in a normal script? Its not really an answer but just try it.