Hi, so im making a model inserter for my admin game. For some reason, this script fails to insert the model. Why? insert script in serverscriptservice
game.ReplicatedStorage.Insert.OnServerEvent:Connect(function(id) local item = require(id) item.Parent = game.Workspace end)
textbutton local script
script.Parent.MouseButton1Click:Connect(function() local id = script.Parent.Parent.InsertText.ChangeScript.Change.ChangeRemoteHandler.Text.Value game.ReplicatedStorage.Insert:FireServer(id) end)
Update: I see that insertservice was reccomended, but i want a way to insert stuff made by anyone. is there a way how?