[ad_1]
Created by MrBlobFish13
Features:
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/frames2")
local splitteddata = Split(data, "N")
for _,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 = "_" -- empty space
else
chara = "A" -- filled space
end
if currentd ~= 20 then
finalstring ..= chara
else
finalstring ..= "n" .. chara
currentd = 0
end
currentd += 1
end
print(finalstring)
spawn(function()
local args = {
[1] = finalstring,
[2] = "booth"
}
game:GetService("ReplicatedStorage").Events.EditBooth:FireServer(unpack(args))
end)
wait(0.1)
end
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]