I want to have Vip only tools, but I don't want a teleporter and givers. I am using a Game Pass and I need to use 2 tools. How do I do this?
If you mean you want to give 2 tools for one gamepass then here you go. If you want to separate GamePasses, I'm sure you can edit this.
id = 1337 --Gamepass Id game.Players.PlayerAdded:connect(function(plr) if plr:PlayerHasPass(plr, id) then tool_one = game.ServerStorage["Tool Name Here"] tool_two = game.ServerStorage["Tool Name Here"] repeat wait() until plr.Backpack tool_one:clone().Parent = plr.Backpack -- tool_one:clone().Parent = plr.StarterGear --Above is if you want it to remain with them tool_two:clone().Parent = plr.Backpack --tool_two:clone().Parent = plr.StarterGear --Above is if you want it to remain with them end end)
Use a Team tool script. There are some scripts that will give a specific team tools. You can insert the tools into the the team VIA studio. Just insert the script under the team you want to have the tools.
If you know how to use PlayerHasPass and stuff, then just put the tools in ServerStorage, and then :clone them into the players StarterPack, and Backpack, if they have the pass.