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

Make 2 bricks go through eachother

Asked by 10 years ago

Hi, I was wondering how to make 2 bricks go through eachother? Can anyone help? Thanks.

3 answers

Log in to vote
1
Answered by 10 years ago

If you're building, disable the Collision Check in Studio (it's one of the icons on the toolbar at the top) (http://blog.roblox.com/2013/02/introducing-roblox-studio-2013, search 'Collision check')

Ad
Log in to vote
1
Answered by
User#2 0
10 years ago

This is more a building question, but you can set a part's CanCollide property to false, and the part will go through other parts

Log in to vote
1
Answered by 10 years ago

If the part is anchored, you can put them inside each-other like so:

game.Workspace.Part1.CFrame = CFrame.new(2,1,2)
game.Workspace.Part2.CFrame = game.Workspace.Part1.CFrame * CFrame.new(1,0,1)

That is a basic example and it takes time to get the positions right, I made them positions up from the top of my head so they may not be accurate.

Answer this question