How do i tween to many parts?

Hi, i wanted to ask bassicly how do i make it so that a part tweens to multiple parts like this amazing art piece that i made:

amazing i know, I know how to tween a part to a few parts, But for my game that might have like over 100 to 200 points i dont wanna keep typing “local waypoint32 = waypoint”

You can do this, still adjusting it

local tweenservice = game:GetService(“TweenService”)
for i=1, #waypoints do
local goal = {Position = waypoints[i].Position}
local ti = TweenInfo.new(2,Enum.EasingStyle.Back,Enum.Easingstyle.In)
local tween = tweenservice:Create(waypoints[i], ti, goal)
tween:Play()
if i > #waypoints then
i = 1
end
i += 1
Tween.Completed:Wait()
end

  1. Create a folder in the workspace, name it Waypoints.
  2. Add all your waypoints part inside it and name them with increasing numbers (1, 2, 3, etc.). The numbers of these waypoints should be in the correct order so that the tween follows them accordingly.
  3. Use the following code:
local TweenService = game:GetService("TweenService")
local WaypointsFolder = workspace:WaitForChild("Waypoints", 300)

local PartToTween = nil -- Path to your part

local WaypointInfo = TweenInfo.new(0.25, Enum.EasingStyle.Linear)
local WaypointTween = nil

for Number = 1, #WaypointsFolder:GetChildren() do
	local Waypoint = WaypointsFolder:FindFirstChild(tostring(Number))
	
	if Waypoint then
		WaypointTween = TweenService:Create(PartToTween, WaypointInfo, {CFrame = Waypoint.CFrame})
		WaypointTween:Play()
		WaypointTween.Completed:Wait()
	end
end
1 Like

Feel free to ask me if you have any question or if you encounter an issue!

1 Like

Um i wanted to ask you is there anyway to make a part also rotate at a certain part

Yes, it is already automatic as the tween use CFrame as a goal. Which mean that the part will tween at the same position and rotation than the waypoint. As for example, if you set the waypoint 3 to a 45° orientation, the tweened part will also be oriented this way.

1 Like

No problem! May I ask if my solution worked?

1 Like

Yup i will give the solution mark but i just wanted to ask would this be able to work with a model?

Alright! Yep, it can work with a model as well. If it is a character, you can use the HumanoidRootPart to tween.

However, if it is a basic model, you need to setup a new part as primary part of the model, with these properties: Transparency = 1 - Can Collide = false - Anchored = true. Then all visible and decorative meshes or parts of the model need to be welded to it, using ManualWeld instances, and their Anchored property to false. So, this invisibile primary part will be the one to use for the tween.

1 Like

I made an example place in case it is a bit confusing ^^
Model Tween.rbxl (54.1 KB)