local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Delta Executor Script", LoadingTitle = "Loading Security...", LoadingSubtitle = "by Gemini", ConfigurationSaving = { Enabled = true, FolderName = "DeltaScript", -- Create a custom folder for your hub/game FileName = "HubConfig" }, KeySystem = true, -- Set this to true to use the key system KeySettings = { Title = "Key System", Subtitle = "Enter the correct key to proceed", Note = "The key is: 123Mitko", -- You can change this note FileName = "Key", -- The script will save the key in this file SaveKey = true, -- The user won't have to re-enter the key next time GrabKeyFromSite = false, -- If you want to use a raw pastebin link for the key, set to true Key = {"123Mitko"} -- This is the actual key } }) -- Once the key is entered correctly, the rest of the script loads: local MainTab = Window:CreateTab("Main Hacks", 4483362458) -- Title, Image ID local Section = MainTab:CreateSection("Player Tweaks") Rayfield:Notify({ Title = "Success!", Content = "Script loaded successfully.", Duration = 5, Image = 4483362458, }) -- Example Button MainTab:CreateButton({ Name = "Infinite Jump", Callback = function() -- Logic for infinite jump goes here print("Infinite Jump Activated") end, }) -- Example Slider MainTab:CreateSlider({ Name = "WalkSpeed", Range = {16, 300}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "Slider1", Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value end, })