That only moves things in a time. You mus strech it. Tween position: Moves it smoothly to an x,y,z value. Size: i think you knope,.
GuiObject:TweenPosition (DeveloperRelations.roblox.com)
feel free to check that
edit: i recommend ALWAYS checking developer.roblox.com before posting a question here,
Using logic giving within this post I made my loading screen
for i = 1,1 do
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading"
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading ."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading .."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading ..."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading"
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading ."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading .."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading ..."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading"
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading ."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading .."
wait(0.25)
script.Parent.Loadin1.Main.Text = "Loading ..."
wait(0.25)
script.Parent.Loadin1.BarHolder.MainBar:TweenSize(UDim2.new(0, 486, 0, 58), "Out", "Linear", 5, true)
wait(5)
end
wait(0.25)
script.Parent.Loadin1.Main.Text = "Game Loaded"
wait(0.25)
script.Parent.Loadin1:TweenPosition(UDim2.new(40, 0, 0, 0), "Out", "Linear", 10, true)
wait(0.5)
script.Parent.Parent.Welcome1.Enabled = true
1 Like