I have a script
function tch(h) if (h.Parent.Name == "Milk") then h.Parent.Name = "Coffee Milkshake" script.Parent.Sound2:Play() script.Parent.Sound1:Play() script.Parent.Parent.Spill.Transparency = 0.2 wait(0.5) script.Parent.Parent.Spill.Transparency = 1 h.Parent.Drink1.BrickColor = BrickColor.new(38) h.Parent.Drink1.Transparency = 1 end end script.Parent.Touched:connect(tch)
And it will only work once. Any help?