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

How to detect two tools in player's backpack?

Asked by 5 years ago

This is my script: I want to detect if two tools (MediterraneanAvenue and BalticAvenue) are there in the player's backpack when he touches a part and want to give my conditions accordingly. But when I tried this it didn't work! Can someone please help me?

01local Part = script.Parent
02 
03 
04 
05    Part.Touched:Connect(function(HIT)
06        local Player = game.Players:GetPlayerFromCharacter(HIT.Parent)
07 
08    local FindMediterraneanAvenue = Player.Backpack:FindFirstChild("MediterraneanAvenue")
09    local FindBalticAvenue = Player.BackPack:FindFirstChild("BalticAvenue")
10 
11 
12 
13        local = HIT.Parent:FindFirstChild("Humanoid")
14        if H and not FindMediterraneanAvenue then
15            Player.PlayerGui.MediterraneanAvenue.StartUp.Visible = true
View all 44 lines...

2 answers

Log in to vote
0
Answered by
mattscy 3725 Moderation Voter Community Moderator
5 years ago

If you want to check for tools, you have to check both the backpack and character (since the tools are in the character if they are equipped). You also have to remember that 'Backpack' doesn't have a capital P. Here's an example function for checking for the tool:

01local function playerHasTool(player, toolName)
02    local tool = player.Backpack:FindFirstChild(toolName) or player.Character:FindFirstChild(toolName)
03    if tool then
04        return true
05    else
06        return false
07    end
08end
09 
10thing.Touched:Connect(function(hit)
11    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
12    if playerHasTool(player, "MediterraneanAvenue") and playerHasTool(player, "BalticAvenue") then
13        --do stuff
14    end
15end)

Hope this helps!

0
should I put if playerHasTool(player,"MediterraneanAvenue") == true? QuantumxGeneral 25 — 5y
0
You don't need to, since true == true just evaluates to true anyway, so you can just do it like it is in the example. mattscy 3725 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

just do

1if Player.Backpack:FindFirstChild("MediterraneanAvenue") and Player.Backpack:FindFirstChild("BalticAvenue") then ... end

Answer this question