|
| 09 Aug 2015 10:34 AM |
Here's the code I have:
script.Parent.Gui1:TweenPosition(UDim2.new(0, 0, 0, 0)) script.Parent.Gui2:TweenPosition(UDim2.new(0, 5, 0, 5))
It tweens Gui1 first and then Gui2
How do I make it so both of them tween at the same time?
thanks in advance! |
|
|
| Report Abuse |
|
|
| |
|
|
| 09 Aug 2015 10:39 AM |
| Are are aware that, your tweening won't work. |
|
|
| Report Abuse |
|
|
|
| 09 Aug 2015 10:39 AM |
local hi = coroutine.wrap(function() script.Parent.Gui1:TweenPosition(UDim2.new(0, 0, 0, 0)) end)
local ho = coroutine.wrap(function() script.Parent.Gui2:TweenPosition(UDim2.new(0, 5, 0, 5)) end)
hi() ho() |
|
|
| Report Abuse |
|
|
|
| 09 Aug 2015 10:40 AM |
| @mkof lmao noob it worked just fine |
|
|
| Report Abuse |
|
|
| |
|