ii_MaxDV
(Gdoggs_milyon)
January 3, 2023, 12:01pm
#1
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
system
(system)
Closed
January 17, 2023, 12:05pm
#4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.