Roblox: Check for Tool in Inventory












0














How can I make a script that checks for a specific tool in the players inventory on execute?



Thanks in advance










share|improve this question






















  • You should try yourself first and then post the code. Then we can tell you what went wrong so you can learn from your mistakes. It would also help you understand the code at a higher level.
    – Universal Link
    Nov 29 at 12:08
















0














How can I make a script that checks for a specific tool in the players inventory on execute?



Thanks in advance










share|improve this question






















  • You should try yourself first and then post the code. Then we can tell you what went wrong so you can learn from your mistakes. It would also help you understand the code at a higher level.
    – Universal Link
    Nov 29 at 12:08














0












0








0







How can I make a script that checks for a specific tool in the players inventory on execute?



Thanks in advance










share|improve this question













How can I make a script that checks for a specific tool in the players inventory on execute?



Thanks in advance







roblox






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 at 4:27









Max Li

6




6












  • You should try yourself first and then post the code. Then we can tell you what went wrong so you can learn from your mistakes. It would also help you understand the code at a higher level.
    – Universal Link
    Nov 29 at 12:08


















  • You should try yourself first and then post the code. Then we can tell you what went wrong so you can learn from your mistakes. It would also help you understand the code at a higher level.
    – Universal Link
    Nov 29 at 12:08
















You should try yourself first and then post the code. Then we can tell you what went wrong so you can learn from your mistakes. It would also help you understand the code at a higher level.
– Universal Link
Nov 29 at 12:08




You should try yourself first and then post the code. Then we can tell you what went wrong so you can learn from your mistakes. It would also help you understand the code at a higher level.
– Universal Link
Nov 29 at 12:08












1 Answer
1






active

oldest

votes


















0














The best way if you know the name of the tool would be to try and FindFirstChild and then check the result in an if statement.



The code to do something like this is quite simple as seen below:



local player = game.Players.MaxLi
--You can change how you get to the player as you need

if player.Backpack:FindFirstChild("Tool name goes here") then
print("Tool exists")
--Put the code you want to run if they have the tool here
end


Hope this helps you.






share|improve this answer





















  • Thanks! A quick question - how would i find the player?
    – Max Li
    Nov 21 at 22:55










  • If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
    – Taazar
    Nov 22 at 14:03












  • @Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
    – VetraDebesis
    Nov 28 at 0:33













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405264%2froblox-check-for-tool-in-inventory%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














The best way if you know the name of the tool would be to try and FindFirstChild and then check the result in an if statement.



The code to do something like this is quite simple as seen below:



local player = game.Players.MaxLi
--You can change how you get to the player as you need

if player.Backpack:FindFirstChild("Tool name goes here") then
print("Tool exists")
--Put the code you want to run if they have the tool here
end


Hope this helps you.






share|improve this answer





















  • Thanks! A quick question - how would i find the player?
    – Max Li
    Nov 21 at 22:55










  • If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
    – Taazar
    Nov 22 at 14:03












  • @Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
    – VetraDebesis
    Nov 28 at 0:33


















0














The best way if you know the name of the tool would be to try and FindFirstChild and then check the result in an if statement.



The code to do something like this is quite simple as seen below:



local player = game.Players.MaxLi
--You can change how you get to the player as you need

if player.Backpack:FindFirstChild("Tool name goes here") then
print("Tool exists")
--Put the code you want to run if they have the tool here
end


Hope this helps you.






share|improve this answer





















  • Thanks! A quick question - how would i find the player?
    – Max Li
    Nov 21 at 22:55










  • If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
    – Taazar
    Nov 22 at 14:03












  • @Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
    – VetraDebesis
    Nov 28 at 0:33
















0












0








0






The best way if you know the name of the tool would be to try and FindFirstChild and then check the result in an if statement.



The code to do something like this is quite simple as seen below:



local player = game.Players.MaxLi
--You can change how you get to the player as you need

if player.Backpack:FindFirstChild("Tool name goes here") then
print("Tool exists")
--Put the code you want to run if they have the tool here
end


Hope this helps you.






share|improve this answer












The best way if you know the name of the tool would be to try and FindFirstChild and then check the result in an if statement.



The code to do something like this is quite simple as seen below:



local player = game.Players.MaxLi
--You can change how you get to the player as you need

if player.Backpack:FindFirstChild("Tool name goes here") then
print("Tool exists")
--Put the code you want to run if they have the tool here
end


Hope this helps you.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 21 at 9:48









Taazar

391315




391315












  • Thanks! A quick question - how would i find the player?
    – Max Li
    Nov 21 at 22:55










  • If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
    – Taazar
    Nov 22 at 14:03












  • @Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
    – VetraDebesis
    Nov 28 at 0:33




















  • Thanks! A quick question - how would i find the player?
    – Max Li
    Nov 21 at 22:55










  • If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
    – Taazar
    Nov 22 at 14:03












  • @Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
    – VetraDebesis
    Nov 28 at 0:33


















Thanks! A quick question - how would i find the player?
– Max Li
Nov 21 at 22:55




Thanks! A quick question - how would i find the player?
– Max Li
Nov 21 at 22:55












If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
– Taazar
Nov 22 at 14:03






If you are using an onTouched function it would be onTouched(hit), hit.Parent.Player where hit is the part that touched the brick/part. If you know the players name then just do player = game.Players.FindFirstChild(nameHere)
– Taazar
Nov 22 at 14:03














@Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
– VetraDebesis
Nov 28 at 0:33






@Max Li Just a little suggestion, you can also do something like pcall(function() if player.Character:FindFirstChild("Tool name goes here") then local tool = player.Character:FindFirstChild("Tool name goes here"); if tool:IsA("Tool")then print("Tool exists"); end; end; end); This would detect if the tool is equipped by the character, if you mix this plus your code, you'd have a "full check", just to make sure the player has that tool.
– VetraDebesis
Nov 28 at 0:33




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405264%2froblox-check-for-tool-in-inventory%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Tonle Sap (See)

I get strange results when I access the Sqlitedatabase with Unity C# via XAMPP

Guatemaltekische Davis-Cup-Mannschaft