A package is an asset just like any other (Decal, model, mesh, etc.) you can just use the roblox InsertService to insert the package into your game
Code example:
local assetId = 257489726 -- your package asset ID
local InsertService = game:GetService("InsertService")
local model = InsertService:LoadAsset(assetId)
model.Parent = workspace