Full List of OP Scripts:
local MaxSpeed = 300 -- Studs per second 380 no flag but kick
local LocalPlayer = game:GetService("Players").LocalPlayer
local Locations = workspace._WorldOrigin.Locations
local function getCharacter()
if not LocalPlayer.Character then
LocalPlayer.CharacterAdded:Wait()
end
LocalPlayer.Character:WaitForChild("HumanoidRootPart")
return LocalPlayer.Character
end
local function DistanceFromPlrSort(ObjectList: table)
local RootPart = getCharacter().LowerTorso
table.sort(ObjectList, function(ChestA, ChestB)
local RootPos = RootPart.Position
local DistanceA = (RootPos - ChestA.Position).Magnitude
local DistanceB = (RootPos - ChestB.Position).Magnitude
return DistanceA < DistanceB
end)
end
local UncheckedChests = {}
local FirstRun = true
local function getChestsSorted()
if FirstRun then
FirstRun = false
local Objects = game:GetDescendants()
for i, Object in pairs(Objects) do
if Object.Name:find("Chest") and Object.ClassName == "Part" then
table.insert(UncheckedChests, Object)
end
end
end
local Chests = {}
for i, Chest in pairs(UncheckedChests) do
if Chest:FindFirstChild("TouchInterest") then
table.insert(Chests, Chest)
end
end
DistanceFromPlrSort(Chests)
return Chests
end
local function toggleNoclip(Toggle: boolean)
for i,v in pairs(getCharacter():GetChildren()) do
if v.ClassName == "Part" then
v.CanCollide = not Toggle
end
end
end
local function Teleport(Goal: CFrame, Speed)
if not Speed then
Speed = MaxSpeed
end
toggleNoclip(true)
local RootPart = getCharacter().HumanoidRootPart
local Magnitude = (RootPart.Position - Goal.Position).Magnitude
RootPart.CFrame = RootPart.CFrame
while not (Magnitude < 1) do
local Direction = (Goal.Position - RootPart.Position).unit
RootPart.CFrame = RootPart.CFrame + Direction * (Speed * wait())
Magnitude = (RootPart.Position - Goal.Position).Magnitude
end
toggleNoclip(false)
end
local function main()
while wait() do
local Chests = getChestsSorted()
if #Chests > 0 then
Teleport(Chests[1].CFrame)
else
-- You can put serverhop here
end
end
end
wait = task.wait
main()
How to inject [🎁XMAS] Blox Fruits scripts?
- Download a Script Executor – Tools like Synapse X, Delta, Codex, or Krnl.
- Attach the Executor – Connect the tool to the game process.
- Paste the Script – Load and execute the Lua script inside the game.
- Activate Features – Use the injected script for custom actions.
Script Features:
Here’s the full list of features:
- Fast Chest Collection: Collects chests at maximum speed.
- No Lag: Smooth performance with no lag.
- Variable Speed: Adjustable speed, lower if needed.
- Open Source: Freely editable, credit appreciated.
- No UI/Overhead: Simple, minimalistic design.
Game Details:
- Name: Blox Fruits
- Developer: Gamer Robot Inc
- Maturity: Mild
- Genre: RPG
- Subgenre: Action RPG