ADVERTISEMENTREMOVE ADS
OP Auto Collect!!
48,475 views
Description
This script auto collects every single orb for energy and gems in the area you are standing in.
Features:
- autofarm
- simulator
- Auto farm
- Energy simulator
ADVERTISEMENTREMOVE ADS
23 Lines β’ 839 Bytes
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local orbsFolder = game.Workspace:WaitForChild("Orbs")
game:GetService("RunService").Heartbeat:Connect(function()
for _, orb in pairs(orbsFolder:GetChildren()) do
local mainPart = orb:FindFirstChild("Main")
if mainPart and mainPart:IsA("BasePart") then
mainPart.CFrame = character.HumanoidRootPart.CFrame * CFrame.new(0, 5, 0)
end
end
end)
game:GetService("RunService").Heartbeat:Connect(function()
for _, orb in pairs(orbsFolder:GetChildren()) do
local hitbox = orb:FindFirstChild("Hitbox")
if hitbox and hitbox:IsA("BasePart") then
hitbox.CFrame = character.HumanoidRootPart.CFrame * CFrame.new(0, 5, 0)
end
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments
looks like something i'd make last year