-- add us on roblox vincentplayz9356 local coreGui = game:GetService("CoreGui") local avatarEditorPromptsApp = coreGui:WaitForChild("AvatarEditorPromptsApp") local function killPrompt(inst) if inst.Name == "PromptFrame" then inst:Destroy() end end for _, desc in ipairs(avatarEditorPromptsApp:GetDescendants()) do killPrompt(desc) end avatarEditorPromptsApp.DescendantAdded:Connect(killPrompt)