You can write your topic however you want, but you need to answer these questions:
- i am working on a simple plugin that when i press the plugin button it inserts a model into game
i get “temp read failed” after pressing on button
- i tried searching for solutions on Dev hub but i didn’t find anything
local toolbar = plugin:CreateToolbar("MyPlugin")
local myButton = toolbar:CreateButton("MyButton", "Click me!", "rbxassetid://13324100651")
myButton.Click:Connect(function()
local modelId = 13341525012
local model = game:GetService("InsertService"):LoadAsset(modelId)
model.Parent = game.Workspace
model:SetPrimaryPartCFrame(CFrame.new(0, 0, 0))
end)
in the begin it was error http 403 but i did fix it