I have a script
01 | function tch(h) |
02 | if (h.Parent.Name = = "Milk" ) then |
03 | h.Parent.Name = "Coffee Milkshake" |
04 | script.Parent.Sound 2 :Play() |
05 | script.Parent.Sound 1 :Play() |
06 | script.Parent.Parent.Spill.Transparency = 0.2 |
07 | wait( 0.5 ) |
08 | script.Parent.Parent.Spill.Transparency = 1 |
09 | h.Parent.Drink 1. BrickColor = BrickColor.new( 38 ) |
10 | h.Parent.Drink 1. Transparency = 1 |
11 | end |
12 | end |
13 |
14 | script.Parent.Touched:connect(tch) |
And it will only work once. Any help?