Answered by
4 years ago Edited 4 years ago
If the tool is located in his backpack, this is how you would do it:
What you want to do is first create a function to find the tool. Next, create a function to destroy the tool. Here's how:
01 | local tool = ServerStorage.Tools.AzureSword |
03 | local function FindItemFromBackpack(whichItemName, whichPlayer) |
04 | local playerBackpack = whichPlayer.Backpack |
05 | local playerBackpackChilds = playerBackpack:GetChildren() |
07 | for _, eachItem in pairs (playerBackpackChilds) do |
08 | if eachItem.Name = = whichItemName then |
14 | local function DestroyTool(whichTool, whichPlayer) |
16 | local toolInBackpack = FindItemFromBackpack(tool.Name, player) |
17 | if toolInBackpack then |
18 | toolInBackpack:Destroy() |
23 | ReplicatedStorage.ShopFunctions:WaitForChild( "Ninjago" ).OnServerInvoke = function (player) |
24 | local myDebounce = true |
25 | if player.leaderstats.Money.Value > = 500 and MyDebounce = = true and player then |
27 | player.leaderstats.Money.Value = player.leaderstats.Money.Value - 500 |
29 | DestroyTool(tool, player) |
If it's located in his character then you would look through his character and not his backpack. If you want to make sure it's neither in his backpack nor his character then you would look at both of them and destroy the both. Here's how:
01 | local tool = ServerStorage.Tools.AzureSword |
03 | local function FindItemFromBackpack(whichItemName, whichPlayer) |
04 | local playerBackpack = whichPlayer.Backpack |
05 | local playerBackpackChilds = playerBackpack:GetChildren() |
07 | for _, eachItem in pairs (playerBackpackChilds) do |
08 | if eachItem.Name = = whichItemName then |
14 | local function FindItemFromCharacter(whichItemName, whichPlayer) |
15 | local charItems = whichPlayer.Character:GetChildren() |
17 | for _, eachItem in pairs (charItems) do |
18 | if eachItem.Name = = whichItemName then |
24 | local function DestroyTool(whichTool, whichPlayer) |
26 | local toolInBackpack = FindItemFromBackpack(tool.Name, player) |
27 | if toolInBackpack then |
28 | toolInBackpack:Destroy() |
32 | local toolInChar = FindItemFromCharacter(tool.Name, player) |
39 | ReplicatedStorage.ShopFunctions:WaitForChild( "Ninjago" ).OnServerInvoke = function (player) |
40 | local myDebounce = true |
41 | if player.leaderstats.Money.Value > = 500 and MyDebounce = = true and player then |
43 | player.leaderstats.Money.Value = player.leaderstats.Money.Value - 500 |
45 | DestroyTool(tool, player) |
Let me know how it goes.