Its a GUI that opens when a player joins the game and stays for 5 secounds. script here:
game.Players.PlayerAdded:connect(function (newPlayer) wait(0.01) a = script.MagicalGUI:Clone() a.Parent = newPlayer.PlayerGui wait(5) newPlayer.PlayerGui.MagicalGUI:Remove() end)
How can I get it to fill the entire screen?
Set your Frame
's size to {1, 0},{1, 0}
or in Lua UDim2.new(1, 0, 1, 0)
.
game.Players.PlayerAdded:connect(function (newPlayer) wait(0.01) a = script.Parent a.Visible=true wait(5) a.Visible=false end)
It's already in the player Starter GUI upon login.
(To Size it go to the size property in your GUI and change first and third value to 1)