removed for reasons (lol limitttttttttttt)
1 Like
Hm, why are you attempting to get the Game’s Creator ID? GetGroupInfoAsync requires the Group ID of the exact group you’re wanting to search for, and would return back a Dictionary of information so you’d have to reference the Group Owner inside there
Could you try this?
local GroupToSearchFor = 0000000 --Has to be a Int64 value for it to work
local GroupInfo = GroupService:GetGroupInfoAsync(GroupToSearchFor)
print(GroupInfo)
local GroupOwner = GroupInfo.Owner.Id
if MarketPlaceService:UserOwnsGamePassAsync(GroupOwner, StandardID) or MarketPlaceService:UserOwnsGamePassAsync(GroupOwner, PremiumID) then
--My code here :)
end
1 Like