Roblox insert service doesnt insert mesh

as the title says,

code in the server

game:GetService("InsertService"):CreateMeshPartAsync(meshid)

the script is in replicated storage,tried putting it on serverscript service but doesnt work.

i even tried running it from the command bar but no.

it refused saying this :

image

i just think that the roblox devs should update their engine a little bit because there is a lot of broken services…

Well if you did a quick search on the docs it would of showed you that the meshId type is a “content” type. Which is a string with rbxassetid in it. Your putting it in as a number hence the error unable to cast double to content

you forgot quotation marks for the asset id string

game:GetService("InsertService"):CreateMeshPartAsync("rbxassetid://12126630491",..)