# you can loop through them like for i,v in prompts do if v==activePrompt then continue end v.Enabled = false end
# would this function work? local function enableallprompts() for i = 1, #prompts do prompts[i].Enabled = true end end```