Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MainModule/Shared/Service.luau
Original file line number Diff line number Diff line change
Expand Up @@ -1362,7 +1362,7 @@ return function(errorHandler, eventChecker, fenceSpecific, env)
UnallowedCache = {},
Insert = function(id, rawModel)
if service.UnallowedCache and service.UnallowedCache[id] then return end
local model = service.InsertService:LoadAsset(id)
local model = ({xpcall(function() return nil, service.AssetService:LoadAssetAsync(id) end, warn)})[3] or service.InsertService:LoadAsset(id)
if not rawModel and model:IsA("Model") and model.Name == "Model" then
local asset = model:GetChildren()[1]
asset.Parent = model.Parent
Expand Down
Loading