local function LoadFromGitHub(url) local success, response = pcall(function() return game:HttpGet(url) end) if success then local runSuccess, runError = pcall(function() loadstring(response)() end) if not runSuccess then warn("❌ Script execution failed:", runError) end else warn("❌ Failed to fetch script:", response) end end local SupportedGames = { -- Arcade Basketball (1v1) [91654345256890] = "https://raw.githubusercontent.com/2xrW/Arcade-Basketball/refs/heads/main/Outback", -- Arcade Basketball (2v2) [92216849541624] = "https://raw.githubusercontent.com/2xrW/Arcade-Basketball/refs/heads/main/Outback", -- Arcade Basketball (Lobby) [134558434771720] = "https://raw.githubusercontent.com/2xrW/Arcade-Basketball/refs/heads/main/Outback", -- Arcade Basketball (Matchmaking) [130736793665498] = "https://raw.githubusercontent.com/2xrW/Arcade-Basketball/refs/heads/main/Outback", -- Basketball Legends [14259168147] = "https://raw.githubusercontent.com/2xrW/BL/refs/heads/main/return", -- Basketball Legends (5v5) [71832465156084] = "https://raw.githubusercontent.com/2xrW/BL/refs/heads/main/return", -- Basketball Legends (Custom Server) [17122385635] = "https://raw.githubusercontent.com/2xrW/BL/refs/heads/main/return", -- Basketball Legends (Park) [14386691987] = "https://raw.githubusercontent.com/2xrW/BL/refs/heads/main/return", -- Be A Parkour Ninja [147848991] = "https://raw.githubusercontent.com/2xrW/Be-A-Parkour-Ninja/refs/heads/main/Beta", -- Bite By Night [70845479499574] = "https://raw.githubusercontent.com/2xrW/bbn/refs/heads/main/outback", -- Blade Ball [13772394625] = "https://raw.githubusercontent.com/2xrW/.gg-returnhub/refs/heads/main/Blade-Ball", -- Blade Ball [Duels] [15144787112] = "https://raw.githubusercontent.com/2xrW/.gg-returnhub/refs/heads/main/Blade-Ball", -- Blade Ball [Dungeons] [16456370330] = "https://raw.githubusercontent.com/2xrW/.gg-returnhub/refs/heads/main/Blade-Ball", -- Blade Ball [New Players Server] [16281300371] = "https://raw.githubusercontent.com/2xrW/.gg-returnhub/refs/heads/main/Blade-Ball", -- Blade Ball [Training] [15234596844] = "https://raw.githubusercontent.com/2xrW/.gg-returnhub/refs/heads/main/Blade-Ball", -- Build A Boat For Treasure [537413528] = "https://raw.githubusercontent.com/2xrW/BaBFT/refs/heads/main/Outback", -- Dangerous Truck Driving [116094657599018] = "https://raw.githubusercontent.com/2xrW/DangerousTruckDriving/refs/heads/main/Beta", -- Escape Tsunami For Brainrots! [131623223084840] = "https://raw.githubusercontent.com/2xrW/ETFB/refs/heads/main/return", -- Escape Tsunami For Brainrots! (New Players) [86362492050446] = "https://raw.githubusercontent.com/2xrW/ETFB/refs/heads/main/return", -- Escape Tsunami For Brainrots! (New Players 2) [131623223084840] = "https://raw.githubusercontent.com/2xrW/ETFB/refs/heads/main/return", -- Evade [9872472334] = "https://raw.githubusercontent.com/2xrW/discordgg-returnhub/refs/heads/main/Evade", -- Fling Things and People [6961824067] = "https://raw.githubusercontent.com/2xrW/FTAP/refs/heads/main/return", -- Flood Escape 2 [738339342] = "https://raw.githubusercontent.com/2xrW/Fe2/refs/heads/main/outback", -- Flood Escape 2 (Community-Made Maps) [11951199229] = "https://raw.githubusercontent.com/2xrW/Fe2/refs/heads/main/outback", -- Flood Escape 2 (Retro) [12339127827] = "https://raw.githubusercontent.com/2xrW/Fe2/refs/heads/main/outback", -- Funky Friday [6447798030] = "https://raw.githubusercontent.com/2xrW/FunkyFriday/refs/heads/main/outback", -- Hoopz [6229116934] = "https://raw.githubusercontent.com/2xrW/67/refs/heads/main/67H", -- Hoopz Arena [89892874044551] = "https://raw.githubusercontent.com/2xrW/67/refs/heads/main/67H", -- K2 Climbing Simulator [124853293317687] = "https://raw.githubusercontent.com/2xrW/K2/refs/heads/main/Nixus", -- Motorcycle Mayhem [12533625712] = "https://raw.githubusercontent.com/2xrW/MotorCycleMayhem/refs/heads/main/BetaScript", -- Murder Mystery 2 [142823291] = "https://raw.githubusercontent.com/2xrW/gg-returnhub/refs/heads/main/Murderer-Mystery-2", -- MX World [135155039067698] = "https://raw.githubusercontent.com/2xrW/MXWorld/refs/heads/main/Beta", -- NBA Champions Basketball [101271234790940] = "https://raw.githubusercontent.com/2xrW/NCB/refs/heads/main/outback", -- NBA Champions Basketball (5v5) [106313794065284] = "https://raw.githubusercontent.com/2xrW/NCB/refs/heads/main/outback", -- Plants vs Brainrots [127742093697776] = "https://raw.githubusercontent.com/2xrW/discord-returnhub/refs/heads/main/Plants-VS-Brainrots", -- Prison Life [155615604] = "https://raw.githubusercontent.com/2xrW/PrisonLife/refs/heads/main/return", -- SharkBite 2 [8908228901] = "https://raw.githubusercontent.com/2xrW/returnhub/refs/heads/main/Sharkbite-2", -- The Strongest Battlegrounds [10449761463] = "https://raw.githubusercontent.com/2xrW/discord.gg-returnhub/refs/heads/main/The-Strongest-Battlegrounds", -- Unknown Threat [101055953340350] = "https://raw.githubusercontent.com/2xrW/NerdStopTrynnaSeeSrcLmao/refs/heads/main/ZopwawIsBigDaddyPleasePatchThis", -- Volleyball Legends [73956553001240] = "https://raw.githubusercontent.com/2xrW/ggreturnhub/refs/heads/main/Volleyball-Legends", } local PlaceId = game.PlaceId if SupportedGames[PlaceId] then print("✅ Supported game detected! Executing script for ID:", PlaceId) LoadFromGitHub(SupportedGames[PlaceId]) else warn("❌ Unsupported game ID:", PlaceId) warn("Join discord.gg/nhT3kA5zuE for support!") end