Well, I'm trying to make an undeletable block, but the script only works once. I need help finding out what is causing this and why... Here's my script.
01 | local x = script.Part |
02 | local clone = x:Clone() |
03 |
04 | script.ChildRemoved:connect( |
05 | function (Object) |
06 | if Object = = x then |
07 | clone.Parent = Workspace |
08 | x = clone |
09 | clone = x:Clone() |
10 | print ( "PROTECTED" ) |
11 | end |
12 | end |
13 | ) |
Well, I'm not sure but it should be basic. Make the block transperency of 1 and can collide on false.
1 | local thing = game.Workspace.Part |
2 | thing.Transparency = 0 -- If you want to put wait you can -- |
3 | thing.CanCollide = true |
4 | wait( 5 ) |
5 | thing.Transparency = 1 |
6 | thing.CanCollide = false |
Code with wait
1 | local thing = game.Workspace.Part |
2 | wait( 5 ) |
3 | thing.Transparency = 0 |
4 | thing.CanCollide = true |
5 | wait( 5 ) |
6 | thing.Transparency = 1 |
7 | thing.CanCollide = false |
Or you could use a 'Function' (If you want loop)
1 | function appear(item 0 ,item 1 ) |
2 | local thing = game.Workspace.Part |
3 | thing.Transparency = item 0 |
4 | thing.CanCollide = item 1 |
5 | end |
6 |
7 | appear( 0 , true ) |
8 | wait( 5 ) |
9 | appear( 1 , false ) |
Your welcome