Im trying to make a line tween under some text for an inventory gui, but for some reason I cant see the line in game no matter what I do, the tween is working fine and the positions and size I use are valid. Here is what its supposed to look like with the sizes and position from the tweens:
But in game this happens:
https://gyazo.com/9cb2a39a16df8ce613410454e1560e5d
I honestly have no idea why, is it because of the ui gradient? I tried disabling the ui gradient but it changed nothing.
I have tried both of these:
game:GetService("TweenService"):Create(invLine, TweenInfo.new(invLineTweenTime), {Position = UDim2.new(444, 0, 0.669, 0)}):Play()
game:GetService("TweenService"):Create(invLine, TweenInfo.new(invLineTweenTime), {Size = UDim2.new(0, 156, 0, 1)}):Play()
invLine:TweenPosition(UDim2.new(44, 0, 0.669, 0),"Out", "Quad", 0.7)
invLine:TweenSize(UDim2.new(0, 156, 0, 1),"Out", "Quad", 0.7)
TweenSize is the only thing that has worked, tweenposition has no affect.