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.
local UserInputService = game:GetService("UserInputService")
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/lxte/lates-lib/main/Main.lua"))()
local Window = Library:CreateWindow({
Title = "Hide N' Sneak",
Theme = "Dark",
Size = UDim2.fromOffset(570, 370),
Transparency = 0.2,
Blurring = true,
MinimizeKeybind = Enum.KeyCode.LeftAlt,
})
local Themes = {
Dark = {
Primary = Color3.fromRGB(30, 30, 30),
Secondary = Color3.fromRGB(35, 35, 35),
Component = Color3.fromRGB(40, 40, 40),
Interactables = Color3.fromRGB(45, 45, 45),
Tab = Color3.fromRGB(200, 200, 200),
Title = Color3.fromRGB(240, 240, 240),
Description = Color3.fromRGB(200, 200, 200),
Shadow = Color3.fromRGB(0, 0, 0),
Outline = Color3.fromRGB(40, 40, 40),
Icon = Color3.fromRGB(220, 220, 220),
},
}
Window:SetTheme(Themes.Dark)
Window:AddTabSection({ Name = "Components", Order = 1 })
Window:AddTabSection({ Name = "Settings", Order = 2 })
local Main = Window:AddTab({
Title = "Components",
Section = "Main",
Icon = "rbxassetid://11963373994"
})
local originalPosition
Window:AddToggle({
Title = "Hide",
Description = "When activated you will not be able to be caught untoggle to go back to original position",
Tab = Main,
Callback = function(active)
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local rootPart = character:WaitForChild("HumanoidRootPart")
if active then
originalPosition = rootPart.Position
rootPart.CFrame = CFrame.new(0, 9999999999999, 0)
else
rootPart.Position = originalPosition
end
end,
})
Window:AddButton({
Title = "Collect All Coins",
Description = "Collect All Coins (Use If Other Script is Glitched)",
Tab = Main,
Callback = function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local rootPart = character:WaitForChild("HumanoidRootPart")
local gameObjects = game:GetService("Workspace"):WaitForChild("GameObjects")
for _, object in ipairs(gameObjects:GetChildren()) do
if object:IsA("BasePart") then
object.CFrame = rootPart.CFrame
end
end
end,
})
Window:AddToggle({
Title = "Get All Coins",
Description = "Autoclaim All Coins (repeats every 5s)",
Tab = Main,
Callback = function(active)
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local rootPart = character:WaitForChild("HumanoidRootPart")
local gameObjects = game:GetService("Workspace"):WaitForChild("GameObjects")
while active do
for _, object in ipairs(gameObjects:GetChildren()) do
if object:IsA("BasePart") then
object.CFrame = rootPart.CFrame
end
end
wait(5)
end
end,
})
Window:AddButton({
Title = "Tag All",
Description = "Tag Every Player In The Game (MUST BE IT)",
Tab = Main,
Callback = function()
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
for _, targetPlayer in pairs(game.Players:GetPlayers()) do
if targetPlayer ~= player then
local targetCharacter = targetPlayer.Character
if targetCharacter and targetCharacter:FindFirstChild("HumanoidRootPart") then
local targetPosition = targetCharacter.HumanoidRootPart.Position
character:SetPrimaryPartCFrame(CFrame.new(targetPosition))
wait(1)
end
end
end
end,
})
local Settings = Window:AddTab({
Title = "Settings",
Section = "Settings",
Icon = "rbxassetid://11293977610",
})
Window:AddKeybind({
Title = "Minimize Keybind",
Description = "Set the keybind for Minimizing",
Tab = Settings,
Callback = function(Key)
Window:SetSetting("Keybind", Key)
end,
})
Window:AddDropdown({
Title = "Set Theme",
Description = "Set the theme of the library!",
Tab = Settings,
Options = {
["Light Mode"] = "Light",
["Dark Mode"] = "Dark",
},
Callback = function(Theme)
Window:SetTheme(Themes[Theme])
end,
})
Window:AddToggle({
Title = "UI Blur",
Description = "If enabled, must have your Roblox graphics set to 8+ for it to work",
Default = true,
Tab = Settings,
Callback = function(Boolean)
Window:SetSetting("Blur", Boolean)
end,
})
Window:AddSlider({
Title = "UI Transparency",
Description = "Set the transparency of the UI",
Tab = Settings,
AllowDecimals = true,
MaxValue = 1,
Callback = function(Amount)
Window:SetSetting("Transparency", Amount)
end,
})
Window:Notify({
Title = "Hello World!",
Description = "Press Left Alt to Minimize and Open the tab!",
Duration = 10
})
UserInputService.InputBegan:Connect(function(Key)
if Key == Keybind then
warn("You have pressed the minimize keybind!")
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.


