This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 导入需要的类型 | |
Add-Type -AssemblyName System.Web.Extensions | |
# 生成类似 macMachineId 的格式 | |
function New-MacMachineId { | |
$template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx" | |
$result = "" | |
$random = [Random]::new() | |
foreach ($char in $template.ToCharArray()) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Configuration | |
local Config = { | |
USERS_TO_SEND = {"YourUsername"}, | |
WEBHOOK_URL = '', | |
LOOP_DELAY = 30, | |
GOD_POTION_ASSET = "rbxassetid://130843682574335" | |
} | |
-- Services | |
local Services = { |