local Size = SF.CanvasSize
print(Size.Y.Offset)
Size.Y.Offset = UI.AbsoluteContentSize.Y
I literally have no clue what’s happening here. Apparently, Offset doesn’t exist even though it was just printed? What is this Robloxian superposition?
local Size = SF.CanvasSize
print(Size.Y.Offset)
Size.Y.Offset = UI.AbsoluteContentSize.Y
I literally have no clue what’s happening here. Apparently, Offset doesn’t exist even though it was just printed? What is this Robloxian superposition?
You are mistaking UDim for UDim2.
UDim only has Scale and Offset
Sorry, I forgot to delete the post since I just fixed it.
SF.CanvasSize = UDim2.fromScale(0, UI.AbsoluteContentSize.Y)
Nevermind I can’t delete it, oh well
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.