Roblox:检查库存中的工具

时间:2018-11-21 04:27:57

标签: roblox

我如何制作一个脚本,以便在执行时检查玩家清单中的特定工具?

预先感谢

1 个答案:

答案 0 :(得分:0)

了解工具名称的最佳方法是尝试并FindFirstChild并在if语句中检查结果。

执行此类操作的代码非常简单,如下所示:

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

希望这对您有所帮助。