Hi, I was wondering how to make 2 bricks go through eachother? Can anyone help? Thanks.
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')
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
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.