0% found this document useful (0 votes)
68 views8 pages

Beyond

The document defines the GUI for a Roblox game menu with various buttons like "Kenjutsu", "Ninjutsu", "Weapon", etc. Each button triggers a script to unlock or toggle related game elements when clicked. The menu GUI is created and positioned on the player screen with transparency.

Uploaded by

abdullahraffi8
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)
68 views8 pages

Beyond

The document defines the GUI for a Roblox game menu with various buttons like "Kenjutsu", "Ninjutsu", "Weapon", etc. Each button triggers a script to unlock or toggle related game elements when clicked. The menu GUI is created and positioned on the player screen with transparency.

Uploaded by

abdullahraffi8
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/ 8

local Screen = Instance.

new("ScreenGui")
local Gui = Instance.new("Frame")
local Version = Instance.new("TextLabel")
local GuiClose = Instance.new("TextButton")
local Scroll = Instance.new("TextButton")
local KenJutsu = Instance.new("TextButton")
local NinJutsu = Instance.new("TextButton")
local Companion = Instance.new("TextButton")
local Weapon = Instance.new("TextButton")
local Combo = Instance.new("TextButton")
local TaiJutsu = Instance.new("TextButton")
local Farm = Instance.new("TextButton")
local All = Instance.new("TextButton")
local Kekkei = Instance.new("TextButton")
local Element = Instance.new("TextButton")
local Bag = Instance.new("TextButton")
local Exp = Instance.new("TextButton")
local Pack1 = Instance.new("TextButton")
local Pack2 = Instance.new("TextButton")
local SubJutsu2 = Instance.new("TextButton")

Screen.Name = "Screen"
Screen.Parent = game.Players.LocalPlayer.PlayerGui

Gui.Name = "Gui"
Gui.Parent = Screen
Gui.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
Gui.Position = UDim2.new(0.040, 400, 0.6900, 0.3)
Gui.Size = UDim2.new(0, 278, 0, 84)
Gui.Transparency = 1

GuiClose.Name = "GuiClose"
GuiClose.Parent = Gui
GuiClose.BorderSizePixel = 0
GuiClose.BackgroundColor3 = Color3.new(1, 0, 0)
GuiClose.Position = UDim2.new(0.643, 45, -0.38, 0)
GuiClose.Size = UDim2.new(0, 48, 0, 25)
GuiClose.Font = Enum.Font.SciFi
GuiClose.Text = "X"
GuiClose.TextColor3 = Color3.new(1, 1, 1)
GuiClose.TextSize = 17
GuiClose.Transparency = 0.2
GuiClose.MouseButton1Click:connect(function()
game.Players.LocalPlayer.PlayerGui["Screen"]:Remove()
end)

Version.Name = "Version"
Version.Parent = Gui
Version.BorderSizePixel = 0
Version.BackgroundColor3 = Color3.new(1, 1, 1)
Version.Position = UDim2.new(0, 0, -0.38, 0)
Version.Size = UDim2.new(0, 224, 0, 25)
Version.Font = Enum.Font.SciFi
Version.Text = " Sxre Menu | v1.21 | By Mapaen "
Version.TextColor3 = Color3.new(0.2, 0.2, 0.2)
Version.TextScaled = false
Version.TextSize = 17
Version.TextWrapped = true
Version.Transparency = 0.2

Scroll.Name = "Scroll"
Scroll.Parent = Gui
Scroll.BorderSizePixel = 0
Scroll.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Scroll.Position = UDim2.new(0, 0, -0.08, 0)
Scroll.Size = UDim2.new(0, 68, 0, 25)
Scroll.TextColor3 = Color3.new(1, 1, 1)
Scroll.Font = Enum.Font.SciFi
Scroll.Text = "SubJutsu"
Scroll.TextSize = 14
Scroll.Transparency = 0.2
Scroll.MouseButton1Click:connect(function()
for i,v in
pairs(game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub.mode:GetChildren()) do
v.lock.Image = ("rbxassetid://1494129610")
end
for i,v in
pairs(game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub.sum:GetChildren()) do
v.lock.Image = ("rbxassetid://1494129610")
end
for i,v in
pairs(game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub.jutsu:GetChildren()) do
v.lock.Image = ("rbxassetid://1494129610")
end
end)

KenJutsu.Name = "KenJutsu"
KenJutsu.Parent = Gui
KenJutsu.BorderSizePixel = 0
KenJutsu.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
KenJutsu.Position = UDim2.new(0.246, 0, -0.08, 0)
KenJutsu.Size = UDim2.new(0, 68, 0, 25)
KenJutsu.TextColor3 = Color3.new(1, 1, 1)
KenJutsu.Font = Enum.Font.SciFi
KenJutsu.Text = "KenJutsu"
KenJutsu.TextSize = 14
KenJutsu.Transparency = 0.2
KenJutsu.MouseButton1Click:connect(function()
local target = game.Players.LocalPlayer.PlayerGui.MainGui.menu.ken:GetChildren()
for i, v in pairs(target) do
v.lock.Visible = false
end
end)

NinJutsu.Name = "NinJutsu"
NinJutsu.Parent = Gui
NinJutsu.BorderSizePixel = 0
NinJutsu.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
NinJutsu.Position = UDim2.new(0.490, 0, -0.08, 0)
NinJutsu.Size = UDim2.new(0, 68, 0, 25)
NinJutsu.TextColor3 = Color3.new(1, 1, 1)
NinJutsu.Font = Enum.Font.SciFi
NinJutsu.Text = "NinJutsu"
NinJutsu.TextSize = 14
NinJutsu.Transparency = 0.2
NinJutsu.MouseButton1Click:connect(function()
local target = game.Players.LocalPlayer.PlayerGui.MainGui.menu.Nin:GetChildren()
for i, v in pairs(target) do
v.lock.Visible = false
end
end)

Companion.Name = "Companion"
Companion.Parent = Gui
Companion.BorderSizePixel = 0
Companion.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Companion.Position = UDim2.new(0.735, 0, -0.08, 0)
Companion.Size = UDim2.new(0, 68, 0, 25)
Companion.TextColor3 = Color3.new(1, 1, 1)
Companion.Font = Enum.Font.SciFi
Companion.Text = "Companion"
Companion.TextSize = 13
Companion.Transparency = 0.2
Companion.MouseButton1Click:connect(function()
local target =game.Players.LocalPlayer.PlayerGui.MainGui.menu.Comp:GetChildren{}
for i, v in pairs(target) do
v.lock.Visible = false
end
end)

Weapon.Name = "Weapon"
Weapon.Parent = Gui
Weapon.BorderSizePixel = 0
Weapon.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Weapon.Position = UDim2.new(0, 0, 0.21, 0)
Weapon.Size = UDim2.new(0, 68, 0, 25)
Weapon.TextColor3 = Color3.new(1, 1, 1)
Weapon.Font = Enum.Font.SciFi
Weapon.Text = "Weapon"
Weapon.TextSize = 14
Weapon.Transparency = 0.2
Weapon.MouseButton1Click:connect(function()
local target = game.Players.LocalPlayer.PlayerGui.MainGui.menu.Wep:GetChildren()
for i, v in pairs(target) do
v.lock.Visible = false
end
end)

Combo.Name = "Combo"
Combo.Parent = Gui
Combo.BorderSizePixel = 0
Combo.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Combo.Position = UDim2.new(0, 68, 0.21, 0)
Combo.Size = UDim2.new(0, 68, 0, 25)
Combo.TextColor3 = Color3.new(1, 1, 1)
Combo.Font = Enum.Font.SciFi
Combo.Text = "Combo"
Combo.TextSize = 14
Combo.Transparency = 0.2
Combo.MouseButton1Click:connect(function()
local target =game.Players.LocalPlayer.PlayerGui.MainGui.menu.combos:GetChildren{}
for i, v in pairs(target) do
v.lock.Visible = false
end
end)

TaiJutsu.Name = "TaiJutsu"
TaiJutsu.Parent = Gui
TaiJutsu.BorderSizePixel = 0
TaiJutsu.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
TaiJutsu.Position = UDim2.new(0, 136, 0.21, 0)
TaiJutsu.Size = UDim2.new(0, 68, 0, 25)
TaiJutsu.TextColor3 = Color3.new(1, 1, 1)
TaiJutsu.Font = Enum.Font.SciFi
TaiJutsu.Text = "TaiJutsu"
TaiJutsu.TextSize = 14
TaiJutsu.Transparency = 0.2
TaiJutsu.MouseButton1Click:connect(function()
local target =game.Players.LocalPlayer.PlayerGui.MainGui.menu.Tai:GetChildren{}
for i, v in pairs(target) do
v.lock.Visible = false
end
end)

Farm.Name = "Farm"
Farm.Parent = Gui
Farm.BorderSizePixel = 0
Farm.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Farm.Position = UDim2.new(0, 204, 0.21, 0)
Farm.Size = UDim2.new(0, 68, 0, 25)
Farm.TextColor3 = Color3.new(1, 1, 1)
Farm.Font = Enum.Font.SciFi
Farm.Text = "Kunai Farm"
Farm.TextSize = 13
Farm.Transparency = 0.2
Farm.MouseButton1Click:connect(function()
while wait(0.03) do
game.Players.LocalPlayer.keyinput:FireServer("checkwep",
game.Players.LocalPlayer:GetMouse().Hit)
end
end)

All.Name = "All"
All.Parent = Gui
All.BorderSizePixel = 0
All.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
All.Position = UDim2.new(0, 0, 0.51, 0)
All.Size = UDim2.new(0, 68, 0, 25)
All.TextColor3 = Color3.new(1, 1, 1)
All.Font = Enum.Font.SciFi
All.Text = "Get All"
All.TextSize = 14
All.Transparency = 0.2
All.MouseButton1Click:connect(function()
local target = game.Players.LocalPlayer.PlayerGui.MainGui.menu.Wep:GetChildren()
for i, v in pairs(target) do
v.lock.Visible = false
end
local target =game.Players.LocalPlayer.PlayerGui.MainGui.menu.Comp:GetChildren{}
for i, v in pairs(target) do
v.lock.Visible = false
end
local target = game.Players.LocalPlayer.PlayerGui.MainGui.menu.ken:GetChildren()
for i, v in pairs(target) do
v.lock.Visible = false
end
local target =game.Players.LocalPlayer.PlayerGui.MainGui.menu.combos:GetChildren{}
for i, v in pairs(target) do
v.lock.Visible = false
end
local target =game.Players.LocalPlayer.PlayerGui.MainGui.menu.Tai:GetChildren{}
for i, v in pairs(target) do
v.lock.Visible = false
end
local target = game.Players.LocalPlayer.PlayerGui.MainGui.menu.Nin:GetChildren()
for i, v in pairs(target) do
v.lock.Visible = false
end
for i,v in pairs(game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub:GetChildren())
do
v.lock.Image = ("rbxassetid://1494129610")
end
end)

Kekkei.Name = "Kekkei"
Kekkei.Parent = Gui
Kekkei.BorderSizePixel = 0
Kekkei.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Kekkei.Position = UDim2.new(0, 68, 0.51, 0)
Kekkei.Size = UDim2.new(0, 68, 0, 25)
Kekkei.TextColor3 = Color3.new(1, 1, 1)
Kekkei.Font = Enum.Font.SciFi
Kekkei.Text = "4 KG Slot"
Kekkei.TextSize = 14
Kekkei.Transparency = 0.2
Kekkei.MouseButton1Click:connect(function()
game:GetService("Players").LocalPlayer.keyinput:FireServer("respin", 4)
end)

Element.Name = "Element"
Element.Parent = Gui
Element.BorderSizePixel = 0
Element.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Element.Position = UDim2.new(0, 136, 0.51, 0)
Element.Size = UDim2.new(0, 68, 0, 25)
Element.TextColor3 = Color3.new(1, 1, 1)
Element.Font = Enum.Font.SciFi
Element.Text = "Elements"
Element.TextSize = 14
Element.Transparency = 0.2
Element.MouseButton1Click:connect(function()
local Element = "earth"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.main[Element].select.Visible =
true
local Element = "fire"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.main[Element].select.Visible =
true
local Element = "lightning"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.main[Element].select.Visible =
true
local Element = "water"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.main[Element].select.Visible =
true
local Element = "wind"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.main[Element].select.Visible =
true
end)

Bag.Name = "Bag"
Bag.Parent = Gui
Bag.BorderSizePixel = 0
Bag.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Bag.Position = UDim2.new(0, 204, 0.51, 0)
Bag.Size = UDim2.new(0, 68, 0, 25)
Bag.TextColor3 = Color3.new(1, 1, 1)
Bag.Font = Enum.Font.SciFi
Bag.Text = "Get KG Bag"
Bag.TextSize = 13
Bag.Transparency = 0.2
Bag.MouseButton1Click:connect(function()
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.Visible = true
local KG = "sharingan"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "wood"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "rinnegan"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "byakugan"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "sand"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "akimichi"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "ice"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "tenseigan"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "shadow"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "lava"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "storm"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "momo"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "sasrinnegan"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "Shikotsumyaku"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "aburame"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "madarasharingan"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
local KG = "itachiman"
game.Players.LocalPlayer.PlayerGui.MainGui.Menu4.bag.frame[KG].locked.Visible =
false
end)

Exp.Name = "Exp"
Exp.Parent = Gui
Exp.BorderSizePixel = 0
Exp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Exp.Position = UDim2.new(0, 0, 0.81, 0)
Exp.Size = UDim2.new(0, 68, 0, 25)
Exp.TextColor3 = Color3.new(1, 1, 1)
Exp.Font = Enum.Font.SciFi
Exp.Text = "Exp 2X"
Exp.TextSize = 14
Exp.Transparency = 0.2
Exp.MouseButton1Click:connect(function()
game.Players.LocalPlayer.dblexp.Value = true
Instance.new("IntValue",game.Players.LocalPlayer)
wait()
game.Players.LocalPlayer.Value.Name = ("dblexp")
end)

Pack1.Name = "Pack1"
Pack1.Parent = Gui
Pack1.BorderSizePixel = 0
Pack1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Pack1.Position = UDim2.new(0, 68, 0.81, 0)
Pack1.Size = UDim2.new(0, 68, 0, 25)
Pack1.TextColor3 = Color3.new(1, 1, 1)
Pack1.Font = Enum.Font.SciFi
Pack1.Text = "PvP & Farm"
Pack1.TextSize = 13
Pack1.Transparency = 0.2
Pack1.MouseButton1Click:connect(function()
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "r", "itachimana")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "t", "shadowa")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "y", "aburamec")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "f", "lavac")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "g", "storma")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "h", "stormb")
game.Players.LocalPlayer.keyinput:FireServer("equipwep", "1", "sasukeb")
game.Players.LocalPlayer.keyinput:FireServer("equipwep", "3", "pain")
end)

Pack2.Name = "Pack2"
Pack2.Parent = Gui
Pack2.BorderSizePixel = 0
Pack2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
Pack2.Position = UDim2.new(0, 136, 0.81, 0)
Pack2.Size = UDim2.new(0, 68, 0, 25)
Pack2.TextColor3 = Color3.new(1, 1, 1)
Pack2.Font = Enum.Font.SciFi
Pack2.Text = "Lava & Storm"
Pack2.TextSize = 11
Pack2.Transparency = 0.2
Pack2.MouseButton1Click:connect(function()
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "r", "lavaa")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "t", "lavab")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "y", "lavac")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "f", "storma")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "g", "stormb")
game.Players.LocalPlayer.keyinput:FireServer("equippowerz", "h", "stormc")
end)

SubJutsu2.Name = "SubJutsu2"
SubJutsu2.Parent = Gui
SubJutsu2.BorderSizePixel = 0
SubJutsu2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
SubJutsu2.Position = UDim2.new(0, 204, 0.81, 0)
SubJutsu2.Size = UDim2.new(0, 68, 0, 25)
SubJutsu2.TextColor3 = Color3.new(1, 1, 1)
SubJutsu2.Font = Enum.Font.SciFi
SubJutsu2.Text = "SubJutsu 2.0"
SubJutsu2.TextSize = 11
SubJutsu2.Transparency = 0.2
SubJutsu2.MouseButton1Click:connect(function()
local target =
game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub.mode:GetChildren() for i, v in
pairs(target)
do v.lock.Visible = false
end
local target =
game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub.sum:GetChildren() for i, v in
pairs(target)
do v.lock.Visible = false
end
local target =
game.Players.LocalPlayer.PlayerGui.MainGui.menu.Sub.jutsu:GetChildren() for i, v in
pairs(target)
do v.lock.Visible = false
end
end)

You might also like