Answered by
4 years ago Edited 4 years ago
Here is what it means:
math.ceil
means that it rounds up to the nearest whole number. For example:
The above would print out 1
as 1 is the nearest whole number when rounding up.
math.abs
means that it gives the absolute value of the number. For example:
The above would print out 0.5
as 0.5 is the absolute value of -0.5
. Simple math lol
script.Parent
means that the script in which you are writing will find the parent of it. For example:
If you add a part and add a script inside a part and type the following code:
1 | script.Parent.Transparency = 0.5 |
Then you will see that the part in which the script you just wrote is in will become half-transparent as the parent of the script is the part.
So what this script means is:
2 | if math.ceil((script.Parent.part.Position-script.Parent.anchor.Position).Magnitude) > = math.abs(script.Parent.part.PrismaticConstraint.TargetPosition) then [[--If the position of the part minus the position of the anchor, when rounded up is greater than or equal to the absolute value of the target position of the PrismaticConstraint in the part, then--]] |
3 | script.Parent.part.PrismaticConstraint.TargetPosition = - script.Parent.part.PrismaticConstraint.TargetPosition [[--The TargetPosition of the PrismaticConstraint will be equal to the negative value of the TargetPosition of the PrismaticConstraint--]] |
Hopefully this helped! Please mark it as an answer if it helped as it took a lot of time to write!