I am trying to make something where there is a message that should show, But when it is meant to show up, Its not showing and it just continues to the other stuff scripted without any GUI coming up
Here is the current script I’m using so it can show up
(It is located in “StarterGUI”
Enabled = true
while Enabled do
if game.Workspace.CoreEvents.Reactor_Ignition.Disabled == false and game.Workspace.CoreEvents.Reactor_Ignition.GUIEnabled.Value == true then
wait(2)
script.Parent.Frame.Sign.Script_BackFade.Disabled = false
script.Parent.Frame.Sign.Script_TextFade.Disabled = false
wait(2.5)
script.Parent.Frame.Sign.Script_Typewrite.Disabled = false
script.Parent.Frame.Sign.Script_TextFade.Disabled = true
script.Parent.Frame.Sign.Script_BackFade.Disabled = true
wait(3)
script.Parent.Frame.Sign.Script_BackFadeOut.Disabled = false
script.Parent.Frame.Sign.Script_TextFadeOut.Disabled = false
wait(2)
script.Parent.Frame.Sign.Script_BackFadeOut.Disabled = true
script.Parent.Frame.Sign.Script_TextFadeOut.Disabled = true
Enabled = false
end
wait()
end
This isnt the first time this happened, I always had this problem, So if someone can help me, Then that would be amzing