-
What do you want to achieve? Keep it simple and clear!
So im making a bundle loader plugin. But i ran into this little problem when using IsnertService -
What is the issue? Include screenshots / videos if possible!
After the code has loaded all the items from the bundle. InsertService throws this error “HTTP 403 (Forbidden)”. Im not really sure why this is happening. I got “Enable access to api services” on and “Allow third party sales”(For testing) enabled? 
Im not doing anything wrong from what i know?.
Heres my current code by the way:
local function LOAD_ITEMS(ID)
local NPC = game:getObjects("rbxassetid://7189165943")[1]
NPC.Parent = game.Workspace
--local CF = GET_CAM_CF()
NPC:SetPrimaryPartCFrame(CFrame.new(0, 0, 0))
local FOLDER = Instance.new("Folder")
FOLDER.Name = "LOADED ITEMS"
FOLDER.Parent = game.ServerStorage
local TABLE = ASSET:GetBundleDetailsAsync(589) -- Asset is the Asset Service
for i, v in pairs(TABLE.Items) do
local THING = INSERT:LoadAsset(v.Id)
THING.Parent = FOLDER
end
-- Errors when code reaches this point
end

