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?
01 | local 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 H = HIT.Parent:FindFirstChild( "Humanoid" ) |
14 | if H and not FindMediterraneanAvenue then |
15 | Player.PlayerGui.MediterraneanAvenue.StartUp.Visible = true |
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:
01 | local 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 |
08 | end |
09 |
10 | thing.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 |
15 | end ) |
Hope this helps!
just do
1 | if Player.Backpack:FindFirstChild( "MediterraneanAvenue" ) and Player.Backpack:FindFirstChild( "BalticAvenue" ) then ... end |