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

Is there a method/event to see when the loading screen has dissapeared?

Asked by
Edenojack 171
7 years ago

I have a really small joke at the start of one of my games, but it is so quick it dissapears before you can actually see the game. Is there any way of seeing this?

1 answer

Log in to vote
0
Answered by 7 years ago

Put this in a Script

game.Players.PlayerAdded:connect(function(plr)
    if plr and plr.Character then
        --Clone the loading screen into PlayerGui
    end
end)
0
Ah, so custom loading it is then. Cheers! Edenojack 171 — 7y
Ad

Answer this question