TweenService Help

How would I move a part 1 stud down without changing the other positions?

TweenService:Create(Plate, TweenInformation, Plate.Position - Vector3.new(1, 0, 0)):Play()

^ not working

the property table is not supposed to be like that

TweenService:Create(Plate, TweenInformation, {Position = Plate.Position - Vector3.new(1, 0, 0)}):Play()
1 Like

You need to define a table of properties you’d like to tween when using TweenService. You currently are just providing a Vector3 value.

Example:

TweenService:Create(Object, TweenInfo, { -- Properties table
     Color = Color3.fromRGB(255,255,255),
     Size = Vector3.new(1,2,3),
     Position = Object.Position - Vector3.new(1, 0, 0) }):Play()
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.