01 | NewGUI = game.StarterGui Instance.new( "Frame" ) |
02 | GUIClosed = false |
03 | Frame = game.StarterGui.Frame |
04 |
05 | if GUIClosed = = false then |
06 | NewGUI |
07 | end |
08 |
09 | Frame.Name = "Frame" |
10 | Frame.BackgroundColor 3 = "255,255,255" |
11 | Frame.BackgroundTransparency = "0" |
12 | Frame.BorderColor 3 = "0,0,0" |
13 | Frame.BorderSizePixel = "2" |
14 | Frame.Position = "{0,450},{0,10}" |
15 | Frame.Size = "{0,100},{0,100}" |
Not Working. I Run The Script Then Get Nothing, Please Help!
Actually, there are more issues than previously stated. First off, the GUI must be created in each player's > PlayerGui , not the > StarterGui . Another error, the > Frame will not be visible unless in a > ScreenGui . For example, you can put this in a LocalScript:
01 | local plr = game.Players.LocalPlayer; |
02 | local folder = plr.PlayerGui; |
03 | local thing = Instance.new( "ScreenGui" , folder); |
04 | local Frame = Instance.new( "Frame" ,thing); |
05 | Frame.Name = "Frame" ; |
06 | Frame.BackgroundColor 3 = Color 3. new( 255 , 255 , 255 ); |
07 | Frame.BackgroundTransparency = 0 ; |
08 | Frame.BorderColor 3 = Color 3. new( 0 , 0 , 0 ); |
09 | Frame.BorderSizePixel = 2 ; |
10 | Frame.Position = UDim 2. new( 0 , 450 , 0 , 10 ); |
11 | Frame.Size = UDim 2 ,new( 0 , 100 , 0 , 100 ); |
I found the error, it's a simple grammar typo.
1 | NewGUI = game.StarterGui Instance.new( "Frame" ) |
You didn't put a . between StarterGui and Instance.new
So it should be
1 | NewGUI = game.StarterGui.Instance.new( "Frame" ) |
It may work better if you do
1 | NewGUI = Instance.new( "Frame" , game.StarterGui) |