ADVERTISEMENTREMOVE ADS
Game icon

Aura Farm Ores

Script preview thumbnail
Script Preview

Description

Why This is the Best Version:

Supports All Six Ores (world 1) – You can farm Coal, Copper, Iron, Gold, Sapphire, and Ruby.
Each Ore is Hit Multiple Times – Improves mining efficiency.
Failsafe Checks – Prevents errors if ores don’t exist.
Separate Toggles – You can enable or disable each mining type independently.
Performance Optimized – Prevents excessive server spam.
Mobile & PC Friendly – Works smoothly on all devices.

ADVERTISEMENTREMOVE ADS
51 Lines • 1.43 KiB
Raw
--[[
THIS IS ONLY WORLD 1, I WILL MAYBE ADD WORLD 2 SUPPORT
- theboywhocried
]]--
local replicatedStorage = game:GetService("ReplicatedStorage")
local events = replicatedStorage:WaitForChild("Events")
local blocksFolder = workspace:WaitForChild("Main"):WaitForChild("Blocks")
_G.Toggles = {
CoalFarm = false,
CopperFarm = false,
IronFarm = false,
GoldFarm = false,
SapphireFarm = false,
RubyFarm = false
}
local function mineOre(oreName, toggleName)
task.spawn(function()
while _G.Toggles[toggleName] do
for _, block in ipairs(blocksFolder:GetChildren()) do
if block.Name == oreName then
local args = {
[1] = block,
[2] = 1732631133
}
for i = 1, 4 do
if block.Parent then
events:WaitForChild("DamageBlock"):FireServer(unpack(args))
task.wait(0.1)
else
break
end
end
end
end
task.wait(1)
end
end)
end
mineOre("Coal Ore", "CoalFarm")
mineOre("Copper Ore", "CopperFarm")
mineOre("Iron Ore", "IronFarm")
mineOre("Gold Ore", "GoldFarm")
mineOre("Sapphire Ore", "SapphireFarm")
mineOre("Ruby Ore", "RubyFarm")
ADVERTISEMENTREMOVE ADS

Comments

5 comments
to add a comment
La

L script doesnt work :P

0
0
th

@Lamberkz what exec do you have?

0
0
lr

Will come back if this works (using solara)

0
0
lr

@lru1 shit doesnt not work on solara

0
0
us

doesnt work in xeno :P

0
0
ADVERTISEMENTREMOVE ADS