I'm trying to make Part1 teleport to bvPart (which is moving with bodyvelocity) and when the bvPart goes through, a building, Part1 goes above the building, and not to the CFrame of bvPart. How could I fix something like this?
this is what i do im assuming your part is not anchored if not just edit the anchored part out
local p = -- part local pos = -- Position p.Anchored = true p.CanCollide = false p.Position = pos p.CanCollide = true p.Anchored = false