I'm making a client only tweening part. And the part didn't tween, but there is no error output. My code is like this
1 | local TweenService = game:GetService( "TweenService" ) |
2 | local Info = TweenInfo.new( 0.8 ,Enum.EasingStyle.Elastic,Enum.EasingDirection.In, 1 , true , 0 ) |
3 | script.Parent.MouseButton 1 Click:Connect( function () |
4 | local PartA = workspace.PartA |
5 | local Table = { Position = Vector 3. new( 100 , 100 , 100 ) } |
6 | TweenService:Create(PartA,Info,Table) -- I think it's the problem |
7 | end ) |
What happened?
Locked by User#24403
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?