HasItem
Checks if the player has a specific item in their inventory.
Bridge.Inventory.HasItem(item)local Bridge = exports['community_bridge']:Bridge()
if Bridge.Inventory.HasItem("lockpick") then
print("Player has a lockpick")
else
print("Player doesn't have a lockpick")
endLast updated