Hi, I have a webhook script. It only works when I’m in-game or testing in studio. I’m wondering if there’s any way I can run it without being on my computer 24/7. Here’s the script:
local url = "test" --- I didn't want to leak the webhook
local h = game:GetService("HttpService")
while true do
local badge = math.random(2124451678, 2124451678) ---Insert Random Numbers Here
local data = {
['embeds'] = {{
['title'] = "Badge Bot",
['description'] = "https://roblox.com/badges/"..badge,
['color'] = 6008455,
}}
}
local finaldata = h:JSONEncode(data)
h:PostAsync(url, finaldata)
wait(100)
end
If there’s some sort of website that allows me to run this script, please let me know. I’m not 100% sure it’s possible. Thanks.