I've been having this question for ever. I clone a part and give it a Cframe, but if that cframe makes it gets inside a part, like a roof because the part is too big it just gets on top of the roof. How do i set it's cframe even if it gets inside other parts?
Make sure the part you are attempting to bind into another part is anchored.
1 | local part = Instance.new( 'Part' , workspace) |
2 | part.Anchored = true |
3 | part:Clone().Parent = workspace |