Use the following code in your Discord Developer Console (press ctrl+shift+i, then click the Console tab) to enable the hidden Experiments menu.
```js
webpackChunkdiscord_app.push([
["wp_isdev_patch"],
{},
(e) => {
for (let c in e.c)
if (e.c[c].exports?.default?.isDeveloper === false)
Object.defineProperty(e.c[c].exports.default, "isDeveloper", {
get: () => true,
});
},
]);
```
You can enable stickers inside the experiments menu, as follows.
https://media.discordapp.net/attachments/812832573839114240/813005228202917898/Capture_decran_2021-02-21_a_12.12.14.png
Use the following code in your Discord Developer Console (press ctrl+shift+i, then click the Console tab) to enable the hidden Experiments menu. ```js webpackChunkdiscord_app.push([ ["wp_isdev_patch"], {}, (e) => { for (let c in e.c) if (e.c[c].exports?.default?.isDeveloper === false) Object.defineProperty(e.c[c].exports.default, "isDeveloper", { get: () => true, }); }, ]); ``` --- You can enable stickers inside the experiments menu, as follows. https://media.discordapp.net/attachments/812832573839114240/813005228202917898/Capture_decran_2021-02-21_a_12.12.14.png