I randomly temporarily lost access to my game and now my VFX script is acting wierd, it says “TweenInfo.new third argument expects Enum.EasingDirection input”. Ive never seen this bcause if you leave easingdirection blank it doesnt give an error. I gave it an easing direction and it still doesnt work? it still just gives the error.
local Event = game.ReplicatedPickle:WaitForChild("CollectCoinStreakGUI")
local FadeTween1 = game.TweenService:Create(script.Parent.CoinsCollectedAdd, TweenInfo.new(0,.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {TextTransparency = 1})
local FadeTween2 = game.TweenService:Create(script.Parent.CoinsCollectedAdd.UIStroke, TweenInfo.new(2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {Transparency = 1})
Im not sure whats wrong. Ive never had this issue with tweens.