When you put the cup in the machine it makes Lemonade, but the color change isn’t working.
Organization:
The thing inside the Handle is just a WeldConstraint.
Script In Machine:
local TouchPart = Machine.TouchPart
TouchPart.Touched:Connect(function(PartThatTouched)
local Cup = PartThatTouched.Parent
local Character = Cup.Parent
Cup.Parent = Character
Cup.Handle.Color = Color3.new(245,245,101)
Cup.Name = "Lemonade"
end