How to get Marketplace Videos

So I’m Doing a Game that has a tv, I need to get all marketplace assets Id of the Video category so i can add them to a table, But i dont know how

1 Like

Here is a direct link to the videos marketplace.

1 Like

Here’s a table I formatted for you, the keys/fields are the asset IDs and the values are their corresponding asset names.

local videos = {
	[5608250999] = "Ocean Boat Cartoon",
	[5608268502] = "Ocean Coastline",
	[5608281849] = "A Magic Trick",
	[5608285055] = "Toastin",
	[5608290551] = "Bunny Scarf Ad",
	[5608292559] = "Sk8r Vibes",
	[5608297917] = "Guesty Stare",
	[5608303923] = "ChalkBoard Loading Screen",
	[5608304953] = "Pizza Ad",
	[5608309393] = "8 Bit Venture!",
	[5608310319] = "H0tD0g",
	[5608321996] = "Bloxy Cola",
	[5608327482] = "Eat!",
	[5608330602] = "Watch Your Step!",
	[5608333583] = "We're Watching",
	[5608337069] = "Connecting Screen",
	[5608339667] = "Please Wait",
	[5608342423] = "Chill Zone",
	[5608349310] = "Xray Critical",
	[5608359401] = "Weapon Safety",
	[5608360493] = "Red Vs Blue Hammer Cartoon",
	[5608368298] = "Fight Loop",
	[5608369138] = "We'll Be Right Back!",
	[5608370112] = "Sword Slashes",
	[5608381934] = "Sun Cartoon Background",
	[5608384572] = "Particle Disco Light Experience",
	[5608386285] = "Old Retro TV Set",
	[5608389672] = "Flying Colored Cubes Background",
	[5608390467] = "Bouncy Circle Background",
	[5608392925] = "Flying Cartoon Birds",
	[5608398904] = "Astronauts in Space",
	[5608400507] = "Bubble Countdown Timer",
	[5608402438] = "Dreamy Clouds",
	[5608403837] = "Retro Disco Ball",
	[5608410019] = "Lagoon Cliff Waterfall",
	[5608410985] = "TV Intermission Static",
	[5608411652] = "TV Error Image Noise",
	[5608412605] = "Epic Countdown Timer",
	[5608413286] = "Clock Passing Time",
	[5608422571] = "Xray footage",
	[5670785995] = "Technical Difficulties ",
	[5670794788] = "Anime Accessories Promo",
	[5670799859] = "Little drive",
	[5670802294] = "NOM NOM NOM",
	[5670804538] = "Pirate sailing",
	[5670806798] = "Super bomb simulator short",
	[5670809466] = "News Station",
	[5670822962] = "WHWAT WHERES MY RAMEN",
	[5670824523] = "Carts Carts Carts",
	[5670826209] = "Bricks",
	[5670869502] = "Waterfall Landscape"
}

for videoId, videoName in pairs(videos) do
	--Do code.
end

This dictionary has been ordered in ascending chronological order (oldest to newest).

3 Likes