How do you find the distance between a part and another part through a script?
To find how many studs are between two parts, you would use Magnitude
Example:
local magnitude = (part1.Position - part2.Position).magnitude print(magnitude)