I tried several ways and even researching, and I couldn't find the solution. Is there anyway to make that type of script?
--Part refers to your part, just swap it out with whatever you want local oldSize = Part.Size Part:GetPropertyChangedSignal("Size"):Connect(function() if Part.Size > oldSize then oldSize = Part.Size print("Text") end end)