Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Destroying a tool that is in hand inside a RemoteEvent?

Asked by
Zelt3q 31
4 years ago

How do I destroy a tool that is being held in the hand? I have currently done as if the tool is in the backpack it will be destroyed.

01ReplicatedStorage.ShopFunctions:WaitForChild("Ninjago").OnServerInvoke = function(player)
02    if player.leaderstats.Money.Value >= 500 and MyDebounce == true and player then
03        MyDebounce = false
04        player.leaderstats.Money.Value = player.leaderstats.Money.Value - 500
05 
06 
07 
08        player.Backpack:ClearAllChildren()
09 
10        ServerStorage.Tools.AzureSword:Clone().Parent = player.Backpack
11 
12    end
13end

2 answers

Log in to vote
0
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:

01local tool = ServerStorage.Tools.AzureSword
02 
03local function FindItemFromBackpack(whichItemName, whichPlayer)
04    local playerBackpack = whichPlayer.Backpack
05    local playerBackpackChilds = playerBackpack:GetChildren()
06 
07    for _, eachItem in pairs(playerBackpackChilds) do
08        if eachItem.Name == whichItemName then
09            return eachItem
10        end
11    end
12end
13 
14local function DestroyTool(whichTool, whichPlayer)
15    -- Look through his backpack
View all 31 lines...

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:

01local tool = ServerStorage.Tools.AzureSword
02 
03local function FindItemFromBackpack(whichItemName, whichPlayer)
04    local playerBackpack = whichPlayer.Backpack
05    local playerBackpackChilds = playerBackpack:GetChildren()
06 
07    for _, eachItem in pairs(playerBackpackChilds) do
08        if eachItem.Name == whichItemName then
09            return eachItem
10        end
11    end
12end
13 
14local function FindItemFromCharacter(whichItemName, whichPlayer)
15    local charItems = whichPlayer.Character:GetChildren()
View all 47 lines...

Let me know how it goes.

0
I’m sure this will help, i’ll check it tomorrow when I get back on. Thank you so much :) Zelt3q 31 — 4y
0
Any updates on how it went? Don't forget to mark question as answered if this answers your question :P DevMaster333 215 — 4y
Ad
Log in to vote
0
Answered by
sebanuevo 123
4 years ago

Tools that are being hold are in the player's character, so u can do

1if player.Character:FindFirstChildOfClass("Tool") then
2 
3    player.Character:FindFirstChildOfClass("Tool"):Destroy()
4 
5end

Answer this question