If you want to check if for example a player has a item in their character, this is the approach:
local item = Character:FindFirstChild("ItemName")
if item then
--Run code. The reason we make "item" to a variable above is, that we don't have to write Character.Item all the time, inside this if statement(as long as we don't have waits and such).
end