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

Help with GUI?

Asked by 9 years ago

If I want to make a GUI just for one player, not local players, where should I put the script?Workspace, server storage? Also How am I able to put it only in my Player GUI not everyones?

1 answer

Log in to vote
0
Answered by
yumtaste 476 Moderation Voter
9 years ago

Technically this question isn't supposed to be on the site, since it's a request. But I'll help you anyway...

--in a LocalScript
local gui = script.Parent --in some GUI object, i'm not going to do everything for you

if game.Players.LocalPlayer.Name == "brokenrares" then
script.Parent.Visible = true
else
script.Parent.Visible = false
end
0
Thank you. brokenrares 48 — 9y
0
Please accept my answer if it's good yumtaste 476 — 9y
0
"game.Players.LocalScript" ??????? Perci1 4988 — 9y
0
@Perci1, I am wondering the same thing. Lacryma 548 — 9y
0
Omfg lol. I've just been typing so many answers today, I meant to put LocalPlayer XD yumtaste 476 — 9y
Ad

Answer this question