I'm trying to make a certain brick to pass through a wall. I want to let a certain brick called "x" to pass through the wall "y". If the wall detects another brick, whose name is not "x", then it will delete it.
01 | function lala() |
02 | if |
03 | game.Workspace.Name.x -- I have no idea what to do around here |
04 | then |
05 | print ( "x confirmed" ) |
06 | else |
07 | local part = game.Workspace.Part -- This one too |
08 | part:Destroy() |
09 | print ( "Removing this junk." ) |
10 | end |
11 | end |
12 | script.Parent.Parent.y.Touched:connect(lala) |
Now, the problem is that the wall will immediately execute the Else code, whenever the "x" block passes through. It will delete ANY random brick that has the name "Part".
So my questions are:
Your conditional statements are incorrectly formatted.
To check a name and compare it to your criteria, an equation is in order.
1 | if part.Name = = x then |
2 |
3 | end |
In this case, part is not defined. Luckily, however, you can extract this information through your touched event.
01 | x = "Passable Part" -- Or part hierarchy (game.Workspace["Passable Part"]) |
02 | y = game.Workspace.Door -- Or a script hierarchy (script.Parent) |
03 |
04 | function touched(part) |
05 | if part.Name = = x or part = = x then |
06 | print ( "Part passed! I suggest toggling the door's CanCollide for effect." ) |
07 | else |
08 | print ( "Part is not x." ) |
09 | end |
10 | end |
11 |
12 | y.Touched:connect(touched) |
Do what Drako did, then maybe instead of printing a message in output, try first renaming the part to "deleteme". Then add game.Workspace.deleteme:Destroy()
Just a guess...