Is there a way that can allow parts to slowly move to a different direction?
1 Like
There is a big number of ways to move parts in all directions needed. The real question is, what are you trying to accomplish?
1 Like
Am trying to make a part move up and down continuously. And also could be ridden on by players.
(post deleted by author) ᅟ ᅟ ᅟ
2 Likes
You can use tweening. An example:
local part = Instance.new("Part", game.Workspace)
local goal = {Position = part.Position + Vector3.new(0, 10, 0)}
local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.In, 0, true)
local tween = game:GetService("TweenService"):Create(part, tweenInfo, goal)
tween:Play()
1 Like