Tween service error while creating a tween

			local clone = game.ReplicatedStorage.Nuke:Clone()
			clone.Parent = workspace
			
			local tween1 = TweenService:Create(clone,TweenInfo(3),{CFrame = workspace.Nuke1.CFrame})

The error is attempt to call a table value on the line which I create the tween on. Thoughts?

You typed TweenInfo(3), you have to add TweenInfo.new(3)

2 Likes

You need to create a new TweenInfo like how you create a new instance

So instead of TweenInfo, do TweenInfo.new

2 Likes

Oh my gosh, thank you. I missed that.

1 Like