I'm getting errors while trying to tween stuff

I keep getting weird errors when trying to tween things it doesn’t really tell me what I need to fix so can someonepleasehelp me.

This is the script
local LogoTween = TweenService:Create(
ScreenUi:WaitForChild(“Logo”),
TweenInfo.new(1,Enum.EasingStyle.Quint,Enum.EasingDirection.InOut,0,false,0)
{Transparency = 1}
)

image

You forgot a comma so it’s trying to call the tween info with the table {Transparency = 1}

local LogoTween = TweenService:Create(
ScreenUi:WaitForChild(“Logo”),
TweenInfo.new(1,Enum.EasingStyle.Quint,Enum.EasingDirection.InOut,0,false,0),
{Transparency = 1}
)
1 Like