repeat task.wait() until game:IsLoaded() local success, content = pcall(function() return game:HttpGet("https://raw.githubusercontent.com/NeusenceTheDev/menu.lua/refs/heads/main/mobileservice") end) if success and content then local func, err = loadstring(content) if func then func() else warn("Compilation error: " .. tostring(err)) end else -- Delta Native Request Fallback local req = (syn and syn.request) or (http and http.request) or request if req then local res = req({ Url = "https://raw.githubusercontent.com/NeusenceTheDev/menu.lua/refs/heads/main/mobileservice", Method = "GET" }) if res and res.Body then loadstring(res.Body)() end end end