|
| 06 Dec 2015 03:03 PM |
This is the script:
list = {"warlord436","Player1"};
script.Parent.Parent.ScreenGui.Frame.Visible = false
if game:FindFirstChild(list) then script.Parent.Parent.ScreenGui.Frame.Visible = true end
i want the gui to show up only if they're in the list |
|
|
| Report Abuse |
|
|
RymasterE
|
  |
| Joined: 11 Sep 2008 |
| Total Posts: 1418 |
|
|
| 06 Dec 2015 03:11 PM |
list = {"beefybigboys1996", "warlord436"} --define list of users we want
if list[game.Players.LocalPlayer.Name] ~= nil then --if the player is in our list --code else --if the player is NOT in our list script.Parent:Destroy() --destroy what the gui, change this depending on ancestory end |
|
|
| Report Abuse |
|
|
| |
|