20:33:19.872 - Workspace.Lets Tween about that.Script:6: Expected ')' (to close '(' at line 2), got 'Enum'
local Part = script.Parent local TweeningInfo = TweenInfo.new( 5, Enum.EasingStyle.Bounce Enum.EasingDirection.Out 10, true, 2 ) local PartProperties = { Size = Vector3.new(50,50,50) Color = Color3.fromRGB(120,50,65) } local Tween = Tweenservice:Create(Part,TweeningInfo,PartProperties) Tween:Play
I watched an alvinblox video to get a Jist of it
Look at your error. See the number 6? That means that there is an error on line 6 or near it. We can see above line 6, there is no comma after the easing style. There needs to be a comma after every value in the tween info, excepting the last one.
Also, Tween:Play will error as well. It should be written as Tween:Play(). Notice the parentheses.
Below is code corrected for all errors:
local Part = script.Parent local Tweenservice = game:GetService('TweenService') local TweeningInfo = TweenInfo.new( 5, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out, 10, true, 2 ) local PartProperties = { Size = Vector3.new(50,50,50), Color = Color3.fromRGB(120,50,65) } local Tween = Tweenservice:Create(Part,TweeningInfo,PartProperties) Tween:Play()