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!
]]
-- Credits by girl00kidd
-- Script de Interface com Imagem, Partículas, Skybox e Hint para Delta Executor, com interface amarela
-- Criando os elementos da interface
local ScreenGui = Instance.new("ScreenGui")
local ImageLabel = Instance.new("ImageLabel")
local ParticleButton = Instance.new("TextButton")
local SkyboxButton = Instance.new("TextButton")
local HintButton = Instance.new("TextButton") -- Botão para o hint
local CreditsLabel = Instance.new("TextLabel")
-- Definindo o nome da interface
ScreenGui.Name = "ImageInterface"
ScreenGui.Parent = game.CoreGui -- Delta Executor usa game.CoreGui
-- Configurações do TextLabel (créditos)
CreditsLabel.Name = "CreditsLabel"
CreditsLabel.Parent = ScreenGui
CreditsLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 0) -- Fundo amarelo
CreditsLabel.BackgroundTransparency = 0 -- Fundo opaco
CreditsLabel.Position = UDim2.new(0.05, 0, 0.05, 0) -- Posição no canto superior esquerdo
CreditsLabel.Size = UDim2.new(0, 400, 0, 50) -- Tamanho do texto
CreditsLabel.Font = Enum.Font.SourceSans
CreditsLabel.Text = "Credits to girl00kidd"
CreditsLabel.TextColor3 = Color3.fromRGB(0, 0, 0) -- Texto preto
CreditsLabel.TextSize = 24
-- Configurações da ImageLabel (imagem)
ImageLabel.Name = "ImageDisplay"
ImageLabel.Parent = ScreenGui
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 0) -- Fundo amarelo
ImageLabel.BackgroundTransparency = 0 -- Fundo opaco
ImageLabel.Position = UDim2.new(0.05, 0, 0.15, 0) -- Posição abaixo dos créditos
ImageLabel.Size = UDim2.new(0, 400, 0, 400) -- Tamanho da imagem
ImageLabel.Image = "rbxassetid://132704730281717" -- ID correto da imagem
-- Configurações do botão "Old Particles"
ParticleButton.Name = "OldParticlesButton"
ParticleButton.Parent = ScreenGui
ParticleButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0) -- Fundo amarelo
ParticleButton.Position = UDim2.new(0.05, 0, 0.65, 0) -- Posição abaixo da imagem
ParticleButton.Size = UDim2.new(0, 400, 0, 50) -- Tamanho do botão
ParticleButton.Font = Enum.Font.SourceSans
ParticleButton.Text = "Old Particles"
ParticleButton.TextColor3 = Color3.fromRGB(0, 0, 0) -- Texto preto
ParticleButton.TextSize = 20
-- Configurações do botão "Skybox"
SkyboxButton.Name = "SkyboxButton"
SkyboxButton.Parent = ScreenGui
SkyboxButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0) -- Fundo amarelo
SkyboxButton.Position = UDim2.new(0.05, 0, 0.75, 0) -- Posição abaixo do botão de partículas
SkyboxButton.Size = UDim2.new(0, 400, 0, 50) -- Tamanho do botão
SkyboxButton.Font = Enum.Font.SourceSans
SkyboxButton.Text = "Skybox"
SkyboxButton.TextColor3 = Color3.fromRGB(0, 0, 0) -- Texto preto
SkyboxButton.TextSize = 20
-- Configurações do botão "Hint"
HintButton.Name = "HintButton"
HintButton.Parent = ScreenGui
HintButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0) -- Fundo amarelo
HintButton.Position = UDim2.new(0.05, 0, 0.85, 0) -- Posição abaixo do botão de Skybox
HintButton.Size = UDim2.new(0, 400, 0, 50) -- Tamanho do botão
HintButton.Font = Enum.Font.SourceSans
HintButton.Text = "Show Hint"
HintButton.TextColor3 = Color3.fromRGB(0, 0, 0) -- Texto preto
HintButton.TextSize = 20
-- Função que cria as partículas
ParticleButton.MouseButton1Click:Connect(function()
local character = game.Players.LocalPlayer.Character
if character then
-- Criando as partículas
local particleEmitter = Instance.new("ParticleEmitter")
particleEmitter.Texture = "rbxassetid://134964139950" -- ID da partícula correta
particleEmitter.Lifetime = NumberRange.new(2) -- Duração das partículas
particleEmitter.Rate = 50 -- Quantidade de partículas geradas por segundo
particleEmitter.Speed = NumberRange.new(5, 10) -- Velocidade das partículas
particleEmitter.Parent = character:FindFirstChild("HumanoidRootPart") -- Coloca no centro do jogador
-- Definindo o tempo de vida do emissor de partículas (opcional, remover após 10 segundos)
wait(10)
particleEmitter:Destroy() -- Remover as partículas após 10 segundos
end
end)
-- Função para alterar o Skybox
SkyboxButton.MouseButton1Click:Connect(function()
local skybox = Instance.new("Sky")
skybox.Parent = game.Lighting -- Coloca o Skybox no Lighting
-- Definindo as imagens da Skybox
skybox.SkyboxBk = "rbxassetid://134964139950" -- Imagem para a parte de trás
skybox.SkyboxDn = "rbxassetid://134964139950" -- Imagem para a parte de baixo
skybox.SkyboxFt = "rbxassetid://134964139950" -- Imagem para a frente
skybox.SkyboxLf = "rbxassetid://134964139950" -- Imagem para a esquerda
skybox.SkyboxRt = "rbxassetid://134964139950" -- Imagem para a direita
skybox.SkyboxUp = "rbxassetid://134964139950" -- Imagem para cima
end)
-- Função para mostrar o Hint
HintButton.MouseButton1Click:Connect(function()
local hint = Instance.new("Hint")
hint.Text = "Join Team girl00kidd" -- Mensagem do Hint
hint.Parent = game.Workspace -- Adiciona o Hint ao Workspace
end)
-- Função para mover a interface
local dragging = false
local dragStart = nil
local startPos = nil
local function updatePosition(input)
local delta = input.Position - dragStart
ScreenGui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
end
ImageLabel.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
dragging = true
dragStart = input.Position
startPos = ScreenGui.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
ImageLabel.InputChanged:Connect(function(input)
if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
updatePosition(input)
end
end)
– The options in the dropdown. Callback = – The function of the dropdown. ]] Dropdown:Refresh(List,true) Dropdown:Set(“dropdown option”) OrionLib:Init()
Description
H


