This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
@@ -0,0 +1,24 @@
--[[
// GameGenreScreen.lua
// Creates a GameGenreScreen that is used to navigate games for a
// selected sort.
]]
local CoreGui = game:GetService("CoreGui")
local GuiRoot = CoreGui:FindFirstChild("RobloxGui")
local Modules = GuiRoot:FindFirstChild("Modules")
local ShellModules = Modules:FindFirstChild("Shell")
local BaseCarouselScreen = require(ShellModules:FindFirstChild('BaseCarouselScreen'))
local function CreateGameGenreScreen(sortName, gameCollection)
local this = BaseCarouselScreen()
this:SetTitleZIndex(2)
this:SetTitle(sortName)
this:LoadGameCollection(gameCollection)
return this
end
return CreateGameGenreScreen