local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Inf Money HUB | Rayfield Edition",
LoadingTitle = "OpenSource Scripts",
LoadingSubtitle = "by _OpenSource_",
ConfigurationSaving = {
Enabled = true,
FolderName = "OpenSourceScripts",
FileName = "MoneyConfig"
},
Discord = {
Enabled = false,
Invite = "",
RememberJoins = true
},
KeySystem = false,
})
-- Variables
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ShopEvent = ReplicatedStorage:WaitForChild("Events"):WaitForChild("Shop")
-- Main Tab
local MainTab = Window:CreateTab("Home", 4483362458) -- Tab Icon
local Section = MainTab:CreateSection("Economy Exploits")
local Toggle = MainTab:CreateToggle({
Name = "Infinite Money Loop",
CurrentValue = false,
Flag = "InfMoneyToggle",
Callback = function(Value)
_G.InfMoney = Value
if _G.InfMoney then
Rayfield:Notify({
Title = "Loop Started",
Content = "Infinite money is now being generated.",
Duration = 2,
Image = 4483362458,
})
-- The Loop Logic
task.spawn(function()
while _G.InfMoney do
local args = {
-7e999,
"StraightConveyor",
"Item1"
}
ShopEvent:FireServer(unpack(args))
task.wait(0.2)
end
end)
else
Rayfield:Notify({
Title = "Loop Stopped",
Content = "Money generation disabled.",
Duration = 2,
Image = 4483362458,
})
end
end,
})
Rayfield:LoadConfiguration()
Comments
No comments yet
Be the first to share your thoughts!