I'm a noob at scripting and I'm just wondering if you could in some way create a model with scripts.
model = Instance.new("Model",Workspace) part = Instance.new("Part",model) -- Simple model, no functions needed.
Your welcome!
To make your own models you need to use the insert service. If you want to spawn your own model. First the owner of the game needs to "buy" the free models so they could use it. Unless ROBLOX owns the models himself. We need to insert objects using the LoadAsset function.
game:GetService("InsertService"):LoadAsset(00000).Parent = workspace --replace "00000" with the ID of the model.
Using the insert service, load an asset of "00000"(If it exists), then that model's parent becomes workspace or "Visible".
Hope this helps! I know this question's been up for a while...
Please accept if it helps! Upvoting also help!