local _ENV = (getgenv or getrenv or getfenv)() local BETA_VERSION = BETA_VERSION or _ENV.BETA_VERSION local Scripts = { { GameId = 994732206, UrlPath = if BETA_VERSION then "BLOX-FRUITS-BETA.lua" else "BloxFruits.luau" }, { PlacesIds = {10260193230}, UrlPath = "MemeSea.luau" } } local fetcher, urls = {}, {} do local last_exec = _ENV.rz_execute_debounce if last_exec and (tick() - last_exec) <= 5 then return nil end _ENV.rz_execute_debounce = tick() end urls.Owner = "https://raw.githubusercontent.com/tlredz/"; urls.Repository = urls.Owner .. "Scripts/refs/heads/main/"; urls.Translator = urls.Repository .. "Translator/"; urls.Utils = urls.Repository .. "Utils/"; do local executor = syn or fluxus local queueteleport = queue_on_teleport or (executor and executor.queue_on_teleport) if not _ENV.rz_added_teleport_queue and type(queueteleport) == "function" then local ScriptSettings = {...} local SettingsCode = "" _ENV.rz_added_teleport_queue = true local Success, EncodedSettings = pcall(function() return game:GetService("HttpService"):JSONEncode(ScriptSettings) end) if Success and EncodedSettings then SettingsCode = "unpack(game:GetService('HttpService'):JSONDecode('" .. EncodedSettings .. "'))" end local SourceCode = ("loadstring(game:HttpGet('%smain.luau'))(%s)"):format(urls.Repository, SettingsCode)