Hi, I am new to Roblox Studio and I want to make a moving part that will move the player with it.
Here’s my current script:
local Part = game.Workspace.STAGE4:WaitForChild("Move1")
local TweenService = game:GetService("TweenService")
local Pos = Vector3.new(-377.07, 102.48, -569.98)
local Moving_Info = TweenInfo.new(8,Enum.EasingStyle.Quad,Enum.EasingDirection.InOut,9223372036854775807,true,0)
TweenService:Create(Part, Moving_Info, {Position = Pos}):Play()