5. (Optional) Whitelist the panel
StacyPilot can be whitelisted, so only allowed users can save and play recordings. To do that, open the Settings
script and edit the Admins
setting. By default it looks like this:
Admins = { }
This indicates an empty whitelist, and an empty whitelist means that it's disabled entirely.
info
The whitelist is disabled by default.
You can add players to the whitelist by editing that setting. There are a couple rules you should follow when adding players:
- Each player's username should be in their own quotes
- Each username should be separated by a comma (,)
- You should use usernames, not display names
- Usernames are case-sensitive,
stacy
andSTACY
are not the same
For example, if you want to whitelist 3 players: gabys2005
, idezye
and GiorgioworldcupTEMP
, the setting would look like this:
Admins = { "gabys2005", "idezye", "GiorgioworldcupTEMP" }
tip
Roblox will show you orange or red lines in the code editor if you do something incorrectly here.