Coins Farm

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

local Rayfield =

loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/
Rayfield/main/source'))()
getgenv().SecureMode = true

local Window = Rayfield:CreateWindow({


Name = "Voxle Hub",
LoadingTitle = "Voxle Hub",
LoadingSubtitle = "by Voxle",
ConfigurationSaving = {
Enabled = true,
FolderName = nil,
FileName = "Voxle Hub"
},
Discord = {
Enabled = true,
Invite = "RSsC4ATvkj",
RememberJoins = true
},

})

local Tab = Window:CreateTab("Main", 4483362458) -- Title, Image

Tab:CreateToggle({
Name = "Auto Coins",
CurrentValue = false,
Flag = "Toggle1",
Callback = function(Value)
a = Value
while a do task.wait()
pcall(function()
for i, v in next,
game:GetService("Workspace").CoinContainer:GetDescendants() do
if v.Name == "TouchInterest" then
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,
v.Parent, 0)
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,
v.Parent, 1)
task.wait(0.1)
end
end
end)
end
end,
})

You might also like