Module not working properly

In this module it is supposed to load all of the gamepasses in the table but it only loads 1 gamepass this is the full script the first gamepass loads wheras the second doesnt

local gamepasses = {
	{
		gamepassID = 23838320,
		109560541,
		getInfosFromGamepass = true, --set to false to use custom infos
		
		-- // Custom Infos

		["customInfos"] = {
			GamepassName = "Custom Gamepass Name",
			GamepassDescription = "Custom Gamepass Description",
			GamepassImageID = 0,

		},
	},

}

return gamepasses

Sorry, i read the thread wrong last time, but maybe try to make the “gamepassID” thing a table.

local gamepasses = {
	{
		gamepassID = {23838320,
		109560541}
		getInfosFromGamepass = true, --set to false to use custom infos
		
		-- // Custom Infos

		["customInfos"] = {
			GamepassName = "Custom Gamepass Name",
			GamepassDescription = "Custom Gamepass Description",
			GamepassImageID = 0,

		},
	},

}

return gamepasses

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