of     1   

diamondsawyer
#95128156Wednesday, April 17, 2013 12:11 PM GMT

How Do I Make A Game Pass Give Admin Commands?
getkoed2
#95128195Wednesday, April 17, 2013 12:12 PM GMT

Why Are You Using Caps Lock For Every First Letter Of A Word? I Don't Really Like That
As8D
#95128573Wednesday, April 17, 2013 12:25 PM GMT

You Script. Also, You Can Look In The Normal ROBLOX Sets In Your Toolbox And Find Bricks To Ex. Teleport Someone With A GamePass, Opening A Door For Them And So On. Just Edit It. - As, Just Hit Shift, Not Caps Lock. Shifty Shift Button.
DopeDealerss
#95135084Wednesday, April 17, 2013 3:52 PM GMT

no
TheGreatGardenGnome
#95135146Wednesday, April 17, 2013 3:54 PM GMT

Here is the wiki article for further information on said topic- http://wiki.roblox.com/index.php/Game_Pass |MassiveGman| Scripter & part time Professional Whistler
TheGreatGardenGnome
#95135200Wednesday, April 17, 2013 3:56 PM GMT

local passId = 0000000 -- change this to your game pass ID. function authenticate(player) return game:GetService("GamePassService"):PlayerHasPass(player, passId) end game.Players.PlayerAdded:connect(function(plr) if authenticate(plr) then print(plr.Name .. " has bought the game pass with id " .. passId) table.insert(admin,ply.Name)--I added this line end end) Put this in the admin script, after where it says admin = { } |MassiveGman| Scripter & part time Professional Whistler
TheGreatGardenGnome
#95135223Wednesday, April 17, 2013 3:57 PM GMT

if you're using person299's admin script: local passId = 0000000 -- change this to your game pass ID. function authenticate(player) return game:GetService("GamePassService"):PlayerHasPass(player, passId) end game.Players.PlayerAdded:connect(function(plr) if authenticate(plr) then print(plr.Name .. " has bought the game pass with id " .. passId) table.insert(adminlist,ply.Name)--I added this line end end) |MassiveGman| Scripter & part time Professional Whistler
diamondsawyer
#95256815Friday, April 19, 2013 12:37 AM GMT

And where do I get this passId?
As8D
#95285670Friday, April 19, 2013 6:45 AM GMT

First you find your game pass, like this one: http://www.roblox.com/TestPass-item?id=92997034 Then you see some numbers at the end of the URL. You take them out, now you have this: 92997034 That's your 'passId'. Also, the code below isn't working (Haven't tested it), because ply is a nil variable. Change ply to plr. - As, have to go. School ekzam r funni.
diamondsawyer
#95291863Friday, April 19, 2013 12:05 PM GMT

Thanks Bro!
diamondsawyer
#95445945Saturday, April 20, 2013 10:31 PM GMT

Wait, MassiveGman, so I put that into the admin command script?

    of     1