Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Where do I find the game passes in ROBLOX Studio?

Asked by 8 years ago

Hi again! Today, I am wondering how I can add a tool to my gamepass. How do I make it so if someone bought the gamepass, they can spawn in with something. I also need to know where to find the game passes in the ROBLOX Studio.

Thanks again!! :D

1 answer

Log in to vote
0
Answered by 8 years ago

Here is a script I made for you. Put the tools you want in lighting

--For se22an21
wait(2)

gpid = 368353478 --Game Pass ID

GPS = Game:GetService("GamePassService")
function respawned(char)
local ToolName = game.Lighting.ToolName:Clone() -- Change tool name to what you want
local Backpack = game.Players.LocalPlayer.Backpack
ToolName.Parent = Backpack
game.Workspace.ChildAdded:connect(respawned)


Ad

Answer this question