BH did not know the answer, so i will ask it here. In some script, the following happens:
p = Instance.new("Part")
p.Anchored = true
p.CFrame = CFrame.new(x, y, z)
p.Parent = game.Workspace
The problem is, that part cframe gets affected by other parts - part tryes to go above another part, with which it was colliding. The game dont allow parts to be in each other, thought they are anchored and CFramed. How can i fix it? |