Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Thanks for using this script
- This script is made by Joriangames/Problox Studio Scripts
- Want to know how to use this and script explanation?
- Watch my tutorial: https://youtu.be/zA5cZb46dFM
- ]]
- wait()
- local LoadingFrame = script.Parent.Background.Loading
- local insideFr = LoadingFrame.Inside
- local Text = LoadingFrame.Percentage
- for i = 1, 100, 1 do
- Text.Text = "Loading "..i.."%"
- local newSize = i/100
- insideFr:TweenSize(UDim2.new(newSize,0,1,0),Enum.EasingDirection.Out,Enum.EasingStyle.Quart, 0.1, true)
- print(insideFr.Size)
- if i == 56 then
- print("It's 56")
- wait(.1)
- end
- wait(.03)
- end
- wait(1)
- for i = 0,1.01,0.01 do
- LoadingFrame.BackgroundTransparency = i
- LoadingFrame.Percentage.TextTransparency = i
- script.Parent.Background.Title.TextTransparency = i
- script.Parent.Background.BackgroundTransparency = i
- insideFr.BackgroundTransparency = i
- Text.TextTransparency = i
- wait(0.01)
- end
Advertisement
Add Comment
Please, Sign In to add comment