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

How do you make a door so you can walk through it?

Asked by 6 years ago

Its for a friend and he wants my help. Can someone help me i will tell him u helped! Thx

2 answers

Log in to vote
1
Answered by
Aimarekin 345 Moderation Voter
6 years ago

Hi there. In Roblox Studio, click the door. If it's just one part, click the part you want to be trespassed. If they're more than one, click the part(s) you may want to be trespassed. Once you clicked them, take a peek at the object's properties. You may see these two right under "Behavior":

Anchored CanCollide

Make sure you tick "Anchored", but untick "CanCollide" this way, the block won't collide with anything, but won't fall off the ground. You should pass through the door properly.

PD: If the door is a model, you'll need to as well explore it until you see the part you want to be trespassed or ungroup it and select those parts.

Luck to your friend!

Aimarekin.

And, too, if it helped, accept me as answer ;D LOL

1
Thanks :D Aimarekin 345 — 6y
Ad
Log in to vote
0
Answered by 6 years ago

You can also use a script to do this for you, here:

game.Workspace.Part.CanCollide = true -- true, allowing those to walk through it, false to not

Answer this question