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

How To Make Screen GUI Appear When Touching Object And Then Disappear After 2.5 Seconds?

Asked by 4 years ago
Edited 4 years ago

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.

01local db = false
02 
03script.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
18end)

1 answer

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

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:

1Local ClonedAcidGui = script.AcidGui:Clone()
2ClonedAcidGui.Parent = plr.PlayerGui
3wait(2.5)
4ClonedAcidGui:Remove()
0
I just edited it, copy it again benjinanas 50 — 4y
0
I Really Appreciate It, This Took Me Nearly 10 Hours To Do. And Your Answer Was The Only Correct One I Could Find Proskillez342 9 — 4y
Ad

Answer this question