Is it possible to make an item in your backpack, go away, so you have an empty backpack? Anything I need to know before trying?
You can iterate through all objects in the backpack and destroy each child, or use the ClearAllChildren
method:
Game.Players["Player Name"].Backpack:ClearAllChildren();
Addition And to clear all players' backpacks:
local players = Game.Players:GetPlayers(); -- Get a table of all the players for key = 1, #players do -- Increment the key variable every iteration until it reaches the amount of players local value = players[key]; -- Create a reference to the player value.Backpack:ClearAllChildren(); -- Clear their backpack end