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

How do i make a local gui not reappear on reset?

Asked by 6 years ago
Edited 6 years ago

There is case opener that i want go every 24 hrs but not everytime you reset how to i make that so

while wait() do
    if game.Workspace.AlreadyGone == 1 then
    game.StarterGui.ScreenGui:Destroy()
    end
    end

After the other script is done it does change the value to 1 i checked

0
do you have a script showing that you tried to make it? Houlardy642 28 — 6y
0
oh yes ANDREW50060 1 — 6y
0
fi added ot ANDREW50060 1 — 6y

2 answers

Log in to vote
0
Answered by
kaemi 21
6 years ago

Hey ANDREW50060 To Prevent the Gui From Copying on reset

Please Uncheck Reset on spawn So You cannot see it!

Ad
Log in to vote
0
Answered by
tek_o 56
6 years ago
plant = game.StarterGui.ScreenGui
plant.Visible = true
wait(10)
plant:Destroy()
end
0
Nope :( ANDREW50060 1 — 6y
0
You need to adapt it to your own game, that’s just my example. tek_o 56 — 6y
0
ok? idk how that helps me cuz i have basically the exact same thing ANDREW50060 1 — 6y

Answer this question