|
| 13 Jan 2014 02:53 PM |
script.Parent.UDiM2 = UDiM2.new(0, 50, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, 40, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, 30, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, 20, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, 10, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, 0, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, -10, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, -20, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, -30, 0) wait(0.1) script.Parent.UDiM2 = UDiM2.new(0, -40, 0)
|
|
|
| Report Abuse |
|
|
|
| 13 Jan 2014 02:54 PM |
script.Parent.Position = UDim2.new(0, 20, 0, 0)
you must type as this |
|
|
| Report Abuse |
|
|
|
| 13 Jan 2014 03:33 PM |
Here's a more condensed version:
for i = 50,-40,-10 do script.Parent.UDim2 = UDim2.new(0, i, 0) end
|
|
|
| Report Abuse |
|
|
|
| 13 Jan 2014 04:17 PM |
Here's an even better one: script.Parent:TweenPosition(UDim2.new(0,-40,0,0),"Out","Quad",2)
By the way, the above one will not work since there are only 3 numbers and not 4. |
|
|
| Report Abuse |
|
|
|
| 13 Jan 2014 04:18 PM |
| lol he just pwned your for i = loop. |
|
|
| Report Abuse |
|
|