local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "[v4.5] Money Incremental 💸",
LoadingTitle = "Loading Script...",
LoadingSubtitle = "made by raph007 | ItsChe4p",
ConfigurationSaving = {
Enabled = true,
FolderName = "GameConfigs",
FileName = "FarmGui"
}
})
-- Variables for Toggles
local Toggles = {
OrbsIsland = false,
ChristmasValley = false,
AutoResearch = false,
AutoRank = false,
AutoRune = false
}
-- Settings for Auto-Delete (Rune Opener)
local RuneSettings = {
Ancient_Key = false,
Rock = false,
Ancient_Rock = false,
Ancient_Ore = false,
Ancient_Axe = false
}
local MainTab = Window:CreateTab("Main Farming", 4483362458)
-- 1. Placeholder for Waterfall
MainTab:CreateLabel("Waterfall autofarm still being scripted", 4483362458)
-- 2. Orbs Island Bringer
MainTab:CreateToggle({
Name = "Bring Orbs Island Items",
CurrentValue = false,
Flag = "OrbsToggle",
Callback = function(Value)
Toggles.OrbsIsland = Value
task.spawn(function()
while Toggles.OrbsIsland do
local folder = workspace.Buildings["Orbs Island"]["1"].Cached
for _, item in pairs(folder:GetChildren()) do
if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
item:PivotTo(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
end
end
task.wait(0.5)
end
end)
end,
})
-- 3. Christmas Valley Bringer
MainTab:CreateToggle({
Name = "Bring Christmas Valley Items",
CurrentValue = false,
Flag = "XmasToggle",
Callback = function(Value)
Toggles.ChristmasValley = Value
task.spawn(function()
while Toggles.ChristmasValley do
local folder = workspace.Buildings["Christmas Valley"]["1"].Cached
for _, item in pairs(folder:GetChildren()) do
if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
item:PivotTo(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
end
end
task.wait(0.5)
end
end)
end,
})
local AutomationTab = Window:CreateTab("Automation", 4483362458)
-- 4. Auto Research
AutomationTab:CreateToggle({
Name = "Auto Research (More Income)",
CurrentValue = false,
Flag = "ResToggle",
Callback = function(Value)
Toggles.AutoResearch = Value
task.spawn(function()
while Toggles.AutoResearch do
local args = {"moreIncome"}
game:GetService("ReplicatedStorage"):WaitForChild("Framework"):WaitForChild("Remotes"):WaitForChild("Research"):FireServer(unpack(args))
task.wait(2)
end
end)
end,
})
-- 5. Auto Rank Up
AutomationTab:CreateToggle({
Name = "Auto Rank Up",
CurrentValue = false,
Flag = "RankToggle",
Callback = function(Value)
Toggles.AutoRank = Value
task.spawn(function()
while Toggles.AutoRank do
game:GetService("ReplicatedStorage"):WaitForChild("Framework"):WaitForChild("Remotes"):WaitForChild("Rank"):FireServer()
task.wait(5)
end
end)
end,
})
local RuneTab = Window:CreateTab("Rune Opener", 4483362458)
-- 6. Rune Auto-Delete Selection
RuneTab:CreateDropdown({
Name = "Items to Auto-Delete",
Options = {"Ancient_Key", "Rock", "Ancient_Rock", "Ancient_Ore", "Ancient_Axe"},
CurrentOption = {},
MultipleOptions = true,
Flag = "RuneDeleteDropdown",
Callback = function(Options)
for k, _ in pairs(RuneSettings) do RuneSettings[k] = false end
for _, v in pairs(Options) do
RuneSettings[v] = true
end
end,
})
-- 7. Auto Rune Toggle
RuneTab:CreateToggle({
Name = "Enable Auto Rune Open",
CurrentValue = false,
Flag = "RuneToggle",
Callback = function(Value)
Toggles.AutoRune = Value
task.spawn(function()
while Toggles.AutoRune do
local args = {
"Lost",
{
Ancient_Key = RuneSettings.Ancient_Key,
Rock = RuneSettings.Rock,
Ancient_Rock = RuneSettings.Ancient_Rock,
Ancient_Ore = RuneSettings.Ancient_Ore,
Ancient_Axe = RuneSettings.Ancient_Axe
},
true
}
game:GetService("ReplicatedStorage"):WaitForChild("Framework"):WaitForChild("Remotes"):WaitForChild("RuneOpen"):FireServer(unpack(args))
task.wait(1)
end
end)
end,
})
Rayfield:LoadConfiguration()
Comments
No comments yet
Be the first to share your thoughts!