Here you go. The red plain is not set as a physics object and the white plain is. As soon as you uncomment the rotation command, the white plain becomes larger than the red plain.
set display mode 1024,768,32
autocam off
sync on
sync rate 60
position camera -100,100,-100
point camera 0,0,0
phy start
phy update 0
make object plain 1,50,50
color object 1,rgb(255,0,0)
position object 1,0,-10,10
make object plain 2,50,50
for x=1 to 2
scale object x,125,150,180
` rotate object x,270,0,0
next x
phy make rigid body static box 2
do
phy update 1
phy update 0
sync
loop