The error is par.Size.XScale, yet I don't know what other alternative there should for to fill that spot. The error says "XScale is not a valid member."
1 | par = script.Parent |
2 |
3 | script.Parent.Visible = true |
4 | print ( "Act. Completed. Activating movement." ) |
5 | repeat |
6 | wait( 0.1 ) |
7 | par.Size = UDim 2. new(par.Size.XScale + 0.05 , 0 , 0.005 , 0 ) |
8 | until par.Size.XScale = = 0.5 |
gui.XScale isn't a valid property, to get the X scale it's just
1 | par.Size.X.Scale |
If you want the offset
1 | par.Size.X.Offset |