Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a part undeletable?(UNANSWERED)

Asked by 10 years ago

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.

01local x = script.Part
02local clone = x:Clone()
03 
04script.ChildRemoved:connect(
05function(Object)
06    if Object == x then
07        clone.Parent = Workspace
08        x = clone
09        clone = x:Clone()
10        print("PROTECTED")
11    end
12end
13)
0
Try again? HexC3D 830 — 10y
0
Well, what do you mean by undeletable? Like a player with a delete tool can't come and delete it? If so, change the Locked property to true. If it's something like it falling off the map, your script looks fine. The only thing I would suggest is within your function, you should then clone x. Shawnyg 4330 — 10y

1 answer

Log in to vote
0
Answered by 5 years ago

Well, I'm not sure but it should be basic. Make the block transperency of 1 and can collide on false.

1local thing = game.Workspace.Part
2thing.Transparency = 0 -- If you want to put wait you can --
3thing.CanCollide = true
4wait(5)
5thing.Transparency = 1
6thing.CanCollide = false

Code with wait

1local thing = game.Workspace.Part
2wait(5)
3thing.Transparency = 0
4thing.CanCollide = true
5wait(5)
6thing.Transparency = 1
7thing.CanCollide = false

Or you could use a 'Function' (If you want loop)

1function appear(item0,item1)
2    local thing = game.Workspace.Part
3    thing.Transparency = item0
4    thing.CanCollide = item1
5end
6 
7appear(0,true)
8wait(5)
9appear(1,false)

Your welcome

Ad

Answer this question