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

What property of a brick makes it walk through?

Asked by 9 years ago

This isn't a request and it will help me make my script. I looked on the wiki and cant find it.

2 answers

Log in to vote
3
Answered by 9 years ago

The CanCollide property makes bricks, well, able to Collide with other objects or not. Set it to false in the Properties and it should do what you want.

Ad
Log in to vote
2
Answered by 9 years ago

To make a brick walk through,

  1. Click on the brick in Studio
  2. Go to the Properties window
  3. Find where it says CanCollide
  4. If you want it to be walkthrough, uncheck the box.

If you want it in a script, it would be something like

game.Workspace.BRICKNAMEHERE.CanCollide = false

Answer this question