local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Destine Hub", LoadingTitle = "Destine Hub", LoadingSubtitle = "Key System Enabled", ConfigurationSaving = { Enabled = true, FolderName = "DestineHub", FileName = "Config" }, KeySystem = true, KeySettings = { Title = "Destine Hub Key", Subtitle = "Enter The Key", Note = "The Key:Destine123", FileName = "DestineKey", SaveKey = true, GrabKeyFromSite = false, Key = {"Destine123"} } }) local MainTab = Window:CreateTab("Main", 4483362458) getgenv().running = false MainTab:CreateSection("Start Controls") MainTab:CreateButton({ Name = "Start", Callback = function() if getgenv().running then return end getgenv().running = true task.spawn(function() while getgenv().running do game:GetService("ReplicatedStorage") :WaitForChild("Modules") :WaitForChild("EventManagerClient") :WaitForChild("ServerEvent") :FireServer("ClaimReward", 999999999) task.wait(0.0) end end) end }) MainTab:CreateSection("Stop Controls") MainTab:CreateButton({ Name = "Stop", Callback = function() getgenv().running = false game:GetService("ReplicatedStorage") :WaitForChild("Modules") :WaitForChild("EventManagerClient") :WaitForChild("ServerEvent") :FireServer("ClaimReward") end })