Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Trying to do the math of a asset loading bar, help?

Asked by
hudzell 238 Moderation Voter
10 years ago

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:

01game.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()
07    wait(3)
08    wait(.2)
09    assets = {147183919,131326340,154904310}
10    asse = 1
11    for _, asset in ipairs(assets) do
12        local m = #assets
13        local bar = gui.Background.Progress.Bar
14        gui.Background.Preload.Text = "Preloading asset "..asset.." ("..asse.."/"..m..")"
15        game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=" .. asset)
View all 64 lines...

1 answer

Log in to vote
0
Answered by
Nickoakz 231 Moderation Voter
10 years ago

Could this be your code?

1for num, asset in ipairs(assets) do
2        local m = #assets
3        local bar = gui.Background.Progress.Bar
4        gui.Background.Preload.Text = "Preloading asset "..asset.." ("..num.."/"..m..")"
5        game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=" .. asset)
6        bar.Size = UDim2.new(a/num,0,1,0) --Try it?
7        wait(.3)
8    end

This is not your answer, but I just can't stop looking at that nasty code you had..

01for i = 0,1,.1 do
02    gui.Background.Message.TextTransparency = i
03    gui.Background.Message.TextStrokeTransparency = i
04    gui.Background.Secondary.NameG.TextTransparency = i
05    gui.Background.Secondary.NameG.TextStrokeTransparency = i
06    gui.Background.Secondary.Text.TextTransparency = i
07    gui.Background.Secondary.Text.TextStrokeTransparency = i
08    gui.Background.Scripted.Text.TextTransparency = i
09    gui.Background.Scripted.Text.TextStrokeTransparency = i
10    gui.Background.Scripted.NameG.TextTransparency = i
11    gui.Background.Scripted.NameG.TextStrokeTransparency = i
12    wait(.1)
13end
0
Thanks! I used both of the code you provided, the math was a bit wrong thought, I did num/m instead of a/num hudzell 238 — 10y
Ad

Answer this question