Trying to do the math of a asset loading bar, help?
So I am trying to make a bar that calculates how many assets in a table there are to load and then every asset the bar progresses the correct amount. How would I do this? Here is the script:
01 | game.Players.PlayerAdded:connect( function (plr) |
02 | local gui = script.Welcome:Clone() |
03 | gui.Parent = plr.PlayerGui |
04 | local sound = gui.Sound |
05 | repeat wait() until plr.Character |
06 | plr.Character:remove() |
09 | assets = { 147183919 , 131326340 , 154904310 } |
11 | for _, asset in ipairs (assets) do |
13 | local bar = gui.Background.Progress.Bar |
14 | gui.Background.Preload.Text = "Preloading asset " ..asset.. " (" ..asse.. "/" ..m.. ")" |
16 | bar.Size = UDim 2. new() |
20 | gui.Background.Preload.Text = "Done" |
22 | gui.Background.Preload.TextTransparency = gui.Background.Preload.TextTransparency + . 1 |
26 | gui.Background.Preload:remove() |
28 | gui.Background.Message.Visible = true |
31 | gui.Background.Secondary.Text.Visible = true |
34 | gui.Background.Secondary.NameG.Visible = true |
37 | gui.Background.Scripted.Text.Visible = true |
38 | gui.Background.Scripted.NameG.Visible = true |
42 | gui.Background.Message.TextTransparency = gui.Background.Message.TextTransparency + . 1 |
43 | gui.Background.Message.TextStrokeTransparency = gui.Background.Message.TextStrokeTransparency + . 1 |
44 | gui.Background.Secondary.NameG.TextTransparency = gui.Background.Secondary.NameG.TextTransparency + . 1 |
45 | gui.Background.Secondary.NameG.TextStrokeTransparency = gui.Background.Secondary.NameG.TextStrokeTransparency + . 1 |
46 | gui.Background.Secondary.Text.TextTransparency = gui.Background.Secondary.Text.TextTransparency + . 1 |
47 | gui.Background.Secondary.Text.TextStrokeTransparency = gui.Background.Secondary.Text.TextStrokeTransparency + . 1 |
48 | gui.Background.Scripted.Text.TextTransparency = gui.Background.Secondary.Text.TextTransparency + . 1 |
49 | gui.Background.Scripted.Text.TextStrokeTransparency = gui.Background.Secondary.Text.TextStrokeTransparency + . 1 |
50 | gui.Background.Scripted.NameG.TextTransparency = gui.Background.Secondary.Text.TextTransparency + . 1 |
51 | gui.Background.Scripted.NameG.TextStrokeTransparency = gui.Background.Secondary.Text.TextStrokeTransparency + . 1 |
55 | local gui = script.Welcome:Clone() |
56 | gui.Parent = plr.PlayerGui |
57 | gui.Background.Preload:remove() |
60 | gui.Background.BackgroundTransparency = gui.Background.BackgroundTransparency + . 01 |