Tween Help [Cframe] {RESOLVED}

Hey!

I’m attempting to tween one brick from the set position to another brick but it isnt working. Is there a way to make this work, or a more productive and easier way to do it?

local TweenService = game:GetService("TweenService")

local Position = TweenService:Create(
	workspace.Feast, 
	TweenInfo.new(10, Enum.EasingStyle.Quart, Enum.EasingDirection.In),
	{Position = CFrame.new(0,50,0)}
	)

positionTween:Play() -- This is underlined in studio, not sure why.

this is the wrong channel for this. you should move this to scripting support

positionTween is not defined
you called the tween variable Position so simply change it to Position:Play()

If anyone’s wondering and having the same issue, check to make sure capitalization and such is correct, for me I forgot to remove “Tween” so the correct play line would be:

Position:Play()

Another issue for reversing the tween I had was the ‘,’ next to workspace.Feast so remember to check the little things in your code! <3