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

How can you make a GUI cover the whole screen?

Asked by 9 years ago

How can you make a GUI cover the whole screen

1 answer

Log in to vote
0
Answered by
SurVur 86
9 years ago

Frame.Size = UDim2.new(1, 0, 1, 0)

if you want to take into account of that pesky topbar:

Frame.Position = UDim2.new(0, 0, 0, -36) Frame.Size = UDim2.new(1, 0, 1, 36)

Ad

Answer this question