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 9 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 9 years ago

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

01--For se22an21
02wait(2)
03 
04gpid = 368353478 --Game Pass ID
05 
06GPS = Game:GetService("GamePassService")
07function respawned(char)
08local ToolName = game.Lighting.ToolName:Clone() -- Change tool name to what you want
09local Backpack = game.Players.LocalPlayer.Backpack
10ToolName.Parent = Backpack
11game.Workspace.ChildAdded:connect(respawned)
Ad

Answer this question