-- Loader local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/UI-Interface/CustomFIeld/main/RayField.lua'))() local Window = Rayfield:CreateWindow({ Name = "Verny Hub Loader", LoadingTitle = "Verny Hub Loader", LoadingSubtitle = "by Verny", ConfigurationSaving = { Enabled = true, FolderName = nil, -- Create a custom folder for your hub/game FileName = "Verny Hub V2" }, Discord = { Enabled = true, Invite = "dwuSS95ecF", -- The Discord invite code, do not include discord.gg/ RememberJoins = true -- Set this to false to make them join the discord every time they load it up }, KeySystem = true, -- Set this to true to use our key system KeySettings = { Title = "Verny Hub Key", Subtitle = "Key System", Note = "Join the discord (discord.gg/dwuSS95ecF)", FileName = "VernyHubKeyPerm", SaveKey = true, GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = "NewWeekNewKeyTysmRogeIsHot" } }) local Tab = Window:CreateTab("Script Loader", 4483362458) -- Title, Image local Label = Tab:CreateLabel("Script is Loading Please Wait.") local Games = { [258258996] = "https://raw.githubusercontent.com/666dasdlolok/MinersHavenEarly/main/Main", -- Miners Haven [6918802270] = "https://raw.githubusercontent.com/666dasdlolok/PNW/main/Main", -- Project New World [6461766546] = "https://raw.githubusercontent.com/666dasdlolok/Ahs/main/Main", -- A Hero's Destiny [10446125875] = "https://raw.githubusercontent.com/666dasdlolok/AnimeFruitSim/main/Main", -- Anime Fruit Simulator [3177438863] = "https://raw.githubusercontent.com/666dasdlolok/DB/main/Main", -- Dragon Blox [4934471106] = "https://raw.githubusercontent.com/666dasdlolok/MHM/main/Main", -- My Hero Mania [11884594868] = "https://raw.githubusercontent.com/666dasdlolok/Anime-Defense/main/Main", -- Anime Defense Simulator [11885022882] = "https://raw.githubusercontent.com/666dasdlolok/Anime-Defense/main/Main", -- Anime Defense Simulator [3311165597] = "https://raw.githubusercontent.com/666dasdlolok/DBU/main/Main", -- Dragon Blox Ultimate [5151400895] = "https://raw.githubusercontent.com/666dasdlolok/DBU/main/Main", -- Dragon Blox Ultimate [10824616460] = "https://raw.githubusercontent.com/666dasdlolok/Sword-Slashers/main/Main", -- Sword Slashers [11746859781] = "https://raw.githubusercontent.com/666dasdlolok/BGC/main/Main", -- Bubble Gum Clicker [10925589760] = "https://raw.githubusercontent.com/666dasdlolok/MergeSim/main/Main", -- Merge Simulator [11542692507] = "https://raw.githubusercontent.com/666dasdlolok/AnimeSoul/main/Main", -- Anime Soul Simulator [11430505281] = "https://raw.githubusercontent.com/666dasdlolok/Anime-Weapon/main/Main", -- Anime Weapon Simulator [9380307595] = "https://raw.githubusercontent.com/666dasdlolok/PixelPieceTest/main/Main", -- Pixel Piece } if Games[game.PlaceId] then loadstring(game:HttpGet(Games[game.PlaceId]))() else Rayfield:Notify({ Title = "Verny Hub", Content = "Game is Not Supported!", Duration = 6.5, Image = 4483362458, Actions = { -- Notification Buttons Ignore = { Name = "Okay!", Callback = function() print("The user tapped Okay!") end }, }, }) end