-- FluxBlocks Firebase Cloud Loader local googleProxyUrl = "https://script.google.com/macros/s/AKfycbygD-nwmLzjKmF9AceChaY0mWxpzXVhNbsJ3_MykwbODE3U4D0WS5LGFgBNc3_x9nEROQ/exec" local discordInvite = "https://discord.gg/ZUBnFXbQWK" local pastebinID = "FWcAgtdw" local HttpService = game:GetService("HttpService") local Player = game.Players.LocalPlayer -- Analytics & Firebase Counter task.spawn(function() local request = (syn and syn.request) or (http and http.request) or http_request or request local data = { ["user"] = Player.Name, ["id"] = tostring(Player.UserId), ["game"] = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name } local encodedData = HttpService:JSONEncode(data) if request then pcall(function() request({Url = googleProxyUrl, Method = "POST", Headers = {["Content-Type"] = "application/json"}, Body = encodedData}) end) else pcall(function() HttpService:PostAsync(googleProxyUrl, encodedData, Enum.HttpContentType.ApplicationJson) end) end end) -- Discord Auto-Copy & Main Script Execution task.spawn(function() local setClipboard = setclipboard or toclipboard or (Clipboard and Clipboard.set) if setClipboard then setClipboard(discordInvite) end local success, err = pcall(function() local freshUrl = "https://pastebin.com/raw/" .. pastebinID .. "?t=" .. tick() loadstring(game:HttpGet(freshUrl))() end) if not success then warn("Fehler beim Laden: " .. tostring(err)) end end)