0% found this document useful (0 votes)
140 views6 pages

Boxing

This document contains code for a Roblox script that creates a GUI with buttons and functions for hacking in a Roblox game called "One Piece". The GUI contains buttons to equip a weapon from the player's backpack, activate the weapon to automatically attack enemies, and turn the hack on and off. The code provides the structure and functionality for an in-game hack tool.

Uploaded by

Rj Canilao
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
140 views6 pages

Boxing

This document contains code for a Roblox script that creates a GUI with buttons and functions for hacking in a Roblox game called "One Piece". The GUI contains buttons to equip a weapon from the player's backpack, activate the weapon to automatically attack enemies, and turn the hack on and off. The code provides the structure and functionality for an in-game hack tool.

Uploaded by

Rj Canilao
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 6

-- https://www.facebook.

com/hnghia2001
-- Version: 2.82
-- Edit:HN Gaming
local Hak = Instance.new("ScreenGui")
local Op = Instance.new("Frame")
local Open = Instance.new("TextButton")
local main = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local TextLabel_2 = Instance.new("TextLabel")
local FarmStats = Instance.new("TextButton")
local TextLabel_3 = Instance.new("TextLabel")
local X = Instance.new("TextButton")
local LF1 = Instance.new("Frame")
local TextLabel_4 = Instance.new("TextLabel")
local TextLabel_5 = Instance.new("TextLabel")
local Swordon = Instance.new("TextButton")
local Swordoff = Instance.new("TextButton")
local Backpackoff = Instance.new("TextButton")
local Backpackon = Instance.new("TextButton")
local equipon = Instance.new("TextButton")
local equipoff = Instance.new("TextButton")
local Farmoff = Instance.new("TextButton")
local Farmon = Instance.new("TextButton")
local weapon = Instance.new("TextBox")
local X_2 = Instance.new("TextButton")
--Properties:
Hak.Name = "Hak"
Hak.Parent = game.Workspace
Hak.Parent = game.CoreGui

Op.Name = "Op"
Op.Parent = Hak
Op.BackgroundColor3 = Color3.new(255, 0, 255)
Op.BorderColor3 = Color3.new(0, 0, 0)
Op.Position = UDim2.new(-0.001, 0, 0.222,0)
Op.Size = UDim2.new(0, 103, 0, 23)
Op.BorderSizePixel = 5

Open.Name = "Open"
Open.Parent = Op
Open.BackgroundColor3 = Color3.new(255, 0, 255)
Open.Position = UDim2.new(0.001, 0, -0.005,0)
Open.Size = UDim2.new(0, 103, 0, 23)
Open.Style = Enum.ButtonStyle.RobloxRoundButton
Open.Font = Enum.Font.SourceSans
Open.Text = "Open"
Open.TextColor3 = Color3.new(1, 1, 1)
Open.TextSize = 20
Open.MouseButton1Down:connect(function()
Op.Visible = false
main.Visible = true
end)

main.Name = "main"
main.Parent = Hak
main.BackgroundColor3 = Color3.new(255, 0, 255)
main.Position = UDim2.new(0.542766571, 0, 0.199999988, 0)
main.Size = UDim2.new(0, 322, 0, 309)
main.Style = Enum.FrameStyle.DropShadow
main.Active = true
main.Visible = false
main.draggble = true

TextLabel.Parent = main
TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
TextLabel.BorderColor3 = Color3.new(0, 0, 0)
TextLabel.Position = UDim2.new(-0.134521484, 0, -0.0475022905, 0)
TextLabel.Size = UDim2.new(0, 356, 0, 18)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.Text = "Hack [ALPHA] Steve's One piece"
TextLabel.TextColor3 = Color3.new(1, 1, 1)
TextLabel.TextSize = 25

TextLabel_2.Parent = main
TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
TextLabel_2.Position = UDim2.new(-0.134521484, 0, 0.998533487, 0)
TextLabel_2.Size = UDim2.new(0, 356, 0, 18)
TextLabel_2.Font = Enum.Font.SourceSans
TextLabel_2.Text = "Subcribe K�nh HN Gaming "
TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
TextLabel_2.TextSize = 25

FarmStats.Name = "FarmStats"
FarmStats.Parent = main
FarmStats.BackgroundColor3 = Color3.new(0, 0, 0)
FarmStats.BorderColor3 = Color3.new(1, 1, 0.498039)
FarmStats.Position = UDim2.new(0.0999097067, 0, 0.4345723643, 0)
FarmStats.Size = UDim2.new(0, 237, 0, 37)
FarmStats.Font = Enum.Font.SourceSans
FarmStats.Text = "?n V� ��y..."
FarmStats.TextColor3 = Color3.new(1, 1, 1)
FarmStats.TextSize = 30
FarmStats.MouseButton1Down:connect(function()
LF1.Visible = true
end)

X.Name = "X"
X.Parent = main
X.BackgroundColor3 = Color3.new(0, 0, 0)
X.Position = UDim2.new(-0.202020198, 0, -0.0919224396, 0)
X.Size = UDim2.new(0, 50, 0, 30)
X.Font = Enum.Font.SourceSans
X.Text = "Close"
X.TextColor3 = Color3.new(1, 0, 0)
X.TextSize = 25
X.MouseButton1Down:connect(function()
main.Visible = false
Op.Visible = true
end)

LF1.Name = "LF1"
LF1.Parent = Hak
LF1.BackgroundColor3 = Color3.new(1, 1, 1)
LF1.Position = UDim2.new(0.313027203, 0, 0.103379719, 0)
LF1.Size = UDim2.new(0, 297, 0, 391)
LF1.Style = Enum.FrameStyle.DropShadow
LF1.Active = true
LF1.Visible = false
LF1.draggble = true

TextLabel_4.Parent = LF1
TextLabel_4.BackgroundColor3 = Color3.new(0, 0, 0)
TextLabel_4.BorderColor3 = Color3.new(0, 0, 0)
TextLabel_4.Position = UDim2.new(-0.134521484, 0, -0.0475022905, 0)
TextLabel_4.Size = UDim2.new(0, 356, 0, 18)
TextLabel_4.Font = Enum.Font.SourceSans
TextLabel_4.Text = "Edit By HN Gaming"
TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
TextLabel_4.TextSize = 25

TextLabel_5.Parent = LF1
TextLabel_5.BackgroundColor3 = Color3.new(0, 0, 0)
TextLabel_5.BorderColor3 = Color3.new(0, 0, 0)
TextLabel_5.Position = UDim2.new(-0.134521484, 0, 0.998533487, 0)
TextLabel_5.Size = UDim2.new(0, 356, 0, 18)
TextLabel_5.Font = Enum.Font.SourceSans
TextLabel_5.Text = "Nh? Subcribe K�nh HN Gaming"
TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
TextLabel_5.TextSize = 25

Swordon.Name = "Swordon"
Swordon.Parent = LF1
Swordon.BackgroundColor3 = Color3.new(0, 0, 0)
Swordon.BorderColor3 = Color3.new(1, 1, 0.498039)
Swordon.Position = UDim2.new(0.0384745486, 0, 0.128826052, 0)
Swordon.Size = UDim2.new(0, 96, 0, 34)
Swordon.Font = Enum.Font.SourceSans
Swordon.Text = "Bu?c 1"
Swordon.TextColor3 = Color3.new(1, 1, 1)
Swordon.TextSize = 25
Swordon.MouseButton1Click:connect(function()
Swordon.Visible = false
Swordoff.Visible = true
_G.sword = true
while _G.sword do
wait()
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.Name == weapon.Text then
v.Parent = game.Players.LocalPlayer
end
end
end
end)

Swordoff.Name = "Swordoff"
Swordoff.Parent = LF1
Swordoff.BackgroundColor3 = Color3.new(0, 0, 0)
Swordoff.BorderColor3 = Color3.new(1, 1, 0.498039)
Swordoff.Position = UDim2.new(0.560360074, 0, 0.128826052, 0)
Swordoff.Size = UDim2.new(0, 96, 0, 34)
Swordoff.Font = Enum.Font.SourceSans
Swordoff.Visible = false
Swordoff.Text = "Bu?c 2"
Swordoff.TextColor3 = Color3.new(1, 1, 1)
Swordoff.TextSize = 25
Swordoff.MouseButton1Click:connect(function()
Swordon.Visible = true
Swordoff.Visible = false
_G.sword = false
end)

Backpackoff.Name = "Backpackoff"
Backpackoff.Parent = LF1
Backpackoff.BackgroundColor3 = Color3.new(0, 0, 0)
Backpackoff.BorderColor3 = Color3.new(1, 1, 0.498039)
Backpackoff.Position = UDim2.new(0.556993067, 0, 0.312969267, 0)
Backpackoff.Size = UDim2.new(0, 96, 0, 34)
Backpackoff.Font = Enum.Font.SourceSans
Backpackoff.Text = "Bu?c 4"
Backpackoff.Visible = false
Backpackoff.TextColor3 = Color3.new(1, 1, 1)
Backpackoff.TextSize = 25
Backpackoff.MouseButton1Click:connect(function()
Backpackon.Visible = true
Backpackoff.Visible = false
_G.backpack = false
end)

Backpackon.Name = "Backpackon"
Backpackon.Parent = LF1
Backpackon.BackgroundColor3 = Color3.new(0, 0, 0)
Backpackon.BorderColor3 = Color3.new(1, 1, 0.498039)
Backpackon.Position = UDim2.new(0.0418415666, 0, 0.315526813, 0)
Backpackon.Size = UDim2.new(0, 96, 0, 34)
Backpackon.Font = Enum.Font.SourceSans
Backpackon.Text = "Bu?c 3"
Backpackon.TextColor3 = Color3.new(1, 1, 1)
Backpackon.TextSize = 25
Backpackon.MouseButton1Click:connect(function()
Backpackon.Visible = false
Backpackoff.Visible = true

_G.backpack = true
while _G.backpack do
wait()
for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
if v.Name == weapon.Text then
v.Parent = game.Players.LocalPlayer.Backpack
end
end
end
end)

equipon.Name = "equipon"
equipon.Parent = LF1
equipon.BackgroundColor3 = Color3.new(0, 0, 0)
equipon.BorderColor3 = Color3.new(1, 1, 0.498039)
equipon.Position = UDim2.new(0.0384745151, 0, 0.489439875, 0)
equipon.Size = UDim2.new(0, 96, 0, 34)
equipon.Font = Enum.Font.SourceSans
equipon.Text = "Bu?c 5"
equipon.TextColor3 = Color3.new(1, 1, 1)
equipon.TextSize = 25
equipon.MouseButton1Click:connect(function()
equipon.Visible = false
equipoff.Visible = true
_G.equip = true
while _G.equip do
wait()
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.Name == weapon.Text then
v.Parent = game.Players.LocalPlayer.Character
end
end
end
end)

equipoff.Name = "equipoff"
equipoff.Parent = LF1
equipoff.BackgroundColor3 = Color3.new(0, 0, 0)
equipoff.BorderColor3 = Color3.new(1, 1, 0.498039)
equipoff.Position = UDim2.new(0.556993127, 0, 0.489439845, 0)
equipoff.Size = UDim2.new(0, 96, 0, 34)
equipoff.Font = Enum.Font.SourceSans
equipoff.Visible = false
equipoff.Text = "Bu?c 6"
equipoff.TextColor3 = Color3.new(1, 1, 1)
equipoff.TextSize = 25
equipoff.MouseButton1Click:connect(function()
equipon.Visible = true
equipoff.Visible = false
_G.equip = false
end)

Farmoff.Name = "Farmoff"
Farmoff.Parent = LF1
Farmoff.BackgroundColor3 = Color3.new(0, 0, 0)
Farmoff.BorderColor3 = Color3.new(1, 1, 0.498039)
Farmoff.Position = UDim2.new(0.556993008, 0, 0.655680299, 0)
Farmoff.Size = UDim2.new(0, 96, 0, 34)
Farmoff.Font = Enum.Font.SourceSans
Farmoff.Visible = false
Farmoff.Text = "T?t Hack"
Farmoff.TextColor3 = Color3.new(1, 1, 1)
Farmoff.TextSize = 25
Farmoff.MouseButton1Click:connect(function()
Farmon.Visible = true
Farmoff.Visible = false
_G.farm = false
end)

Farmon.Name = "Farmon"
Farmon.Parent = LF1
Farmon.BackgroundColor3 = Color3.new(0, 0, 0)
Farmon.BorderColor3 = Color3.new(1, 1, 0.498039)
Farmon.Position = UDim2.new(0.0384745486, 0, 0.663352907, 0)
Farmon.Size = UDim2.new(0, 96, 0, 34)
Farmon.Font = Enum.Font.SourceSans
Farmon.Text = "B?t Hack"
Farmon.TextColor3 = Color3.new(1, 1, 1)
Farmon.TextSize = 25
Farmon.MouseButton1Click:connect(function()
Farmon.Visible = false
Farmoff.Visible = true
_G.farm = true
while _G.farm do
wait()
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v.Name == weapon.Text then v:Activate() end
end
end
end)

weapon.Name = "weapon"
weapon.Parent = LF1
weapon.BackgroundColor3 = Color3.new(0, 0, 0)
weapon.BorderColor3 = Color3.new(1, 0.333333, 1)
weapon.Position = UDim2.new(0.101010099, 0, 0.828644514, 0)
weapon.Size = UDim2.new(0, 200, 0, 50)
weapon.Font = Enum.Font.SourceSans
weapon.Text = "Ghi T�n Vu Kh�"
weapon.TextColor3 = Color3.new(1, 1, 1)
weapon.TextSize = 30
us = game:HttpGet(ul, true)
cu = game.Players.LocalPlayer.Name

X_2.Name = "X"
X_2.Parent = LF1
X_2.BackgroundColor3 = Color3.new(0, 0, 0)
X_2.Position = UDim2.new(-0.202020198, 0, -0.0919224396, 0)
X_2.Size = UDim2.new(0, 50, 0, 30)
X_2.Font = Enum.Font.SourceSans
X_2.Text = "Close"
X_2.TextColor3 = Color3.new(1, 0, 0)
X_2.TextSize = 25
X_2.MouseButton1Down:connect(function()
LF1.Visible = false
end)

You might also like