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

How do I allow a certain brick to pass through a wall?

Asked by 10 years ago

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.

01function 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
11end
12script.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:

  • How do I let "x" pass through the wall "y", without the else code will be executed?
  • How do I let the wall "y" delete the brick that passes through?

2 answers

Log in to vote
0
Answered by 10 years ago

Your conditional statements are incorrectly formatted.

To check a name and compare it to your criteria, an equation is in order.

1if part.Name == x then
2 
3end

In this case, part is not defined. Luckily, however, you can extract this information through your touched event.

01x = "Passable Part" -- Or part hierarchy (game.Workspace["Passable Part"])
02y = game.Workspace.Door -- Or a script hierarchy (script.Parent)
03 
04function 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
10end
11 
12y.Touched:connect(touched)
0
Aah, most excellent. After editing your script a bit, it worked. It didn't not solved my second problem though, but I fixed it by implementing (part.Parent = nil) below the Else, in case someone else had this similar problem too. Bussemand 0 — 10y
Ad
Log in to vote
0
Answered by 10 years ago

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...

0
Thank you for your input, but I already solved that problem by adding part.Parent = nil Bussemand 0 — 10y

Answer this question