ClickDetector not being detected?

robloxapp-20190912-2038029
As you can see, when my mouse hovers over this part, it doesn’t change the mouse icon to a hand (like it does for the brown part), even tho there is clearly a ClickDetector inside the part

for _, v in pairs(Toppings:GetChildren()) do
	if v:FindFirstChild('ClickDetector') then
		v.ClickDetector.MouseClick:Connect(function()
			if v.Name == 'TomatoSauce' or v.Name == 'BarbequeSauce' then
				local Sauce = CurrentPizza:FindFirstChild('Sauce')
				if not Sauce then return end

				Sauce.Color3 = v.BrickColor.Color
				Sauce.Transparency = 0
			end
		end)
	end
end

What is the MaxActivationDistance? If the red one has it different then that might explain it.