local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() Rayfield:LoadConfiguration() local Window = Rayfield:CreateWindow({ Name = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name.." - By relevant500 on discord", LoadingTitle = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name, LoadingSubtitle = ".gg/renderintents", Discord = { Enabled = false, Invite = "renderintents", RememberJoins = true } }) local tycoon for i,v in pairs(workspace:GetDescendants()) do if v.Name == "Owner" and v:IsA("StringValue") and v.Value == game.Players.LocalPlayer.Name then tycoon = v.Parent Rayfield:Notify({ Title = "We have located your tycoon.", Content = "You can now use Infinite money and autobutton.", Duration = 5, Image = "rewind", }) break end end local fastbreak = false local maintab = Window:CreateTab("Main", 13350832775) local Button = maintab:CreateButton({ Name = "Infinite Money", Callback = function() local suc, res = pcall(function() return tycoon.Bought.CollectATM.CollectStep end) if not suc then Rayfield:Notify({ Title = "Infinite Money", Content = "You need to have the ATM unlocked.", Duration = 2.5, Image = "axe", }) return end game:GetService("ReplicatedStorage"):WaitForChild("CollectItem"):FireServer(5e14, tycoon.Bought.CollectATM) firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, tycoon.Bought.CollectATM.CollectStep, 0) task.wait(0.02) firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, tycoon.Bought.CollectATM.CollectStep, 1) Rayfield:Notify({ Title = "Infinite Money", Content = "Given money.", Duration = 2.5, Image = "axe", }) end, }) local autoButton = maintab:CreateToggle({ Name = "Auto Button", CurrentValue = false, Flag = "autoButton", Callback = function(state) autoButton = state if autoButton then task.spawn(function() while autoButton do for i,v in pairs(tycoon.Buttons:GetChildren()) do if v.Name == "Button" then firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v, 0) end end task.wait(0.4) end end) end end })