So Basically I Want My Screen GUI To Disappear After The Wait Time. It Works Only Once Then Stops. I Am Not Sure How To Fix This. Here Is My Current Script RN.
01 | local db = false |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if not db then |
05 | db = true |
06 | local plr = game.Players:GetPlayerFromCharacter(hit.Parent) |
07 | local h = hit.Parent:FindFirstChild( "Humanoid" ) |
08 | if plr and h then |
09 | if plr.leaderstats.Endurance.Value < 250 then |
10 | script.AcidGui:Clone().Parent = plr.PlayerGui |
11 | wait( 2.5 ) |
12 | plr.PlayerGui.AcidGui.Enabled = false |
13 | end |
14 | end |
15 | wait( 2.5 ) |
16 | db = false |
17 | end |
18 | end ) |
You need to Local the clone of AcidGui, because in Line 12 you are referring to the original "AcidGui" and not the cloned one Try something like this, ON LINE 10:
1 | Local ClonedAcidGui = script.AcidGui:Clone() |
2 | ClonedAcidGui.Parent = plr.PlayerGui |
3 | wait( 2.5 ) |
4 | ClonedAcidGui:Remove() |