local url = "https://raw.githubusercontent.com/BaconHub1/Autoupdate/refs/heads/main/Cuz%20yes" local req = request or http_request or (syn and syn.request) local data if req then local res = req({ Url = url, Method = "GET" }) if res and res.Body then data = res.Body end else pcall(function() data = game:HttpGet(url) end) end if data then loadstring(data)() else warn("Failed to load BaconHub script.") end