loadstring(game:HttpGet("https://darahub.pages.dev/Module/ToastNotification.lua"))() getgenv().BaseURL = "https://raw.githubusercontent.com" getgenv().ScriptDirectory = "/Vraigos/Elderwyrm-Hub-X/refs/heads/main/Scripts/" ScriptGroups = { ["Evade/Overhaul.lua"] = { name = "Evade", placeIds = { 10324346056, -- Big Team 9872472334, -- Evade 10662542523, -- Casual 10324347967, -- Social Space 121271605799901, -- Player Nextbots 10808838353, -- VC Only 11353528705, -- Pro 99214917572799, -- Custom Servers } }, ["Evade/Legacy.lua"] = { name = "Legacy Evade", placeIds = {96537472072550} }, ["/Murder%20Mystery%202/Main.lua"] = { name = "Murder Mystery 2", placeIds = {142823291} } } UniversalScript = { name = "Universal Script", Unsupported = true } currentGameId = game.PlaceId selectedFilename = nil gameFound = false for filename, group in pairs(ScriptGroups) do for _, placeId in ipairs(group.placeIds) do if currentGameId == placeId then selectedFilename = filename gameFound = true if group.Unsupported then getgenv().NotifyToast({ title = "ERROR!", content = "YOUR Game is Unsupported", duration = 8, icon = "X", iconColor = "#FF0000", callback = function() end }) return elseif group.ComingSoon then getgenv().NotifyToast({ title = "Wait!", content = "Coming soon! Please be patient :)", duration = 8, icon = "clock", }) return end break end end if selectedFilename then break end end if not gameFound then if UniversalScript.Unsupported then getgenv().NotifyToast({ title = "Error!", content = "YOUR Game is Unsupported", duration = 8, icon = "X", iconColor = "#FF0000", callback = function() end }) return end end if selectedFilename then loadstring(game:HttpGet(BaseURL .. ScriptDirectory .. selectedFilename))() end