|
| 17 Sep 2011 01:10 PM |
i keep tryin i duno y
for i = 50, 75 do for v = 75, 50 do script.Parent.Parent.Parent.MouseEnter:connect(function() script.Parent.Parent.Parent.Size = UDim2.new(0,i,0,50) end)
script.Parent.Parent.Parent.MouseLeave:connect(function() script.Parent.Parent.Parent.Size = UDim2.new(0,v,0,50) end end end)
|
|
|
| Report Abuse |
|
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 17 Sep 2011 01:12 PM |
script.Parent.Parent.Parent.MouseEnter:connect(function() for i = 50, 75 do script.Parent.Parent.Parent.Size = UDim2.new(0,i,0,50) end end)
script.Parent.Parent.Parent.MouseLeave:connect(function() for v = 75, 50, -1 do script.Parent.Parent.Parent.Size = UDim2.new(0,v,0,50) end end) |
|
|
| Report Abuse |
|
|
| |
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
| |
|
| |
|
Lowcart
|
  |
| Joined: 12 Sep 2011 |
| Total Posts: 1323 |
|
| |
|
| |
|
Lowcart
|
  |
| Joined: 12 Sep 2011 |
| Total Posts: 1323 |
|
| |
|