I am trying to make a type of GUI Murder Mystery 2 (MM2) Has, but I cannot do it because everything I try doesn't work. I've tried this chunk of code, but it doesn't print he "left of" part, and skips to "All assets loaded!". Is ContentProvider depreciated?
1 | local cp = game:GetService( "ContentProvider" ) |
2 | local totalassets = cp.RequestQueueSize |
3 |
4 | while cp.RequestQueueSize > 0 do |
5 | print (cp.RequestQueueSize .. " left of " .. totalassets .. " assets remaining..." ) |
6 | wait() |
7 | end |
8 |
9 | print ( "All assets loaded!" ) |
So if you want you can do this but it won't really show how much assets there are.
01 | game.ReplicatedFirst:RemoveDefaultLoadingScreen() |
02 |
03 | local PlayerGui = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ) |
04 | PlayerGui:SetTopbarTransparency ( 0 ) |
05 |
06 | local GUI = script [ 'Whatever the name of the gui is" ] :Clone() |
07 | GUI.Parent = PlayerGui |
08 |
09 | repeat wait( 1 ) until game:IsLoaded() |
10 | GUI.Frame:TweenPosition(UDim 2. new( 0 , 0 , 1 , 0 ), "InOut" , "Sine" , 0.5 ) |
11 | wait( 0.5 ) |
12 | GUI:Destroy() |
Hope this helped. (:
Btw Tween position is not really needed it just adds a cool effect before being destroyed.