Hi, I have Mouse.Target
and i said if Mouse.Target.Name == “UpperTorso” or “Head” then
print only those 2
what happens is it prints everything the mouse.target catches
-- Mouse.Move:Connect(function()
if Mouse.Target == "UpperTorso" or "Head" then
local Char =Mouse.Target
print(Char)
end
end)