script.Parent.Position.X.Scale = script.Parent.Position.X.Scale - .01
It says I cannot set the scale. I'm not quite sure why not.
You can only set the top-level element of a complex property, not the individual components.
script.Parent.Position = UDim2.new(script.Parent.X.Scale - .01, script.Parent.X.Offset, script.Parent.Y.Scale, script.Parent.Y.Offset)