1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent.Name = = "Your Tool Name" then |
3 | script.Parent.CanCollide = false |
4 | script.Parent.Transparency = 0.5 |
5 | wait( 2 ) |
6 | script.Parent.CanCollide = true |
7 | script.Parent.Transparency = 0 |
8 | end |
9 | end ) |