If function is triggered more than once, after 20s of the first function they all disappear?
Is there anyway to clone the gui to make it so it doesnt disappear? Here is the script:
01 | local statusDom = game.ReplicatedStorage.StatusDom |
02 | local text = script.Parent.TextLabel |
03 | servermusic = game.Workspace.Sounds.new_summer |
04 | ding = game.Workspace.Sounds.Celebration |
06 | statusDom.Changed:Connect( function () |
07 | script.Parent.Enabled = true |
08 | text.Text = statusDom.Value |
10 | script.Parent.Enabled = false |
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?