Blox Fruits is an immensely popular game on the Roblox platform, boasting a vast user base. This action-adventure game revolves around a pirate theme, where players enagage in combat against a variety of enemies and challenging bosses. Exploring islands and consuming different fruits are essential for advancing your character’s level.
What is Roblox Script?
Roblox Scripts typically refer to snippets of code that offer automation advantages within the game. Independent developers and scripters create these scripts, which are not officially endorsed by the Roblox platform. Nevertheless, you can still utilize these scripts through Roblox executors such as Arceus X, Hydrogen Executor, JJSploit, Fluxus executor, and others.
How to Use Roblox Script?
- Launch Roblox and join your desired game.
- Click the “Copy” button to duplicate the script code.
- Paste the script code into your preferred Roblox executor.
- Execute the script code and savor the enhanced experience.
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
-- Tạo tool và cho phép người chơi equip
local tool = Instance.new("Tool")
tool.Name = "Parts follow"
tool.RequiresHandle = false
tool.Parent = game.Players.LocalPlayer.Backpack
-- Biến trạng thái để theo dõi xem script đang chạy hay không
local isAuraActive = false
local auraPart = nil -- Biến toàn cục để theo dõi AuraPart
local touchedParts = {} -- Lưu các Part đã bị ảnh hưởng
-- Function khi equip tool
tool.Activated:Connect(function()
if not isAuraActive then
-- Bắt đầu tạo aura khi lần đầu kích hoạt tool
isAuraActive = true
local range = 50 -- Kích thước của Part (studs)
local color = Color3.fromRGB(0, 255, 0) -- Màu sắc của Part
local transparency = 0.85 -- Độ trong suốt của Part
local player = game:GetService("Players").LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local rootPart = character:WaitForChild("HumanoidRootPart")
local runService = game:GetService("RunService")
-- Tạo Part (Aura)
auraPart = Instance.new("Part")
auraPart.Size = Vector3.new(range, 1, range)
auraPart.Anchored = true
auraPart.CanCollide = false
auraPart.CanTouch = true
auraPart.Transparency = transparency
auraPart.Color = color
auraPart.Parent = workspace
-- Cập nhật vị trí Aura
local partConnection = runService.Heartbeat:Connect(function()
if rootPart then
auraPart.CFrame = rootPart.CFrame * CFrame.new(0, -3, 0)
end
end)
-- Tương tác với Aura (gắn BodyPosition vào Part)
auraPart.Touched:Connect(function(hit)
if hit:IsDescendantOf(character) then return end
if hit:IsA("BasePart") and not touchedParts[hit] then
-- Lưu Part đã bị chạm
touchedParts[hit] = hit
-- Tạo BodyPosition
local bodyPosition = Instance.new("BodyPosition")
bodyPosition.Name = "AuraBodyPosition"
bodyPosition.Position = hit.Position -- Vị trí ban đầu
bodyPosition.MaxForce = Vector3.new(1e5, 1e5, 1e5) -- Lực tối đa
bodyPosition.D = 10 -- Giảm xóc
bodyPosition.P = 15 -- Độ mạnh của lực
bodyPosition.Parent = hit
-- Cập nhật vị trí BodyPosition theo nhân vật
runService.Heartbeat:Connect(function()
if rootPart and bodyPosition.Parent then
bodyPosition.Position = rootPart.Position
end
end)
end
end)
-- Hủy bỏ aura khi nhân vật chết
character:WaitForChild("Humanoid").Died:Connect(function()
partConnection:Disconnect()
auraPart:Destroy()
end)
else
-- Tắt Aura
isAuraActive = false
if auraPart then
auraPart:Destroy() -- Xóa AuraPart
end
-- Xóa BodyPosition và khôi phục các Part
for part, _ in pairs(touchedParts) do
local bodyPosition = part:FindFirstChild("AuraBodyPosition")
if bodyPosition then
bodyPosition:Destroy() -- Xóa BodyPosition
end
end
-- Xóa danh sách các Part đã bị ảnh hưởng
touchedParts = {}
end
end)
Remember to employ a dummy account when injecting scripts. We cannot be held responsible for any potential harm caused to your Roblox account.
Description
Glue parts


