In my script I have it check if the textlabel size is at a certain amount however it is saying that UDim2 is not a valid member of UDim2? How can I check to see if my Textlabel is the size I want it to be before it does something? It is a local script.
1 | local x = 3 |
2 | local cow = ( "x/100,9,0,23" ) |
3 | wait( 0.01 ) |
4 | if script.Parent.Size.UDim 2 < = script.Parent.Size.cow then |
5 | print ( "Works" ) |
6 | end |
Try changing it to if script.Parent.Size rather than script.Parent.Size.UDim2 like this
1 | local x = 3 |
2 | local cow = ( "x/100,9,0,23" ) |
3 | wait( 0.01 ) |
4 | if script.Parent.Size < = UDim 2. new(put udim 2 stuff here) then |
5 | print ( "Works" ) |
6 | end |