local placeId = game.PlaceId local games = { [17625359962] = { name = "Rivals", url = "https://gist.githubusercontent.com/RetroBlox-ops/d9d37f8099d5564446962e72a932e887/raw/701fb651ec8fc92d97c9661195ae1c5971b7bb87/singularityyes.lua" } } local gameData = games[placeId] if gameData then print(string.format( "[ LOADER ] game found : %s (%s)", gameData.name, placeId )) local success, result = pcall(function() return game:HttpGet(gameData.url) end) if success then print("[ LOADER ] loading script...") loadstring(result)() print("[ LOADER ] loaded") else warn("[ LOADER ] failed to fetch script") warn(result) end else warn(string.format( "[ LOADER ] unsupported game : %s", placeId )) end