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

GUI Script Not Working?

Asked by 10 years ago
01NewGUI = game.StarterGui Instance.new("Frame")
02GUIClosed = false
03Frame = game.StarterGui.Frame
04 
05if GUIClosed == false then
06    NewGUI
07end
08 
09Frame.Name = "Frame"
10Frame.BackgroundColor3 = "255,255,255"
11Frame.BackgroundTransparency = "0"
12Frame.BorderColor3 = "0,0,0"
13Frame.BorderSizePixel = "2"
14Frame.Position = "{0,450},{0,10}"
15Frame.Size = "{0,100},{0,100}"

Not Working. I Run The Script Then Get Nothing, Please Help!

4 answers

Log in to vote
2
Answered by 10 years ago

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:

01local plr = game.Players.LocalPlayer;
02local folder = plr.PlayerGui;
03local thing = Instance.new("ScreenGui", folder);
04local Frame = Instance.new("Frame",thing);
05Frame.Name = "Frame";
06Frame.BackgroundColor3 = Color3.new(255,255,255);
07Frame.BackgroundTransparency = 0;
08Frame.BorderColor3 = Color3.new(0,0,0);
09Frame.BorderSizePixel = 2;
10Frame.Position = UDim2.new(0,450,0,10);
11Frame.Size = UDim2,new(0,100,0,100);
Ad
Log in to vote
0
Answered by
Xoqex 75
10 years ago

I found the error, it's a simple grammar typo.

1NewGUI = game.StarterGui Instance.new("Frame")

You didn't put a . between StarterGui and Instance.new

So it should be

1NewGUI = game.StarterGui.Instance.new("Frame")

It may work better if you do

1NewGUI = Instance.new("Frame", game.StarterGui)
0
Thanks Ill Test Now :) theawesome624 100 — 10y
0
Now I Get An Error Saying if GUIClosed == false then NewGUI end theawesome624 100 — 10y
0
'=' expected near 'end' theawesome624 100 — 10y
Log in to vote
0
Answered by 10 years ago
1NewGUI = Instance.new("Frame", game.StarterGui")
Log in to vote
0
Answered by 10 years ago

Change the script to "LocalScript" Problem solved.

Answer this question