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.
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 )
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