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

How can I check and only show a gui if its the first time a player joined the game? [closed]

Asked by 4 years ago

The title says it all. I wanna know how I can check if its the first time a player plays the game and ONLY shows a GUI if they are.

0
this is not a script request site Gameplayer365247v2 1055 — 4y

Closed as Not Constructive by Gameplayer365247v2, killerbrenden, and Xapelize

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 4 years ago

the first time they join add them to a list then make it so that list doesn't show gui like this

-your function for adding to list maybe called add list-
playeradded:connect("addlist")
x = player.name:find (in my list)
if x then
    gui.disable
else:
    show gui

replace some of the things i wrote because they might not be uppercase or proper syntax

Ad