The Booth Plaza Script | PLAY BAD APPLE

Created by MrBlobFish13

Features:

  • PLAY BAD APPLE

what bad apple is: https://www.youtube.com/watch?v=FtutLA63Cp8

function update(text)
    local args = {
        [1] = "Update",
        [2] = {
            ["Decoration"] = "Select from dropdown",
            ["Text"] = text,
            ["Icon"] = "54678548734583425687546874587453635436778",
            ["Colour"] = "Select from dropdown"
        }
    }
    
    game:GetService("ReplicatedStorage").Booth:FireServer(unpack(args))
end

function Split(s, delimiter)
   result = {};
   for match in (s..delimiter):gmatch("(.-)"..delimiter) do
       table.insert(result, match);
   end
   return result;
end

local data = game:HttpGet("https://smhreplitissotrashathandlingtonsoffileswhydoievenuseit.nexitysecond.repl.co/frames3")
local splitteddata = Split(data, "N")

for fhnrteyrtnhi,line in pairs(splitteddata) do
   local finalstring = ""
   local currentd = 0
   for i=1, #line do
       local chara = ""
       --print("Chara " .. string.sub(line, i, i))
       if string.sub(line, i, i) == "A" then
           chara = "<img src="https://s.w.org/images/core/emoji/13.1.0/72x72/26ab.png" alt="⚫" class="wp-smiley" style="height: 1em;max-height: 1em" />"
       else
           chara = "<img src="https://s.w.org/images/core/emoji/13.1.0/72x72/26aa.png" alt="⚪" class="wp-smiley" style="height: 1em;max-height: 1em" />"
       end
       if currentd ~= 50 then
           finalstring ..= chara
       else
           finalstring ..= "n" .. chara
           currentd = 0
       end
       currentd += 1
   end
   print(finalstring)
   update(finalstring)
   wait(.1)
end