UI Loading Screen not working. Why?
Hey there, I was working with making a UI loading screen when the text should move, but when I did it, the text was not moving. Here is all the code:
01 | local LoadingGui = script.Parent.Parent.Parent:WaitForChild( "LoadingGui" ) |
02 | local LoadingFrame = script.Parent.Parent:WaitForChild( "LoadingFrame" ) |
03 | local LoadingText = script.Parent:WaitForChild( "LoadingText" ) |
06 | LoadingText.Text = "Loading." |
08 | LoadingText.Text = "Loading.." |
10 | LoadingText.Text = "Loading..." |
12 | LoadingText.Text = "Loading" |
I don't know why it did not work, but help would be highly appreciated.
Thank you!