I've tried experimenting with many things, but nothing worked. Idk if I the methods I tried were correct but I used them wrong, or they were wrong. Can someone help?
Get the difference of the vectors then get their magnitude via Vector3.Magnitude
. Here's an example of that:
local part1 = workspace.Part1 local part2 = workspace.Part2 print((part1.Position - part2.Position).Magnitude)
If my answer solved your problem please don't forget to accept it.