Hey,
I got an code. Why that code doesn't work?
local Player = game.Players.LocalPlayer local item = "Jeff" local gotit = Player.Backpack:FindFirstChild(item) or Player.Character:FindFirstChild(item) if gotit == nil then print("Has the Item!") else print("He doesn't have Item!") end
local Player = game.Players.LocalPlayer local item = "Jeff" if (Player.Backpack:FindFirstChild(item) or Player.Character:FindFirstChild(item)) then print("Has the Item!") else print("He doesn't have Item!") end