local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
local Window = Rayfield:CreateWindow({
Name = "SouthBronx AutoFarm",
LoadingTitle = "South Bronx",
LoadingSubtitle = "by brilllll",
ConfigurationSaving = {
Enabled = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "Big Noob"
},
Discord = {
Enabled = false,
Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
},
KeySystem = false, -- Set this to true to use our key system
KeySettings = {
Title = "Untitled",
Subtitle = "Key System",
Note = "No method of obtaining the key is provided",
FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
}
})
local AutoFarmTab = Window:CreateTab("AutoFarm", nil) -- Title, Image
local AutoFarmSection = AutoFarmTab:CreateSection("GetMoney Farm")
local Toggle = AutoFarmTab:CreateToggle({
Name = "AutoFarmJob = Money",
CurrentValue = false,
Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
Callback = function(Value)
-- Script generated by SimpleSpy - credits to exx#99999
local args = {
[1] = "Box Job"
}
if Value then
game:GetService("ReplicatedStorage").RemoteEvents.FetchGUI:FireServer(unpack(args))
-- Teleport to the first location
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-552.4525146484375, 3.5371451377868652, -83.8554458618164))
-- Hold 'E' for 5 seconds
game:GetService("VirtualInputManager"):SendKeyEvent(true, Enum.KeyCode.E, false, game)
wait(5) -- Wait for 5 seconds
-- Teleport to the second location
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-401.3119201660156, 3.4121932983398438, -72.4224853515625))
-- Hold 'E' for another 5 seconds
game:GetService("VirtualInputManager"):SendKeyEvent(true, Enum.KeyCode.E, false, game)
wait(5) -- Wait for 5 seconds
else
-- Code to handle turning off the autofarm (if needed)
-- In this example, let's assume there's nothing specific to do when turning off, so we'll simply do nothing
end
end,
})
To embed this project on your website, copy the following code and paste it into your website's HTML: