I have this line of code:
while wait(0.01)do second.Rotation = second.Rotation -1 third.Size.X.Scale = UDim2.new(third.AbsoluteSize.X + 0.002,0,0.05,0) end
and when i play it says:
Scale cannot be assigned to
PLZ can i have a solution cause i tried a lot of things!
All attributed of Size
are read-only values. You may manipulate the Size completely, or not at all - you can't individually maniulate values of the size.
while wait(0.01)do second.Rotation = second.Rotation -1 third.Size = third.Size + UDim2.new(0.002,0,0.05,0) end