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”
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
Create a folder in the workspace, name it Waypoints.
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.
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
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.
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.