I tried making a loading screen and it does not work.
Script:
01 | game.ReplicatedFirst:RemoveDefaultLoadingScreen() |
02 |
03 | local playerGui = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ) |
04 | playerGui:SetTopBarTransparency( 0 ) |
05 |
06 | local gui = script.LoadingScreen:Clone() |
07 | gui.Parent = playerGui |
08 |
09 | wait( 3 ) |
10 |
11 | repeat wait( 0.5 ) until game:IsLoaded() |
12 |
13 | gui.Frame.LoadingText.Text = "Finished loading!" |
14 |
15 | gui.Frame:TweenPosition( |
SetTopBarTransparency is not a valid member of PlayerGui "Players.[PLR_NAME].PlayerGui" You should get rid of this line, the roblox doesn't support it anymore, you probably watched some outdated videos. It clearly says in a big red box here. Just try removing a line with this code. If you didn't knew, there was an actual topbar ui made by roblox, now it's gone.