Hello, so the issue at hand is that my AlignPosition that is connected to the part that spawns into the workspace is very inconsistent and gives different velocities/power randomly and I’m not sure what would be the reasoning for this to be happening, any help would be appreciated thank you👍. The examples of this sequence happening is below.
It could be happening due to network ownership. An unanchored part’s network owner is able to change unless you set it manually using BasePart’s SetNetworkOwner method, so inconsistencies in the part’s physics behavior can occur if its network ownership is repeatedly changing from the player to the server and back. You can confirm whether or not this is happening by enabling Are Owners Shown in Studio’s physics settings
Nice animation btw. I’m guessing you want the character position to align to the white glowing part? For consistency, I would recommend using TweenService and calculating the time based on distance and velocity.
If you have collision issues with that, I would then recommend manual interpolation by adding the difference.
Thank you for the compliment on the animations but as for TweenService I just tried it, and the body movement isn’t as smooth anymore, so it won’t work out doing this unfortunately.
I found the issue, the MaxVelocity was set to infinity. When I changed the MaxVelocity to 10 the issue didn’t occur again. Thank you everyone for the extra help.