local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "project cvy", Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). LoadingTitle = "project cvy (beta)", LoadingSubtitle = "by xeil", Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes DisableRayfieldPrompts = false, DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface ConfigurationSaving = { Enabled = true, FolderName = nil, -- Create a custom folder for your hub/game FileName = "Big Hub" }, Discord = { Enabled = false, -- Prompt the user to join your Discord server if their executor supports it Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD 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 = "hi niger", Subtitle = "Key System", Note = "too lazy for add note :fire:", -- Use this to tell the user how to get a key FileName = "put key here", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from Key = {"iminsideyourwalls"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22") } }) Rayfield:Notify({ Title = "hi bitch", Content = "", Duration = 6.5, Image = 4483362458, }) local Tab = Window:CreateTab("mm2", 4483362458) -- Title, Image local playerTab = Window:CreateTab("ETC", 4483362458) -- Title, Image local Divider = Tab:CreateDivider() local Button = Tab:CreateButton({ Name = "AFEM", Callback = function() loadstring(game:HttpGet("https://yarhm.mhi.im/scr?channel=afem", false))() end, }) local Slider = playerTab:CreateSlider({ Name = "WalkSpeed Slider", Range = {0, 500}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value) end, }) local Button = Tab:CreateButton({ Name = "VAPEV4", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))() -- The function that takes place when the button is pressed end, }) local Button = Tab:CreateButton({ Name = "overdrive h", Callback = function() ODH_KEY = "" -- if you are a free user, enter your key here to auto validate. loadstring(game:HttpGet("https://api.overdrivehub.xyz/v1/auth"))() -- The function that takes place when the button is pressed end, }) local Button = Tab:CreateButton({ Name = "fly gui", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))() -- The function that takes place when the button is pressed end, }) local Button = Tab:CreateButton({ Name = "XHUB", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Au0yX/Community/main/XhubMM2"))() -- The function that takes place when the button is pressed end, })