Quite simple! I’m trying to tween it so a model goes to
20 instead of minus 20 it works for ClockStarts but it doesn’t do it for clock restarts.
local TheClockStarts = TweenService:Create(hand, TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.In), {Orientation = Vector3.new(0, -88, -180)})
local TheClockRestarts = TweenService:Create(hand, TweenInfo.new(5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {Orientation = Vector3.new(0, -88, -20)})
I’m aware that ROBLOX, doesn’t allow minus’ on the vector, but any ideas as an alternative? Tried using motor6d’s it didn’t work as well.