of     1   

QuarterTerm
#141258230Wednesday, July 23, 2014 8:11 AM GMT

The code below works how it is scripted and all. However, It's not that really 'efficient'. I scripted this code so it would work in a club where it animates a volume bar going up and down, but it's really sloppy and looks like its just going up and down very roughly. NEED HELP ON TWEENING, FAST. LIKE PLEASE. NO VIEWS COME ON I NEED REPLIES AND HELP COME ON!!!!!!!!!!!! I want it to look like this: https://www.youtube.com/watch?v=UwIKF6Ji1fw But I don't know how. Can someone help me? while true do script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,500,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,300,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,600,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,720,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,250,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,800,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,150,0,600) wait(0.1) script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,90,0,600) wait(0.1) end You just got Quarter-Term'd
128GB
#141258710Wednesday, July 23, 2014 8:22 AM GMT

local Height = { 500, 300, 600, 720, 250, 800, 150 90 } while true do for _, H in pairs (Height) do script.Parent.SurfaceGui.Frame.Size = UDim2.new(0, H, 0, 600) wait(0.1) end end
128GB
#141258732Wednesday, July 23, 2014 8:23 AM GMT

local Height = { 500, 300, 600, 720, 250, 800, 150, 90 } *
QuarterTerm
#141377193Thursday, July 24, 2014 11:25 AM GMT

Not what I wanted, but just a little bit. I want it SMOOTH. If you try the code below it works perfectly how I want it, but it's just going up slowly. I want it to be fast going UP and DOWN like a volume bar in the video above. while true do for i=1,50,.1 do script.Parent.SurfaceGui.Frame.Size = UDim2.new(0,10*i,0,600) wait() end end You just got Quarter-Term'd
cheesecake123456
#141377313Thursday, July 24, 2014 11:28 AM GMT

ByDefault
#141380533Thursday, July 24, 2014 12:35 PM GMT

script.Parent.SurfaceGui.Frame:TweenSize(UDim2.new(0,10*i,0,600))
QuarterTerm
#141513745Friday, July 25, 2014 5:10 PM GMT

Doesn't work @mag You just got Quarter-Term'd
HuntHello
#141514062Friday, July 25, 2014 5:13 PM GMT

just search up tweeting in the wiki.

    of     1