-- LOAD RAYFIELD local Rayfield = loadstring(game:HttpGet( "https://sirius.menu/rayfield" ))() -- WINDOW WITH KEYSYSTEM ENABLED local Window = Rayfield:CreateWindow({ Name = "FLUX Z", LoadingTitle = "FLUX Z", LoadingSubtitle = "Rayfield Template", ConfigurationSaving = { Enabled = true, FolderName = "FluxZ", FileName = "MainConfig" }, Discord = { Enabled = false }, KeySystem = true, -- Enable the key system KeySettings = { Title = "FLUX Z Key System", Subtitle = "Enter your key", Note = "find key at description", FileName = "KeySettings", SaveKey = true, Key = "FREE_JFJEUEUHDKJDEIUFIEJEJEJE8777" -- } }) -- MAIN TAB local MainTab = Window:CreateTab("🏠 Main", 4483362458) -- SERVICES local ReplicatedStorage = game:GetService("ReplicatedStorage") local remote = ReplicatedStorage:WaitForChild("events"):WaitForChild("RemoteFunction_season") -- CLAIM FUNCTION local function claimLevel(level) local args = { "getReward", { category = "Season pass", level = level } } for i = 1, 1000000000000 do local success, result = pcall(function() return remote:InvokeServer(unpack(args)) end) if success then print("Reward claimed (Level "..level.."):", result) else warn("Failed (Level "..level.."):", result) end task.wait(0.1) end end -- BUTTONS MainTab:CreateButton({ Name = "Diamonds", Callback = function() claimLevel(6) end }) MainTab:CreateButton({ Name = "Coins", Callback = function() claimLevel(5) end }) -- SETTINGS TAB local SettingsTab = Window:CreateTab("⚙ Settings", 4483362458) SettingsTab:CreateKeybind({ Name = "Toggle UI", CurrentKeybind = "RightShift", HoldToInteract = false, Callback = function() Rayfield:ToggleUI() end }) SettingsTab:CreateButton({ Name = "Destroy UI", Callback = function() Rayfield:Destroy() end })