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

If function is triggered more than once, after 20s of the first function they all disappear?

Asked by
Ben_B 9
4 years ago

Is there anyway to clone the gui to make it so it doesnt disappear? Here is the script:

01local statusDom = game.ReplicatedStorage.StatusDom
02local text = script.Parent.TextLabel
03servermusic = game.Workspace.Sounds.new_summer
04ding = game.Workspace.Sounds.Celebration
05 
06statusDom.Changed:Connect(function()
07script.Parent.Enabled = true
08text.Text = statusDom.Value
09wait(20)
10script.Parent.Enabled = false
11end)

Basically I would like to add a tween to the gui in future so they dont overlap, but say if the function istriggered three times, the second and third one 10 seconds after the original one. When the original UI has been on screen for 20 seconds they all disappear. Help?

1 answer

Log in to vote
0
Answered by
Ben_B 9
4 years ago
Edited 4 years ago

Ive tried this too and it hasnt worked:

01local statusDom = game.ReplicatedStorage.StatusDom
02local text = script.Parent.TextLabel
03servermusic = game.Workspace.Sounds.new_summer
04ding = game.Workspace.Sounds.Celebration
05 
06statusDom.Changed:Connect(function()
07local clone = script.Parent:Clone()
08clone.Parent = game.StarterGui
09clone.Enabled = true
10clone.TextLabel.Text = statusDom.Value
11wait(20)
12clone.Enabled = false
13end)
Ad

Answer this question