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
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)