How to make alignposition be more smooth?

						local align = Instance.new("AlignPosition")
						align.Attachment0 = coin.sparkle
						align.Attachment1 = tool:FindFirstChild("Collect", true)
						align.RigidityEnabled = false
						align.MaxForce = 2000
						align.MaxVelocity = tool.STATS.Range.Value * 3
						align.Responsiveness = (coin.Position-tool.Handle.Position).magnitude*2.5
						align.Parent = coin

https://www.roblox.com/games/3486025575/X2-Magnet-Simulator
This is what i’m going for^
https://gyazo.com/58983d3f2d87c009b2fedeec0328f1a7
This is what i have^
Thanks!

1 Like

Change the align.Responsiveness *2.5 value in the formula.

Any suggestions to what i should change it to? responsiveness is really weird, idk how it works tbh.

Check the developer.roblox.com site:
AlignPosition | Roblox Creator Documentation
As it states the value should be from 5 to 200, and the higher the number the quicker it snaps to the destination.
If your .magnitude is 1 then your Responsiveness will be 2.5.
If your .magnitude is 10 then your Responsiveness will be 25.
I’m pretty sure that changes to the Responsiveness when calculated and applied will not change during the coin’s movement though.

why dont you just lerp the coins?