Knowing that ‘Speed = Distance / Time’ you just need to configure both tweens such that they share the same time duration.
2 Likes
Try this.
local TweenService = game:GetService("TweenService")
local TweenInfo = TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut)
local Position = {Position = UDim2.new(0.5,0,0.5,0)}
-- i want it the same speed no matter how far it is or close
local PlayThis = TweenService:Create(Script.Parent, TweenInfo, Position)
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.