01 | function joel(hit) |
02 |
03 | hit.Transparency = 1 |
04 |
05 | end |
06 |
07 | script.Parent.Touched:connect(joel) |
08 |
09 | wait( 5 ) |
10 |
11 | game.Workspace.Part:Clone() |
12 |
13 |
14 | function og(sup) |
15 | wait( 5 ) |
16 |
17 | sup.Transparency = 0 |
18 |
19 | script.Parent.Touched:connect(og) |
20 | end |
So what I want it to do is if something hits the brick it goes transparent first. Second it clones the same brick than the brick that is cloned gets touched by something it will change it's transparent to 0
1 | script.Parent.Touched:connect( function (hit) |
2 | hit.Transparency = 1 |
3 | wait( 5 ) |
4 | clne = script.Parent:Clone() |
5 | clne.Parent = game.Workspace |
6 | clne.Touched:connect( function (hitt) |
7 | hitt.Transparency = 0 |
8 | end ) end ) |
This would do what you're asking, what you were doing was specifying the connection statement before you ended the function..
1 | script.Parent.Touched:connect(og) |
2 | end |
Hope it helped