Answered by
8 years ago Edited 8 years ago
EDIT: Apparently this isn't what you wanted, but I'll keep it for future reference :P
First off, I believe you get magnitudes using subtraction, not division, so:
1 | local mag = (pos 1 -pos 2 ).Magnitude |
Next, to use percentages, you need to have a value that state's what 100% would be, so:
1 | local distanceToTravel = (pos 1 -pos 2 ).Magnitude |
Then, to calculate the percentage, you get the maximum percentage (100%), divide it by the "100% value", then times it by the current value:
02 | local distanceToTravel = (start-destination).Magnitude |
03 | local travelledDistance = false |
05 | while travelledDistance = = false do |
06 | local percentage = 100 /distanceToTravel*((curPos-destination).Magnitude) |
07 | if percentage > = 100 then |
08 | travelledDistance = true |
Hope I helped! If you have any questions, please ask!
~TDP