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

Pop Up GUI?

Asked by 10 years ago

Can somebody provide me the script to put in the brick that pops up a GUI for 5 seconds saying "Level 1" if you provided an explenation with it that would be great.

1 answer

Log in to vote
0
Answered by 10 years ago

Errors: *You need to put the gui in Replicated Storage *

By brick do you mean the spawn in obbies?

This script might work:

function onTouched()
game.ReplicatedStorage.Gui.Visible = true
wait(5)
game.ReplicatedStorage.Gui.Visible = false
end

script.Parent.Touched:connect(onTouched)

Note: At "Touched", that code might be wrong, and must be changed.

Also, i'm a beginner scripter.

Ad

Answer this question