Ranking center template help

Rank Center Problems
So I don’t actually know how to set up gamepasses(I have them created)

Code:

local groupId = 4976539
local api = require(4690204259)("", "key", groupId)

local passes = {

}

game.Players.PlayerAdded:Connect(function(plr)

		local plrRank = plr:GetRankInGroup(groupId)
		for i = 1,#passes do
			local pass = passes[i][1]
			local rank = passes[i][2]
			local name = passes[i][3]
			wait (8)
			if plrRank < rank and game:GetService("MarketplaceService"):UserOwnsGamePassAsync(plr.UserId,pass) then
				api.setRank(plr.UserId,rank)	
				game.ReplicatedStorage.RemoteEvent:FireClient(plr,"You have been ranked to "..name..".")
				break
			end
		end
	wait(20)
	plr:kick("Sorry, I believe you do not have any own Passes OR YOU ARE NOT IN THE GROUP.")
end) 

At “passes” what do I write and how?

if you don’t know how to script a gamepass, consider watching this tutorial:

or reading this article:

From using my Templates (Which i can see from the require and the script) You have to have a table which has to have:

{gamepassid, rankid, “Rank Name”}

EG:

{1131312, 54, “Admin”}

Next time you require help with my templates open a ticket in the support server.