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

why wont this Gui script work?

Asked by 10 years ago

start= script.Parent function changeGui() start.visible = false wait(1) start.visible = true end game.Players.PlayerAdded:connect(changeGui)

this script is for when someone joins the game the gui doesnt show until one second after

1 answer

Log in to vote
0
Answered by 10 years ago
start= script.Parent
function changeGui()
    start.Visible = false
    wait(1)
    start.Visible = true

end
game.Players.PlayerAdded:connect(changeGui)


You did not make Visible Capital

0
ok thank you namelessassasin 30 — 10y
0
wait it still doesnt work, does it matter where i put the script? namelessassasin 30 — 10y
0
Well, what is "start". Whatever it is, just put it there. Tempestatem 884 — 10y
0
heres the heirachy, game> starterGui>ScreenGui>TextButton>Script namelessassasin 30 — 10y
Ad

Answer this question