So I was making a game and I decided I wanted to be able to temporarily disable a players ability to equip tools for seconds at a time (im using the default roblox inventory system) but im not quite sure of an approach to make this possible. Anybody know what I could use to make this possible?
1 Like
Off the top of my head I would say disable the back back entirely for a bit or you can make so that players can’t equip anything (aka temp disable the handle on specific objects), but I recommend using your own system if you want to do things like this and make it fully customizable.
1 Like
You could either disable the inventory locally or on the serverside you store the backpack items in folders in serverstorage temporarily or you put a serverscript in each tool so if a boolean value is false when the equipped event is triggered it’ll just unequip
1 Like