game.CoreGui.PurchasePromptApp.Enabled = false local FoundationOverlay = game.CoreGui:FindFirstChild("FoundationOverlay") if not FoundationOverlay then local connection connection = game.CoreGui.ChildAdded:Connect(function(ins) if ins.Name == "FoundationOverlay" then ins.Enabled = false connection:Disconnect() end end) else game.CoreGui.FoundationOverlay.Enabled = false end