View difference between Paste ID: kSVpmCGg and p0Dnth2n
SHOW: | | - or go back to the newest paste.
1
-- USE THIS ONLY IF KRNL DOES NOT SUPPORT EMOJIS AND YES LINKS.
2
function update(text)--Start
3
    local args = {
4
        [1] = "Update",--text on booth
5
        [2] = {--decal
6
            ["DescriptionText"] = text,--intitial screen will be shown
7
            ["ImageId"] = 0--decal you want to add on your booth.
8
        }
9
    }
10
11
    game:GetService("ReplicatedStorage").CustomiseBooth:FireServer(unpack(args))--video loader
12
end
13
while true do
14-
    Response = game:HttpGet("http://localhost:8002")--host where uvicorn will get
14+
    Response = game:HttpGetAsync("https://media.discordapp.net/attachments/1032111522882789438/1165528718094110801/maintenace_jumpscare.gif?ex=65472e34&is=6534b934&hm=2de572e0732d354cbed152f8974a4724a9da1e9114c982e5e521887a172fa173&")--host where uvicorn will get
15
    coroutine.wrap(update)(Response)
16
end