GetBaseCategories (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Emess No edit summary |
>Emess No edit summary |
(One intermediate revision by the same user not shown) | |
(No difference)
|
Latest revision as of 02:12, 30 December 2010
![]() | |
Returns | Table (See below) |
Description: | Returns the common base categories of all players. |
Member of: | InsertService |
Table Format
This format is used with AdvancedResults is set (the default):
- { -- List Table
- { -- Hash Table
- CategoryId = Integer for use with InsertService::GetCollection
- ImageAssetId = Integer decal asset
- Name = String category name
- Description = String category description
- CreatorName = String creator name
- AssetSetId = Integer for use with InsertService::GetCollection
- SetType = String "base" for built-in categories
- }
- { -- Hash Table
- }
Example
local categories = game:GetService("InsertService"):GetBaseCategories() for ndx,catinfo in ipairs(categories) do print(ndx) for k,v in pairs(catinfo) do print( k, "=", v ) end end