Skip to content

Commit cbb92e2

Browse files
authored
Update automate-right-to-erasure.md
1 parent ad8c8f6 commit cbb92e2

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

content/en-us/cloud/webhooks/automate-right-to-erasure.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,19 +126,33 @@ To obtain these identifiers, open the [Creations](https://create.roblox.com/dash
126126
After you finish setting up the webhook, bot, and API key for data stores, add them to the scripts that implement the bot's automation logic. The following example uses Python 3:
127127

128128
1. Install Python libraries using the following commands:
129+
<Tabs>
130+
<TabItem label="Guilded">
129131

130132
```bash title="Install Libraries"
131-
pip3 install discord
132133
pip3 install guilded.py==1.8.0
133134
pip3 install requests
134135
pip3 install urllib3==1.26.6
135136
```
136137

137-
1. Copy and save the following scripts corresponding to different parts of the bot logic in the same directory:
138+
</TabItem>
139+
140+
<TabItem label="Discord">
141+
142+
```bash title="Install Libraries"
143+
pip3 install discord
144+
pip3 install requests
145+
pip3 install urllib3==1.26.6
146+
```
147+
148+
</TabItem>
149+
150+
<Tabs>
151+
152+
2. Copy and save the following scripts corresponding to different parts of the bot logic in the same directory:
138153

139154
```python title="bot_config.py"
140-
DISCORD_BOT_TOKEN = ""
141-
GUILDED_BOT_TOKEN = ""
155+
BOT_TOKEN = ""
142156
OPEN_CLOUD_API_KEY = ""
143157
ROBLOX_WEBHOOK_SECRET = ""
144158

0 commit comments

Comments
 (0)