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

How do I make a GUI that only I can see?

Asked by 10 years ago

I'm wondering how to make a GUI that only I can see when I join a server. I've seen other games where the creator says they have a GUI open but nobody else can open it, I'm wondering how to do that.

2 answers

Log in to vote
0
Answered by
reaper5 10
10 years ago
game.Players.PlayerAdded:connect(function(Visible)
if Visible.Name==("reaper5") then
game.Players[Visible.Name].PlayerGui.GUI.Gui.Visible=true
end
end)

(didn't test lol may be broke in some way)

0
V while true do without a wait() is a disaster waiting to happen @Hybric's script. reaper5 10 — 10y
Ad
Log in to vote
0
Answered by
Hybric 271 Moderation Voter
10 years ago

Make a ScreenGui into StarterGui. Then Insert a Frameinto StarterGui, then a TextButtoninto the Frame. then insert a Script into TextButton MAKE FRAME NOT VISIBLE

Then type this into the script:

while true do
if script.Parent.Parent.Parent.Parent.Parent.Name == "titan111" then
script.Parent.Parent.Visible = true
else
script.Parent.Parent.Visible = false
end
end

PM Hybric if it works or not.

Answer this question