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

Walk threw able parts ?

Asked by 10 years ago

I need to know how to make a part walk threw able I think it may have to do with properties ?

2 answers

Log in to vote
1
Answered by
yurhomi10 192
10 years ago

open up your Properties and Explorer windows. to do this you need to open up studio > View > click Explorer > Properties

Click on your 'Part' object in workspace. Edit the properties of the part under the property window we opened up earlier. Make sure the "CanCollide" property is UNCHECKED ( FALSE )

you can also do this via script.

game.Workspace.Part.CanCollide = false -- sets to false and you can walk through
game.Workspace.Part.CanCollide = true -- sets to true and you CANNOT walk through
Ad
Log in to vote
0
Answered by
Jackd44 35
10 years ago

Edit: Yurhomi10 beat me by about 30 seconds. :P

Inside of any part, locate its "CanCollide" property, turning this off(as in there is no tick) will make your brick walkthrough-able.

If you cannot locate the properties tab, look at the top of the screen for the view box, hover over that and enable the "Properties" tab. -Not sure if this works in Ribbon mode as I am yet to use that.

Please leave a comment if you need any extra help with this.

Answer this question