Help with finding animation IDs of Roblox published bundles

For example, I want to find the ID for the Rthro walk. However, I don’t find where the asset ID is. The numbers on the navigation bar doesn’t work.

I have an extension (it was Ropro or something) that used to be able to tell me what the asset IDs were if I were on the bundle page, but the website layout has changed and that button no longer exists.

1 Like

Fix

I used this code using InsertService to do the trick

local insert = game:GetService("InsertService")
local asset = 2510238627 -- This is RTHRO run

local success, asset = pcall(function()
	return insert:LoadAsset(asset)
end)

if success and asset then
	for _, obj in ipairs(asset:GetDescendants()) do
		if obj:IsA("Animation") then
			warn(obj.AnimationId)
		end
	end
end

( asset is something like catalog/ 2510238627 /Rthro-Run )

1 Like

literal lifesaver, thanks for providing the code

I beieve those extensions have been patched out for now (you cant even download assets anymore), I was just going to wait for a fix but this solution was faster

1 Like

Update: it seems like the plugin has been fixed.

image

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.