when i use this script the text is not changoing the screen gui is not being enbaled why? here's the script
if IsTyping then return end
if input.KeyCode == Enum.KeyCode.E then
local textUI = game.StarterGui.ScreenGui
local text = textUI.TextButton
task.wait(3)
textUI.Enabled = true
text.Text = ("Cursed Technique Reversal: Red")
print(1)
task.wait(3)
text.Text = ("Cursed Technique Amplification: Blue")
print(2)
task.wait(5)
text.Text = ("Hollow...")
print(3)
task.wait(3.1)
text.Text = ("Purple")
print(4)
task.wait(2)
textUI.Enabled = false
end
end)