0% found this document useful (0 votes)
305 views124 pages

Roblox Krzo Hub Script for Gun Mods

The document is a Lua script for a Roblox game that creates a user interface (UI) for modifying weapons and player actions. It allows players to modify gun attributes, obtain weapons, teleport to various locations, and use various gameplay enhancements. The script includes functionalities for toggling options, respawning, and manipulating player hitboxes, among other features.

Uploaded by

denizbaba12211
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)
305 views124 pages

Roblox Krzo Hub Script for Gun Mods

The document is a Lua script for a Roblox game that creates a user interface (UI) for modifying weapons and player actions. It allows players to modify gun attributes, obtain weapons, teleport to various locations, and use various gameplay enhancements. The script includes functionalities for toggling options, respawning, and manipulating player hitboxes, among other features.

Uploaded by

denizbaba12211
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

local OrionLib =

loadstring(game:HttpGet("[Link]
%[Link]"))()
local Window =
OrionLib:MakeWindow(
{
Name = "Krzo Hub",
HidePremium = false,
SaveConfig = true,
ConfigFolder = "KrozoTest"
}
)

local Tab =
Window:MakeTab(
{
Name = "Main",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
}
)

local Section =
Tab:AddSection(
{
Name = "Modded Guns"
}
)

Tab:AddButton(
{
Name = "Mod M9",
Callback = function()
local player = game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("M9")
local sM = require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 999
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
}
)

Tab:AddButton(
{
Name = "Mod M4A1",
Callback = function()
local player = game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("M4A1")
local sM = require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 999
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
}
)

Tab:AddButton(
{
Name = "Mod AK-47",
Callback = function()
local player = game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("AK-47")
local sM = require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 999
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
}
)

Tab:AddButton(
{
Name = "Mod Remington",
Callback = function()
local player = game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("Remington 870")
local sM = require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 999
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
}
)

local Section =
Tab:AddSection(
{
Name = "Get Guns"
}
)

Tab:AddButton(
{
Name = "Get M9!",
Callback = function()
local A_1 = game:GetService("Workspace")
["Prison_ITEMS"].giver["M9"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

Tab:AddButton(
{
Name = "Get AK-47!",
Callback = function()
local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver["AK-
47"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

Tab:AddButton(
{
Name = "Get Reminton!",
Callback = function()
local A_1 = game:GetService("Workspace")
["Prison_ITEMS"].giver["Remington870"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

Tab:AddButton(
{
Name = "Get M4A1!",
Callback = function()
local A_1 = game:GetService("Workspace")
["Prison_ITEMS"].giver["M4A1"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

Tab:AddButton(
{
Name = "Get Hammer",
Callback = function()
local A_1 = game:GetService("Workspace")
["Prison_ITEMS"].giver["hammer"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

Tab:AddButton(
{
Name = "Get Keycard! | Someone Must drop this",
Callback = function()
local A_1 = game:GetService("Workspace")
["Prison_ITEMS"].single["Keycard"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

Tab:AddButton(
{
Name = "Get Crude Knife! | Someone Must drop this",
Callback = function()
local A_1 = game:GetService("Workspace")
["Prison_ITEMS"].single["CrudeKnife"].ITEMPICKUP
local Event = game:GetService("Workspace").[Link]
Event:InvokeServer(A_1)
end
}
)

local Tab =
Window:MakeTab(
{
Name = "Misc",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
}
)

Tab:AddButton(
{
Name = "Fly",
Callback = function()
loadstring(game:HttpGet("[Link]
end
}
)

Tab:AddButton(
{
Name = "Tptool",
Callback = function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Equip to Click TP"
[Link]:connect(
function()
local pos = [Link] + [Link](0, 2.5, 0)
pos = [Link](pos.X, pos.Y, pos.Z)
[Link] =
pos
end
)
[Link] = [Link]
end
}
)

local Section =
Tab:AddSection(
{
Name = "Teams"
}
)

Tab:AddButton(
{
Name = "Inmate",
Callback = function()
[Link]:FireServer("Bright orange")
end
}
)

Tab:AddButton(
{
Name = "Officer",
Callback = function()
[Link]:FireServer("Bright blue")
end
}
)

Tab:AddButton(
{
Name = "Criminal",
Callback = function()
local lastPos =
[Link]:FindFirstChild("HumanoidRootPart").position
LCS = [Link]["Criminals Spawn"].SpawnLocation
[Link] = false
[Link] = [Link](51.05, 24.12, 54.76)
[Link] = [Link]
[Link] = 1
wait(0.5)
[Link] = [Link](-920.510803, 92.2271957, 2138.27002, 0, 0, -1,
0, 1, 0, 1, 0, 0)
[Link] = [Link](6, 0.2, 6)
[Link] = 0
wait()
[Link] =
[Link](lastPos)
end
}
)

Tab:AddButton(
{
Name = "Neutral",
Callback = function()
[Link]:FireServer("Medium stone grey")
end
}
)
local Section =
Tab:AddSection(
{
Name = "Teleports"
}
)

Tab:AddButton(
{
Name = "Cafe",
Callback = function()
[Link] =
[Link](879, 99, 2247)
end
}
)

Tab:AddButton(
{
Name = "Yard",
Callback = function()
[Link] =
[Link](779, 99, 2477)
end
}
)

Tab:AddButton(
{
Name = "Armory",
Callback = function()
[Link] =
[Link](798, 99, 2260)
end
}
)

Tab:AddButton(
{
Name = "Back",
Callback = function()
[Link] =
[Link](980, 101, 2327)
end
}
)

Tab:AddButton(
{
Name = "Prison Cells",
Callback = function()
[Link] =
[Link](910, 99, 2477)
end
}
)

local Tab =
Window:MakeTab(
{
Name = "Toggles",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
}
)

local Section =
Tab:AddSection(
{
Name = "Options"
}
)

Tab:AddButton(
{
Name = "Respawn",
Callback = function()
local lastPos =
[Link]:FindFirstChild("HumanoidRootPart").position
local plr = [Link]
local gayevent = game:GetService("Workspace").[Link]
gayevent:InvokeServer(plr)
end
}
)

Tab:AddButton(
{
Name = "Tase Bypass",
Callback = function()
[Link] = true
[Link]:connect(
function()
[Link]:WaitForChild([Link])
[Link]
= true
end
)
end
}
)

Tab:AddButton(
{
Name = "Hitbox Expander",
Callback = function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Expanded Your Hitbox XD",
Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

_G.HeadSize = 15
_G.Disabled = true
game:GetService("RunService").RenderStepped:connect(
function()
if _G.Disabled then
for i, v in next, game:GetService("Players"):GetPlayers()
do
if [Link] ~=
game:GetService("Players").[Link] then
pcall(
function()
[Link] =
[Link](_G.HeadSize, _G.HeadSize,
_G.HeadSize)
[Link] =
0.9
[Link] =
[Link]("Red")
[Link] =
"Neon"
[Link] =
false
end
)
end
end
end
end
)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Done!",
"All"
)
end
}
)

Tab:AddButton(
{
Name = "Anti Sheild | G to remove shields",
Callback = function()
game:GetService("UserInputService").InputBegan:connect(
function(inputObject, gameProcessedEvent)
if gameProcessedEvent then
return
end
if [Link] == [Link].G then
for _, player in pairs([Link]:GetPlayers()) do
local minecraft =

[Link]:FindFirstChild([Link]).Torso:FindFirstChild("ShieldFolder")
if minecraft then
minecraft:Destroy()
end
local fortnite =
[Link]:FindFirstChild([Link]):FindFirstChild("Riot Shield")
if fortnite then
fortnite:Destroy()
end
end
end
end
)
end
}
)

Tab:AddButton(
{
Name = "Kill All!",
Callback = function()
end
}
)

Tab:AddButton(
{
Name = "Remove Doors",
Callback = function()
[Link]:Destroy()

for i, v in pairs(workspace:GetChildren()) do
if [Link] == "Doors" then
v:Destroy()
end
end
end
}
)

Tab:AddButton(
{
Name = "ESP",
Callback = function()
getgenv().enabled = true --Toggle on/off
getgenv().filluseteamcolor = true --Toggle fill color using player team
--color on/off
getgenv().outlineuseteamcolor = true --Toggle outline color using
player
--team color on/off
getgenv().fillcolor = [Link](0, 0, 0) --Change fill color, no need
to
--edit if using team color
getgenv().outlinecolor = [Link](1, 1, 1) --Change outline color, no
--need to edit if using team color
getgenv().filltrans = 0.7 --Change fill transparency
getgenv().outlinetrans = 0.3 --Change outline transparency

loadstring(game:HttpGet("[Link]
main/[Link]"))()
end
}
)

local Tab =
Window:MakeTab(
{
Name = "Fe",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
}
)

local Section =
Tab:AddSection(
{
Name = "Reanimation"
}
)
Tab:AddButton(
{
Name = "Ender | Leftclick to fling",
Callback = function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Ender",
Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
loadstring(game:HttpGet(("[Link] true))()
end
}
)

Tab:AddButton(
{
Name = "Caducus | Edgy demon guy",
Callback = function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Caducus",
Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
loadstring(game:HttpGet(("[Link] true))()
end
}
)

Tab:AddButton(
{
Name = "Wall Walker | Uhh idk walk walls thats it!",
Callback = function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Wall Walker",
Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
loadstring(game:HttpGetAsync("[Link]
end
}
)

Tab:AddButton(
{
Name = "Elio Blasio",
Callback = function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Blasio",
Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
loadstring(game:HttpGetAsync("[Link]
end
}
)

local Tab =
Window:MakeTab(
{
Name = "Prison life Guis",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
}
)

local Section =
Tab:AddSection(
{
Name = "Scripts"
}
)

Tab:AddButton(
{
Name = "Artenis",
Callback = function()
setclipboard("[Link]
print("copied the discord")
if [Link] == 155615604 then
local Library =

loadstring(game:HttpGet("[Link]
main/[Link]"))(

)
local Window = [Link]("Artenis", "Serpent")
local Credits = Window:NewTab("Main")
local CreditsSection = Credits:NewSection("Credits")
CreditsSection:NewLabel("Locals")
CreditsSection:NewLabel("Thx")

local Tab = Window:NewTab("Ui")


local UiSection = Tab:NewSection("Toggle")
UiSection:NewKeybind(
"Toggle Ui",
"this will hide the ui(does not inculdeanimation)",
[Link],
function()
Library:ToggleUI()
end
)

local Tab = Window:NewTab("LocalPlayer")


local LocalPlayerSection = Tab:NewSection("Movement")
LocalPlayerSection:NewSlider(
"Walkspeed",
"if you sprint, you have to adjustagain",
500,
16,
function(s) -- 500 (MaxValue) | 0 (MinValue)
[Link] = s
end
)
LocalPlayerSection:NewSlider(
"JumpPower",
"Turns you into a pogostick.",
500,
50,
function(s) -- 500 (MaxValue) | 0 (MinValue)
[Link] = s
end
)

local Tab = Window:NewTab("Admin")


local AdminSection = Tab:NewSection("madness")
AdminSection:NewButton(
"Septex",
"Gives You Commands!",
function()
loadstring(
game:HttpGet(

("[Link]
true
)
)()
end
)
AdminSection:NewButton(
"Inf Yield",
"gives you more cmds",
function()
loadstring(

game:HttpGet(("[Link]
source"), true)
)()
end
)
local AdminSection = Tab:NewSection("Septex Commands")
AdminSection:NewLabel(":rank player - gives player commands")
AdminSection:NewLabel(":kill player - kills player")
AdminSection:NewLabel(":sa player - spam arrest player")
AdminSection:NewLabel(":crim player - makes player criminal")
AdminSection:NewLabel(":bring player - brings player")
AdminSection:NewLabel(":goto player - makes you go to player")
AdminSection:NewLabel(":void player - voids player")
AdminSection:NewLabel(":key player - gives player keycard")
AdminSection:NewLabel(":cuffs player - gives player handcuffs")
AdminSection:NewLabel(":trap player - traps player")
AdminSection:NewLabel(":yard player - brings player to yard")
AdminSection:NewLabel(":base player - brings player to criminal
base")
AdminSection:NewLabel(":prison player - brings player to prison")
AdminSection:NewLabel(":lk - loopkills player")
AdminSection:NewLabel(":aura - gives player kill aura")
AdminSection:NewLabel(":virus - makes anyone who touch player
dies")
AdminSection:NewLabel(":oof - kills everyone")
AdminSection:NewLabel(":spike - lag spike")
AdminSection:NewLabel(":bspike - big lag spike")
AdminSection:NewLabel(":lag - lags the server")
AdminSection:NewLabel(":crash - crashes the server")
AdminSection:NewLabel(":tk player - teleport you to player and
killsthem")
AdminSection:NewLabel(":ltk player - loops tpkill")
AdminSection:NewLabel(":logs - prints all used cmds")
local Tab = Window:NewTab("Troll")
local TrollSection = Tab:NewSection("FLY")
TrollSection:NewButton(
"Flycar (AirWav)",
"superman but car",
function()

loadstring(game:HttpGet(("[Link] true))()
end
)

local TrollSection = Tab:NewSection("Dances")


TrollSection:NewButton(
"NullWare V3",
"i went through links for you",
function()

loadstring(game:HttpGet(("[Link] true))()
end
)

[Link](UVUZD_fake_script)()
[Link]:kick("go to prison bro")
else
end
end
}
)

local Section =
Tab:AddSection(
{
Name = "Kriff Ziz hub"
}
)

Tab:AddButton(
{
Name = "Extender Hub! | Basically All My Scripts here",
Callback = function()
local Library =
loadstring(game:HttpGet("[Link]
Kavo-UI-Library/main/[Link]"))()

local Window =
[Link]("Script Quality| Made By ProEternalx1 |Contact Me
If theres Problems", "BloodTheme")

local Tab = Window:NewTab("Home")


local Section = Tab:NewSection("Extender Hub Showcase")
Section:NewButton(
"Click",
"ButtonInfo",
function()
setclipboard("[Link]
end
)

local Section = Tab:NewSection("Choose Your Quality")


Section:NewButton(
"LOW QUALITY",
"ButtonInfo",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Loading Low Quality Script | Extender Hub On Top",
"All"
)
wait(1)
local Library =
loadstring(

game:HttpGet("[Link]
[Link]")
)()

local Window = [Link]("Extender Hub V4 | Low


Quality", "Ocean")

local Tab = Window:NewTab("Versions")


local Section = Tab:NewSection("V1")
local Section = Tab:NewSection("V2")
local Section = Tab:NewSection("V3")
local Section = Tab:NewSection("V4 | Latest Version")
local Section = Tab:NewSection("V5")

local Section = Tab:NewSection("Update")


local Section = Tab:NewSection("Renamed 5 Buttons To Different
Names")
local Section = Tab:NewSection("Made Custom Hitbox Work")
local Section = Tab:NewSection("Revamped Modded Guns")
local Section = Tab:NewSection("Fixed Hitbox script")

local Tab = Window:NewTab("LEAKS")


local Section = Tab:NewSection("V5 Leaks")
local Section = Tab:NewSection("Making More Scripts In Script
Hub")
local Section = Tab:NewSection("Renaming Alot Of Things")
local Section = Tab:NewSection("Making Aimbot Better")
local Section = Tab:NewSection("Making A Better Tracers")
local Section = Tab:NewSection("Fixed Options")

local Tab = Window:NewTab("Home")


local Section = Tab:NewSection("Created By ProEternalx1")
local Section = Tab:NewSection("yezsh did expand script")
local Section = Tab:NewSection("Welcome To Externder Hub")
Section:NewSlider(
"Walkspeed",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)
[Link] =
s
end
)
Section:NewSlider(
"Jump Power",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)
[Link] =
s
end
)

local Tab = Window:NewTab("Kriff Ziz Hub")


local Section = Tab:NewSection("Prison Hub Made By
ProEternalx1")
Section:NewButton(
"Click (press , to open",
"You have to be r15",
function()
local Library =
loadstring(

game:HttpGet("[Link]
[Link]")
)()

local Window =
[Link](
"Kriff Ziz | Made By ProEternalx1 |Contact Me If
theres Problems",
"Midnight"
)
local Tab = Window:NewTab("Player")
local Section = Tab:NewSection("local player")
Section:NewLabel("Walkspeed")
Section:NewSlider(
"Walkspeed",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)

Section:NewLabel("Jump Power")
Section:NewSlider(
"JumpPower",
"JumpPower",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)

local Section = Tab:NewSection("Fly Script | E To


Disable Flight!")
Section:NewButton(
"Fly",
"Fly Around",
function()

loadstring(game:HttpGet("[Link]
end
)

local Tab = Window:NewTab("Misc")

local Section = Tab:NewSection("Admin | Gives Admin!")


Section:NewButton(
"Get Admin!",
"Get Yourself A Free Admin!",
function()
loadstring(
game:HttpGet(

("[Link]
true
)
)()
end
)

local Section = Tab:NewSection("Noclip! | Reset To Stop


Noclip!")
Section:NewButton(
"noclip",
"walk anywhere without getting blocked by a wall!",
function()
local StealthMode = true -- If game has an
anticheat that checks the logs

local Indicator

if not StealthMode then


local ScreenGui = [Link]("ScreenGui",
[Link])
print("NOCLIP: Press E to Activate")
Indicator = [Link]("TextLabel",
ScreenGui)
[Link] = [Link](0, 1)
[Link] = [Link](0, 0, 1, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = 1
[Link] = true
[Link] = 0
Indicator.TextColor3 = [Link](0, 0, 0)
Indicator.TextStrokeColor3 = [Link](1,
1, 1)
[Link] = "Noclip: Enabled"
end

local noclip = false


local player = [Link]
local character = [Link] or
[Link]:Wait()

local mouse = player:GetMouse()

[Link]:Connect(
function(key)
if key == "e" then
noclip = not noclip

if not StealthMode then


[Link] = "Noclip: " ..
(noclip and "Enabled" or "Disabled")
end
end
end
)

while true do
player = [Link]
character = [Link]

if noclip then
for _, v in
pairs(character:GetDescendants()) do
pcall(
function()
if v:IsA("BasePart") then
[Link] = false
end
end
)
end
end

game:GetService("RunService").Stepped:wait()
end
end
)

local Section = Tab:NewSection("Teleport! | Reset To


Stop Noclip!")
Section:NewButton(
"tptool",
"walk anywhere without getting blocked by a wall!",
function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Equip to Click TP"
[Link]:connect(
function()
local pos = [Link] + [Link](0,
2.5, 0)
pos = [Link](pos.X, pos.Y, pos.Z)

[Link] = pos
end
)
[Link] = [Link]
end
)

local Tab = Window:NewTab("Weapons")


local Section = Tab:NewSection("local weapons")
Section:NewButton(
"Get All Weapons | Updated! NEW/BETTER VERSION",
"Gets Every Weapons",
function()
for i, v in
pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
lol =
[Link]:InvokeServer([Link])
print(lol)
end
end
)

local Section = Tab:NewSection("Mod")

Section:NewLabel("AK-47")

Section:NewButton(
"MOD AK-47",
"Mod Your AK-47!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("AK-
47")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("M9")

Section:NewButton(
"MOD M9",
"Mod Your M9!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("M9")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("Remington 870")

Section:NewButton(
"MOD Remington 870",
"Mod Your Remington 870!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("Remington 870")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

local Tab = Window:NewTab("Updates!")

local Section = Tab:NewSection("Update")

Section:NewLabel(
"Added Admin Commands! | Click F9 To Open Script! |
credits to the owners!"
)

Section:NewLabel("Added Modded Guns! | It Will Mod You


Gun Yeah")

Section:NewLabel("Added Misc! | I Added Misc Cuz Yes")

Section:NewLabel("Changed The Color Script! | I Changed


The Color Because Pro")

Section:NewLabel("Added Weapons! | I Added Weapons So


Its Better")

Section:NewLabel("Added Updates! | dont care im adding


updates")

Section:NewLabel("Added Credits! | dont care im adding


credits also")
local Tab = Window:NewTab("Credits!")

local Library =
loadstring(

game:HttpGet("[Link]
[Link]")
)()

local Window =
[Link](
"Prison Hub | Made By ProEternalx1 |Contact Me If
theres Problems",
"Midnight"
)

local Tab = Window:NewTab("Player")


local Section = Tab:NewSection("local player")
Section:NewLabel("Walkspeed")
Section:NewSlider(
"Walkspeed",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)

Section:NewLabel("Jump Power")
Section:NewSlider(
"JumpPower",
"JumpPower",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)

local Section = Tab:NewSection("Fly Script | E To


Disable Flight!")
Section:NewButton(
"Fly",
"Fly Around",
function()

loadstring(game:HttpGet("[Link]
end
)

local Tab = Window:NewTab("Misc")

local Section = Tab:NewSection("Admin | Gives Admin!")


Section:NewButton(
"Get Admin!",
"Get Yourself A Free Admin!",
function()
loadstring(
game:HttpGet(

("[Link]
true
)
)()
end
)

local Section = Tab:NewSection("Noclip! | Reset To Stop


Noclip!")
Section:NewButton(
"noclip",
"walk anywhere without getting blocked by a wall!",
function()
local StealthMode = true -- If game has an
anticheat that checks the logs

local Indicator

if not StealthMode then


local ScreenGui = [Link]("ScreenGui",
[Link])
print("NOCLIP: Press E to Activate")
Indicator = [Link]("TextLabel",
ScreenGui)
[Link] = [Link](0, 1)
[Link] = [Link](0, 0, 1, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = 1
[Link] = true
[Link] = 0
Indicator.TextColor3 = [Link](0, 0, 0)
Indicator.TextStrokeColor3 = [Link](1,
1, 1)
[Link] = "Noclip: Enabled"
end
local noclip = false
local player = [Link]
local character = [Link] or
[Link]:Wait()

local mouse = player:GetMouse()

[Link]:Connect(
function(key)
if key == "e" then
noclip = not noclip

if not StealthMode then


[Link] = "Noclip: " ..
(noclip and "Enabled" or "Disabled")
end
end
end
)

while true do
player = [Link]
character = [Link]

if noclip then
for _, v in
pairs(character:GetDescendants()) do
pcall(
function()
if v:IsA("BasePart") then
[Link] = false
end
end
)
end
end

game:GetService("RunService").Stepped:wait()
end
end
)

local Section = Tab:NewSection("Teleport! | Reset To


Stop Noclip!")
Section:NewButton(
"tptool",
"walk anywhere without getting blocked by a wall!",
function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Equip to Click TP"
[Link]:connect(
function()
local pos = [Link] + [Link](0,
2.5, 0)
pos = [Link](pos.X, pos.Y, pos.Z)

[Link] = pos
end
)
[Link] = [Link]
end
)

local Tab = Window:NewTab("Weapons")


local Section = Tab:NewSection("local weapons")
Section:NewButton(
"Get All Weapons | Outdated",
"Gets Every Weapons",
function()
for i, v in
pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
lol =
[Link]:InvokeServer([Link])
print(lol)
end
end
)

local Section = Tab:NewSection("Mod")


Section:NewLabel("AK-47")

Section:NewButton(
"MOD AK-47",
"Mod Your AK-47!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("AK-
47")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("M9")

Section:NewButton(
"MOD M9",
"Mod Your M9!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("M9")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("Remington 870")

Section:NewButton(
"MOD Remington 870",
"Mod Your Remington 870!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("Remington 870")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 45000
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("Taser")

Section:NewButton(
"MOD Taser",
"Mod Your Taser!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("Taser")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

local Tab = Window:NewTab("Updates!")

local Section = Tab:NewSection("Update")

Section:NewLabel(
"Added Admin Commands! | Click F9 To Open Script! |
credits to the owners!"
)

Section:NewLabel("Added Modded Guns! | It Will Mod You


Gun Yeah")

Section:NewLabel("Added Misc! | I Added Misc Cuz Yes")

Section:NewLabel("Changed The Color Script! | I Changed


The Color Because Pro")

Section:NewLabel("Added Weapons! | I Added Weapons So


Its Better")

Section:NewLabel("Added Updates! | dont care im adding


updates")

Section:NewLabel("Added Credits! | dont care im adding


credits also")

local Tab = Window:NewTab("Credits!")

local Section = Tab:NewSection("Credits")

Section:NewLabel("Credits For The Owner Of Admin CMD")

local Tab = Window:NewTab("Date And Time!")

local Section = Tab:NewSection("Time And Date")

Section:NewLabel("1/18/2023")
end
)

local Tab = Window:NewTab("Animation Packs")


local Section = Tab:NewSection("Emotes")

Section:NewButton(
"Click (press , to open",
"You have to be r15",
function()
loadstring(

game:HttpGetAsync("[Link]
[Link]")
)()
end
)

local Tab = Window:NewTab("Flag Wars")


local Section = Tab:NewSection("Modded Guns")

Section:NewButton(
"Click",
"ButtonInfo",
function()
local mt = getrawmetatable(game)
setreadonly(mt, false)
local index = mt.__index
local Mods = {
-- Guns (Spas, Sniper, etc)
["RecoilMax"] = 0.1,
["RecoilMin"] = 0.1,
["MuzzleFlashSize0"] = 0,
["MuzzleFlashSize1"] = 0,
["FlashBrightness"] = 0,
["AmmoCapacity"] = 9e9,
["ShotCooldown"] = 0,
["CurrentAmmo"] = 9e9,
["BulletSpeed"] = 9e9,
["FireMode"] = "Automatic",
["GravityFactor"] = 0,
["MaxSpread"] = 0,
["MinSpread"] = 0,
["HitDamage"] = 500,
["NumProjectiles"] = 1,
-- Melee (Shovel, Sword, etc)
["Cooldown"] = 0.5,
["Value"] = 0.5,
["DirtDamage"] = 500000,
["SwingCooldown"] = 0.5,
["HitRate"] = 0.5
}

mt.__index = function(a, b)
if Mods[tostring(a)] then
if tostring(b) == "Value" then
return Mods[tostring(a)]
end
end
return index(a, b)
end

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Done!",
"All"
)
end
)

local Tab = Window:NewTab("Misc")


local Section = Tab:NewSection("Expand Your Hitbox")
Section:NewButton(
"Click",
"ButtonInfo",
function()
_G.HeadSize = 20
_G.Disabled = true
game:GetService("RunService").RenderStepped:connect(
function()
if _G.Disabled then
for i, v in next,
game:GetService("Players"):GetPlayers() do
if [Link] ~=
game:GetService("Players").[Link] then
pcall(
function()

[Link] =

[Link](_G.HeadSize, _G.HeadSize, _G.HeadSize)

[Link] = 0.9

[Link] = [Link]("Red")

[Link] = "Neon"

[Link] = false
end
)
end
end
end
end
)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Done!",
"All"
)
end
)

local Section = Tab:NewSection("ESP")


Section:NewButton(
"Click",
"See Players",
function()
getgenv().enabled = true --Toggle on/off
getgenv().filluseteamcolor = true --Toggle fill color
using player team color on/off
getgenv().outlineuseteamcolor = true --Toggle outline
color using player team color on/off
getgenv().fillcolor = [Link](0, 0, 0) --Change fill
color, no need to edit if using team color
getgenv().outlinecolor = [Link](1, 1, 1) --Change
outline color, no need to edit if using team color
getgenv().filltrans = 0.7 --Change fill transparency
getgenv().outlinetrans = 0.3 --Change outline
transparency

loadstring(

game:HttpGet("[Link]
)()
end
)

local Section = Tab:NewSection("Tp To Random User")


Section:NewButton(
"Click",
"See Players",
function()
end
)

local Section = Tab:NewSection("Custom Hitbox")

Section:NewSlider(
"Custom Hitbox",
"SliderInfo",
110,
0,
function(s) -- 110 (MaxValue) | 0 (MinValue)
[Link] = s
end
)

local Section = Tab:NewSection("Tracer")

Section:NewButton(
"Aimbot",
"ButtonInfo",
function()
local dwCamera = [Link]
local dwRunService = game:GetService("RunService")
local dwUIS = game:GetService("UserInputService")
local dwEntities = game:GetService("Players")
local dwLocalPlayer = [Link]
local dwMouse = dwLocalPlayer:GetMouse()

local settings = {
Aimbot = true,
Aiming = false,
Aimbot_AimPart = "Head",
Aimbot_TeamCheck = true,
Aimbot_Draw_FOV = true,
Aimbot_FOV_Radius = 60,
Aimbot_FOV_Color = [Link](255, 255, 255)
}

local fovcircle = [Link]("Circle")


[Link] = settings.Aimbot_Draw_FOV
[Link] = settings.Aimbot_FOV_Radius
[Link] = settings.Aimbot_FOV_Color
[Link] = 1
[Link] = false
[Link] = 1

[Link] =
[Link]([Link].X / 2, [Link].Y / 2)
[Link]:Connect(
function(i)
if [Link] ==
[Link].MouseButton2 then
[Link] = true
end
end
)

[Link]:Connect(
function(i)
if [Link] ==
[Link].MouseButton2 then
[Link] = false
end
end
)

[Link]:Connect(
function()
local dist = [Link]
local closest_char = nil

if [Link] then
for i, v in next, dwEntities:GetChildren()
do
if
v ~= dwLocalPlayer and [Link]
and

[Link]:FindFirstChild("HumanoidRootPart") and

[Link]:FindFirstChild("Humanoid") and

[Link]:FindFirstChild("Humanoid").Health > 0
then
if
settings.Aimbot_TeamCheck ==
true and [Link] ~= [Link] or
settings.Aimbot_TeamCheck
== false
then
local char = [Link]
local char_part_pos,
is_onscreen =

dwCamera:WorldToViewportPoint(

char[settings.Aimbot_AimPart].Position
)

if is_onscreen then
local mag =
([Link](dwMouse.X,
dwMouse.Y) -
[Link](char_part_pos.X, char_part_pos.Y)).Magnitude

if mag < dist and mag <


settings.Aimbot_FOV_Radius then
dist = mag
closest_char = char
end
end
end
end
end

if
closest_char ~= nil and
closest_char:FindFirstChild("HumanoidRootPart") and

closest_char:FindFirstChild("Humanoid") and

closest_char:FindFirstChild("Humanoid").Health > 0
then
[Link] =
[Link](
[Link],

closest_char[settings.Aimbot_AimPart].Position
)
end
end
end
)
end
)

local Tab = Window:NewTab("UI Toggles")


local Section = Tab:NewSection("Toggles")

Section:NewKeybind(
"Close/Open Ui",
"KeybindInfo",
[Link].B,
function()
Library:ToggleUI()
end
)

Section:NewKeybind(
"TP Hold Z to tp",
"KeybindInfo",
[Link].Z,
function()
local Plr = game:GetService("Players").LocalPlayer
local Mouse = Plr:GetMouse()

Mouse.Button1Down:connect(
function()
if not
game:GetService("UserInputService"):IsKeyDown([Link].Z) then
return
end
if not [Link] then
return
end
[Link]:MoveTo([Link].p)
end
)
end
)

Section:NewKeybind(
"Chatspammer",
"KeybindInfo",
[Link].M,
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(5)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Im Tracing You Like Im Tracing Your Mom",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Im Tracing You Like Im Tracing Your Mom",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Im Tracing You Like Im Tracing Your Mom",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Im Tracing You Like Im Tracing Your Mom",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Im Tracing You Like Im Tracing Your Mom",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : I Wonder Why I Wonder How You Died",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub Has A Pro Gaming Chair",
"All"
)
wait(1)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Roses Are Red Violets Are Blue You Just Died Out
Of You",
"All"
)
wait(1)
game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Extender Hub > V.j Hub",
"All"
)
wait(1)
end
)

local Tab = Window:NewTab("Script Gui")


local Section = Tab:NewSection("Script Hub")

Section:NewButton(
"Artenis Z/Softbed",
"Bedwars",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : Loaded Vape V4",
"All"
)
loadstring(
game:HttpGet(

"[Link]
[Link]",
true
)
)()
end
)

Section:NewButton(
"Keyboard Gui",
"For Scripts",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : Loaded Keyboard Gui",
"All"
)
end
)

Section:NewButton(
"Phantom Forces",
"For Scripts",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : Loaded Phatom Forces",
"All"
)

loadstring(game:HttpGet("[Link]
Startup"))(

)
end
)

local Section = Tab:NewSection("Arsenal")

Section:NewButton(
"Owl Hub",
"Executes Owl Hub",
function()
loadstring(

game:HttpGet("[Link]
)()
end
)
Section:NewButton(
"V.G Hub",
"Executes V.G Hub",
function()

loadstring(game:HttpGet("[Link]
[Link]"))()
end
)

local Section = Tab:NewSection("Combat Warriors")

Section:NewButton(
"Nova Hub",
"Executes Nova Hub",
function()
loadstring(
game:HttpGet(

"[Link]
)
)()
end
)

Section:NewButton(
"Hydra Hub",
"Executes Hydra Hub",
function()
loadstring(
game:HttpGet(

"[Link]
%[Link]",
true
)
)()
end
)

local Section = Tab:NewSection("Zombie Attack")


Section:NewButton(
"Zombie Hub",
"Executes Zombie Hub",
function()
loadstring(
game:HttpGet(

"[Link]
%[Link]"
)
)()
end
)

local Section = Tab:NewSection("Evade")

Section:NewButton(
"Evade Hub",
"Executes Evade Hub",
function()
loadstring(
game:HttpGet(

"[Link]
)
)()
end
)

local Section = Tab:NewSection("Edward The Man Eating Train")

Section:NewButton(
"Edward Hub",
"Executes Edward Hub",
function()
loadstring(

game:HttpGet("[Link]
true)
)()
end
)

Section:NewButton(
"Choo Choo Hub",
"Executes Choo Choo Hub",
function()
for i, v in pairs(getgc(true)) do
if type(v) == "table" and rawget(v,
"IntValue_MaxDamageRange") ~= nil then
--add other tables below this--
v.IntValue_PelletCount = 100
v.IntValue_MaxMagazine = 1000
v.IntValue_MaxReserve = 1000
end
end
end
)
end
)

Section:NewButton(
"HIGH QUALITY",
"ButtonInfo",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loaded High Quality Script!",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "This Was Made By Hubble Bubble Scripter!",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

local Library =
loadstring(

game:HttpGet("[Link]
[Link]")
)()

local Window = [Link]("Extender Hub V3 | HIGH


QUALITY", "BloodTheme")

local Tab = Window:NewTab("Versions")


local Section = Tab:NewSection("V1")
local Section = Tab:NewSection("V2")
local Section = Tab:NewSection("V3 | Latest Version")
local Section = Tab:NewSection("V4")
local Section = Tab:NewSection("V5")

local Tab = Window:NewTab("Updates")


local Section = Tab:NewSection("Renamed 5 Buttons To Different
Names")
local Section = Tab:NewSection("Made Custom Hitbox Work")
local Section = Tab:NewSection("Revamped Modded Guns")
local Section = Tab:NewSection("Fixed Hitbox script")
local Section = Tab:NewSection("MADE FE SCRIPTS")

local Tab = Window:NewTab("LEAKS")


local Section = Tab:NewSection("V5 Leaks")
local Section = Tab:NewSection("Making More Scripts In Script
Hub")
local Section = Tab:NewSection("Renaming Alot Of Things")
local Section = Tab:NewSection("Making Aimbot Better")
local Section = Tab:NewSection("Making A Better Tracers")
local Section = Tab:NewSection("Fixed Options")

local Tab = Window:NewTab("Home")


local Section = Tab:NewSection("Created By ProEternalx1")
local Section = Tab:NewSection("yezsh did expand script")
local Section = Tab:NewSection("Welcome To Externder Hub")
Section:NewSlider(
"Walkspeed",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)
[Link] =
s
end
)
Section:NewSlider(
"Jump Power",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)
[Link] =
s
end
)

local Tab = Window:NewTab("Flag Wars")


local Section = Tab:NewSection("Modded Guns")

Section:NewButton(
"Click",
"ButtonInfo",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Succesfully Modded Your Guns!",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
local mt = getrawmetatable(game)
setreadonly(mt, false)
local index = mt.__index
local Mods = {
-- Guns (Spas, Sniper, etc)
["RecoilMax"] = 0.1,
["RecoilMin"] = 0.1,
["MuzzleFlashSize0"] = 0,
["MuzzleFlashSize1"] = 0,
["FlashBrightness"] = 0,
["AmmoCapacity"] = 9e9,
["ShotCooldown"] = 0,
["CurrentAmmo"] = 9e9,
["BulletSpeed"] = 9e9,
["FireMode"] = "Automatic",
["GravityFactor"] = 0,
["MaxSpread"] = 0,
["MinSpread"] = 0,
["HitDamage"] = 500,
["NumProjectiles"] = 1,
-- Melee (Shovel, Sword, etc)
["Cooldown"] = 0.5,
["Value"] = 0.5,
["DirtDamage"] = 500000,
["SwingCooldown"] = 0.5,
["HitRate"] = 0.5
}

mt.__index = function(a, b)
if Mods[tostring(a)] then
if tostring(b) == "Value" then
return Mods[tostring(a)]
end
end
return index(a, b)
end
end
)

local Section = Tab:NewSection("Prison Hub Made By


ProEternalx1")
Section:NewButton(
"Click",
"Prison",
function()
local Library =
loadstring(

game:HttpGet("[Link]
[Link]")
)()

local Window =
[Link](
"Kriff Ziz | Made By ProEternalx1 |Contact Me If
theres Problems",
"Midnight"
)

local Tab = Window:NewTab("Player")


local Section = Tab:NewSection("local player")
Section:NewLabel("Walkspeed")
Section:NewSlider(
"Walkspeed",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)
Section:NewLabel("Jump Power")
Section:NewSlider(
"JumpPower",
"JumpPower",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)
local Section = Tab:NewSection("Fly Script | E To
Disable Flight!")
Section:NewButton(
"Fly",
"Fly Around",
function()

loadstring(game:HttpGet("[Link]
end
)

local Tab = Window:NewTab("Misc")

local Section = Tab:NewSection("Admin | Gives Admin!")


Section:NewButton(
"Get Admin!",
"Get Yourself A Free Admin!",
function()
loadstring(
game:HttpGet(

("[Link]
true
)
)()
end
)

local Section = Tab:NewSection("Noclip! | Reset To Stop


Noclip!")
Section:NewButton(
"noclip",
"walk anywhere without getting blocked by a wall!",
function()
local StealthMode = true -- If game has an
anticheat that checks the logs

local Indicator

if not StealthMode then


local ScreenGui = [Link]("ScreenGui",
[Link])
print("NOCLIP: Press E to Activate")
Indicator = [Link]("TextLabel",
ScreenGui)
[Link] = [Link](0, 1)
[Link] = [Link](0, 0, 1, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = 1
[Link] = true
[Link] = 0
Indicator.TextColor3 = [Link](0, 0, 0)
Indicator.TextStrokeColor3 = [Link](1,
1, 1)
[Link] = "Noclip: Enabled"
end

local noclip = false


local player = [Link]
local character = [Link] or
[Link]:Wait()

local mouse = player:GetMouse()

[Link]:Connect(
function(key)
if key == "O" then
noclip = not noclip

if not StealthMode then


[Link] = "Noclip: " ..
(noclip and "Enabled" or "Disabled")
end
end
end
)

while true do
player = [Link]
character = [Link]

if noclip then
for _, v in
pairs(character:GetDescendants()) do
pcall(
function()
if v:IsA("BasePart") then
[Link] = false
end
end
)
end
end

game:GetService("RunService").Stepped:wait()
end
end
)

local Section = Tab:NewSection("Teleport! | Reset To


Stop Noclip!")
Section:NewButton(
"tptool",
"walk anywhere without getting blocked by a wall!",
function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Equip to Click TP"
[Link]:connect(
function()
local pos = [Link] + [Link](0,
2.5, 0)
pos = [Link](pos.X, pos.Y, pos.Z)

[Link] = pos
end
)
[Link] = [Link]
end
)

local Tab = Window:NewTab("Weapons")


local Section = Tab:NewSection("local weapons")
Section:NewButton(
"Get All Weapons | Updated! NEW/BETTER VERSION",
"Gets Every Weapons",
function()
for i, v in
pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
lol =
[Link]:InvokeServer([Link])
print(lol)
end
end
)

local Section = Tab:NewSection("Mod")

Section:NewLabel("AK-47")

Section:NewButton(
"MOD AK-47",
"Mod Your AK-47!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("AK-
47")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("M9")
Section:NewButton(
"MOD M9",
"Mod Your M9!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("M9")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("Remington 870")

Section:NewButton(
"MOD Remington 870",
"Mod Your Remington 870!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("Remington 870")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

local Tab = Window:NewTab("Updates!")

local Section = Tab:NewSection("Update")

Section:NewLabel(
"Added Admin Commands! | Click F9 To Open Script! |
credits to the owners!"
)

Section:NewLabel("Added Modded Guns! | It Will Mod You


Gun Yeah")
Section:NewLabel("Added Misc! | I Added Misc Cuz Yes")

Section:NewLabel("Changed The Color Script! | I Changed


The Color Because Pro")

Section:NewLabel("Added Weapons! | I Added Weapons So


Its Better")

Section:NewLabel("Added Updates! | dont care im adding


updates")

Section:NewLabel("Added Credits! | dont care im adding


credits also")

local Tab = Window:NewTab("Credits!")

local Library =
loadstring(

game:HttpGet("[Link]
[Link]")
)()

local Window =
[Link](
"Prison Hub | Made By ProEternalx1 |Contact Me If
theres Problems",
"Midnight"
)

local Tab = Window:NewTab("Player")


local Section = Tab:NewSection("local player")
Section:NewLabel("Walkspeed")
Section:NewSlider(
"Walkspeed",
"Walkspeed",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)

Section:NewLabel("Jump Power")
Section:NewSlider(
"JumpPower",
"JumpPower",
500,
0,
function(s) -- 500 (MaxValue) | 0 (MinValue)

[Link] = s
end
)

local Section = Tab:NewSection("Fly Script | E To


Disable Flight!")
Section:NewButton(
"Fly",
"Fly Around",
function()

loadstring(game:HttpGet("[Link]
end
)

local Tab = Window:NewTab("Misc")

local Section = Tab:NewSection("Admin | Gives Admin!")


Section:NewButton(
"Get Admin!",
"Get Yourself A Free Admin!",
function()
loadstring(
game:HttpGet(

("[Link]
true
)
)()
end
)

local Section = Tab:NewSection("Noclip! | Reset To Stop


Noclip!")
Section:NewButton(
"noclip",
"walk anywhere without getting blocked by a wall!",
function()
local StealthMode = true -- If game has an
anticheat that checks the logs

local Indicator

if not StealthMode then


local ScreenGui = [Link]("ScreenGui",
[Link])
print("NOCLIP: Press E to Activate")
Indicator = [Link]("TextLabel",
ScreenGui)
[Link] = [Link](0, 1)
[Link] = [Link](0, 0, 1, 0)
[Link] = [Link](0, 200, 0, 50)
[Link] = 1
[Link] = true
[Link] = 0
Indicator.TextColor3 = [Link](0, 0, 0)
Indicator.TextStrokeColor3 = [Link](1,
1, 1)
[Link] = "Noclip: Enabled"
end

local noclip = false


local player = [Link]
local character = [Link] or
[Link]:Wait()
local mouse = player:GetMouse()

[Link]:Connect(
function(key)
if key == "e" then
noclip = not noclip

if not StealthMode then


[Link] = "Noclip: " ..
(noclip and "Enabled" or "Disabled")
end
end
end
)

while true do
player = [Link]
character = [Link]

if noclip then
for _, v in
pairs(character:GetDescendants()) do
pcall(
function()
if v:IsA("BasePart") then
[Link] = false
end
end
)
end
end

game:GetService("RunService").Stepped:wait()
end
end
)

local Section = Tab:NewSection("Teleport! | Reset To


Stop Noclip!")
Section:NewButton(
"tptool",
"walk anywhere without getting blocked by a wall!",
function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Equip to Click TP"
[Link]:connect(
function()
local pos = [Link] + [Link](0,
2.5, 0)
pos = [Link](pos.X, pos.Y, pos.Z)

[Link] = pos
end
)
[Link] = [Link]
end
)

local Tab = Window:NewTab("Weapons")


local Section = Tab:NewSection("local weapons")
Section:NewButton(
"Get All Weapons | Updated",
"Gets Every Weapons",
function()
for i, v in
pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
lol =
[Link]:InvokeServer([Link])
print(lol)
end
end
)

local Section = Tab:NewSection("Mod")

Section:NewLabel("AK-47")

Section:NewButton(
"MOD AK-47",
"Mod Your AK-47!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun = [Link]:FindFirstChild("AK-
47")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("M9")

Section:NewButton(
"MOD M9",
"Mod Your M9!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("M9")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 1
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("Remington 870")

Section:NewButton(
"MOD Remington 870",
"Mod Your Remington 870!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("Remington 870")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 45000
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

Section:NewLabel("Taser")

Section:NewButton(
"MOD Taser",
"Mod Your Taser!",
function()
local player =
game:GetService("Players").LocalPlayer
local gun =
[Link]:FindFirstChild("Taser")
local sM =
require(gun:FindFirstChild("GunStates"))
sM["Damage"] = 40
sM["MaxAmmo"] = 9999991
sM["StoredAmmo"] = 9999991
sM["FireRate"] = 0.05
sM["AmmoPerClip"] = 9999991
sM["Range"] = 5000
sM["ReloadTime"] = 0.05
sM["Bullets"] = 1
sM["AutoFire"] = true
end
)

local Tab = Window:NewTab("Updates!")


local Section = Tab:NewSection("Update")
Section:NewLabel(
"Added Admin Commands! | Click F9 To Open Script! |
credits to the owners!"
)

Section:NewLabel("Added Modded Guns! | It Will Mod You


Gun Yeah")

Section:NewLabel("Added Misc! | I Added Misc Cuz Yes")

Section:NewLabel("Changed The Color Script! | I Changed


The Color Because Pro")

Section:NewLabel("Added Weapons! | I Added Weapons So


Its Better")

Section:NewLabel("Added Updates! | dont care im adding


updates")

Section:NewLabel("Added Credits! | dont care im adding


credits also")

local Tab = Window:NewTab("Credits!")

local Section = Tab:NewSection("Credits")

Section:NewLabel("Credits For The Owner Of Admin CMD")

local Tab = Window:NewTab("Date And Time!")

local Section = Tab:NewSection("Time And Date")

Section:NewLabel("1/18/2023")
end
)

local Tab = Window:NewTab("Misc")


local Section = Tab:NewSection("Expand Your Hitbox")

Section:NewButton(
"Click",
"ButtonInfo",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Expanded Your Hitbox XD",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

_G.HeadSize = 15
_G.Disabled = true
game:GetService("RunService").RenderStepped:connect(
function()
if _G.Disabled then
for i, v in next,
game:GetService("Players"):GetPlayers() do
if [Link] ~=
game:GetService("Players").[Link] then
pcall(
function()

[Link] =

[Link](_G.HeadSize, _G.HeadSize, _G.HeadSize)

[Link] = 0.9

[Link] = [Link]("Red")

[Link] = "Neon"

[Link] = false
end
)
end
end
end
end
)

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"Done!",
"All"
)
end
)

local Section = Tab:NewSection("Mouse Fe Fling")


Section:NewButton(
"Click",
"ButtonInfo",
function()
for i, v in next,
game:GetService("Players").[Link]:GetDescendants() do
if v:IsA("BasePart") and [Link] ~=
"HumanoidRootPart" then

game:GetService("RunService").Heartbeat:connect(
function()
[Link] = [Link](0, -30, 0)
wait(0.5)
end
)
end
end

function rmesh(HatName)
for _, mesh in next,
workspace[[Link]][HatName]:GetDescendants() do
if mesh:IsA("Mesh") or mesh:IsA("SpecialMesh")
then
mesh:Remove()
end
end
end

function create(part, parent, position, rotation)


[Link]:Remove()
[Link]("Attachment", part)
[Link]("AlignPosition", part)
[Link]("AlignOrientation", part)
[Link]("Attachment", parent)
[Link].Attachment0 = [Link]
[Link].Attachment0 = [Link]
[Link].Attachment1 = [Link]
[Link].Attachment1 =
[Link]
[Link] = position
[Link] = rotation
[Link] = 200
[Link] = 200
[Link] = 9999999
[Link] = false
[Link] = 9999999
end

local LocalPlayer = [Link]

function eswait(num)
if num == 0 or num == nil then
game:service("RunService").Stepped:wait(0)
else
for i = 0, num do
game:service("RunService").Stepped:wait(0)
end
end
end

function makepart(hat, part)


[Link]("Part", workspace[[Link]])
workspace[[Link]].[Link] = "lerp" ..
hat
workspace[[Link]]["lerp" ..
hat].CanCollide = false
workspace[[Link]]["lerp" .. hat].Size =
workspace[[Link]][hat].[Link]
workspace[[Link]]["lerp" ..
hat].Transparency = 1
[Link]("Weld", workspace[[Link]]
["lerp" .. hat])
create(
workspace[[Link]][hat].Handle,
workspace[[Link]]["lerp" .. hat],
[Link](),
[Link]()
)
workspace[[Link]]["lerp" ..
hat].Weld.Part0 =
workspace[[Link]]["lerp" .. hat]
workspace[[Link]]["lerp" ..
hat].Weld.Part1 =
workspace[[Link]][part]
workspace[[Link]]["lerp" .. hat].Weld.C0
=
workspace[[Link]]["lerp" ..
hat].CFrame:inverse() *
workspace[[Link]][part].CFrame *
[Link](0, 0, 0) *
[Link]([Link](0), [Link](0), 0)
end

local hatsine = 0

local hatchange = 1

function clerp(
hat,
ppx,
ppy,
pppz,
rrrx,
rrry,
rrz,
lppx,
lppy,
lpppz,
lrrrx,
lrrry,
lrrz,
speed)
[Link](
function()
while true do
hatsine = hatsine + speed

workspace[[Link]]["lerp" .. hat].Weld.C0 =

workspace[[Link]]["lerp" .. hat].Weld.C0:lerp(
[Link](
ppx + lppx * [Link](hatsine /
11),
ppy + lppy * [Link](hatsine /
11),
pppz + lpppz * [Link](hatsine
/ 11)
) *
[Link](
[Link](rrrx + lrrrx *
[Link](hatsine / 11)),
[Link](rrry + lrrry *
[Link](hatsine / 11)),
[Link](rrz + lrrz *
[Link](hatsine / 11))
),
0.1
)
eswait()
end
end
)()
end

local player = [Link]


local character1 = [Link]
local mouse = player:GetMouse()

local fakebody = [Link]("Part", character1)


[Link] = 1
[Link] = true
[Link] = false
[Link] = [Link]
[Link] = "FPart"
wait()
_G.ReanimationType = "PDeath" --PDeath, Fling, Simple
_G.Velocity = [Link](36, 0, 0)
_G.FlingBlock = true
_G.FlingBlockTransparency = 1
_G.HighlightFlingBlock = true
_G.FlingBlockPosition = "FPart"
_G.HighlightFlingBlockColor = [Link](255, 0, 0)

loadstring(
game:HttpGet(

"[Link]
[Link]"
)
)()
wait(1)

[Link]:connect(
function(key)
if key == "e" then
[Link] =
[Link].p
end
end
)

rmesh("Pink Hair")
rmesh("Kate Hair")

makepart("Kate Hair", "Right Arm")


clerp("Kate Hair", 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1)

makepart("Pink Hair", "Right Arm")


clerp("Pink Hair", 0, 0.5, -2, -90, 0, 0, 0, 0, 0, 0,
0, 0, 1)

local Scale =
[Link].X / 2
*

([Link]:FindFirstChild("ScaleInserted") ~= nil
and

[Link]:FindFirstChild("ScaleInserted").Scale.Z or
1) *
0.8
local Speed = 20 * Scale
local Gravity = 0.1

local Player = [Link]


local Character = [Link]
local Humanoid = [Link]

Humanoid:SetStateEnabled([Link], false)
local Torso = [Link]
local Mouse = [Link]:GetMouse()
local RenderStepped =
game:GetService("RunService").RenderStepped
local Camera = [Link]
Camera:ClearAllChildren()
local Model = [Link]("Model", Character)
local IgnoreList = {Character, [Link]}

local Part0Joint = [Link]([Link](1, 0.75, 0) *


Scale * 1.25)
local Part1Joint = [Link]([Link](-0.5, 0.75,
0) * Scale * 1.25)
local RotationOffset = [Link]([Link](90),
[Link](0), 0)
local Gangster = false

local Part0JointHead = [Link]([Link](0, 1, 0)


* Scale * 1.25)
local Part1JointHead = [Link]([Link](0, -0.5,
0) * Scale * 1.25)
local RotationOffsetHead = [Link](0, 0, 0)

local Handle = [Link]("Part", Model)


[Link] = false
[Link] = "Handle"
[Link] = [Link](0, 100, 0)
Handle:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Handle)
[Link] = [Link](0.25, 1, 0.4) / 0.2 * Scale
local HandleWeld = [Link]("Motor6D")
HandleWeld.Part0 = Character["Right Arm"]
HandleWeld.Part1 = Handle
HandleWeld.C0 =
[Link]([Link](0, -1, 0) * Scale) *
[Link]([Link](-105), 0, 0)
[Link] = Handle

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("CylinderMesh", Part)
[Link] = [Link](0.07, 0.2, 0.07) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](-0.115, -0.475, -0.190) *
Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("CylinderMesh", Part)
[Link] = [Link](0.07, 0.2, 0.07) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0.115, -0.475,
0.190) * Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("CylinderMesh", Part)
[Link] = [Link](0.07, 0.2, 0.07) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](-0.115, -0.475, 0.190) *
Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("CylinderMesh", Part)
[Link] = [Link](0.07, 0.2, 0.07) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](0.115, -0.475, -0.190) *
Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.23, 0.2, 0.1) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0, -0.475, -0.175)
* Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.23, 0.2, 0.1) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0, -0.475, 0.175)
* Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.1, 0.2, 0.38) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](-0.1, -0.475, 0) *
Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.1, 0.2, 0.38) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0.1, -0.475, 0) *
Scale) * [Link](0, 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.1, 0.3, 0.05) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](15), 0, 0) *
[Link]([Link](0, 0.25, -0.75) * Scale) *
[Link]([Link](-10), 0, 0)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.1, 0.05, 0.625) / 0.2 *
Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](15), 0, 0) *
[Link]([Link](0, 0.1, -0.435) * Scale)
[Link] = Part

for i = 0, 80, 10 do
local Part = [Link]("Part", Model)
[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.25, 0.15, 0.03555 * 2) /
0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](0, 0.15, 0.315) * Scale)
*
[Link]([Link](i - 65), 0, 0) *
[Link]([Link](0, 0.2, 0) * Scale)
[Link] = Part
end

local Barrel = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Barrel:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Barrel)
[Link] = [Link](0.25, 0.2, 2) / 0.2 * Scale
local BarrelWeld = [Link]("Motor6D")
BarrelWeld.Part0 = Handle
BarrelWeld.Part1 = Barrel
BarrelWeld.C0 =
[Link]([Link](15), 0, 0) *
[Link]([Link](0, 0.5, -0.7) * Scale)
[Link] = Barrel

local Barrel1 = Barrel

local Barrel2 = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Barrel2:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Really black")
local Mesh = [Link]("BlockMesh", Barrel2)
[Link] = [Link](0.25, 0.25, 2) / 0.2 * Scale
local Barrel2Weld = [Link]("Motor6D")
Barrel2Weld.Part0 = Barrel
Barrel2Weld.Part1 = Barrel2
Barrel2Weld.C0 = [Link]([Link](0, 0.225, 0) *
Scale)
[Link] = Barrel2

local RealBarrel = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
RealBarrel:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Dark grey
metallic")
local Mesh = [Link]("CylinderMesh", RealBarrel)
[Link] = [Link](0.2, 2, 0.2) / 0.2 * Scale
local RealBarrelWeld = [Link]("Motor6D")
RealBarrelWeld.Part0 = Barrel
RealBarrelWeld.Part1 = RealBarrel
RealBarrelWeld.C0 =
[Link]([Link](0, 0.1, -0.01) * Scale) *
[Link]([Link](-90), 0, 0)
[Link] = RealBarrel

for i = 1, 75, 15 do
local Part = [Link]("Part", Model)
[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.05, 0.065, 0.05) / 0.2 *
Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Handle
PartWeld.Part1 = Part
PartWeld.C0 =
[Link]([Link](0, 0.525, -0.515) *
Scale) * [Link]([Link](i), 0, 0) *
[Link]([Link](0, 0, 0.2) * Scale)
[Link] = Part
end

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Really black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.05, 0.11, 0.1) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Barrel2
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0.06, 0.135,
0.925) * Scale)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Really black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.05, 0.11, 0.1) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Barrel2
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](-0.06, 0.135,
0.925) * Scale)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Really black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.025, 0.1, 0.1) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Barrel2
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0, 0.135, -0.925)
* Scale)
[Link] = Part

local Part = [Link]("Part", Model)


[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = 1
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Really black")
local Mesh = [Link]("BlockMesh", Part)
[Link] = [Link](0.1, 0.1, 0.1) / 0.2 * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = Barrel
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0, 0, -5) * Scale)
[Link] = Part

local Light = [Link]("PointLight", Part)


[Link] = [Link]("Gold").Color
[Link] = true
[Link] = true
[Link] = 0
[Link] = 6

local Part = [Link]("Part", Model)


[Link] = "Neon"
[Link] = false
[Link] = [Link](0, 100, 0)
Part:BreakJoints()
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 0.2)
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = "SmoothNoOutlines"
[Link] = [Link]("Bright yellow")
[Link] = 0.25
local RecoilMesh = [Link]("SpecialMesh", Part)
[Link] = "FileMesh"
[Link] = "[Link]
id=1323306"
[Link] = "[Link]
id=98896228"
[Link] = [Link](0.175, 0, 0.175) * Scale
local PartWeld = [Link]("Motor6D")
PartWeld.Part0 = RealBarrel
PartWeld.Part1 = Part
PartWeld.C0 = [Link]([Link](0, 0.95, 0) *
Scale)
[Link] = Part

function ShootBullet(Target, barrel)


local barrel = barrel or Barrel
local Bullet = [Link]("Part", Workspace)
[Link] = false
[Link] = "Custom"
[Link] = [Link](0.2, 0.2, 5) * Scale
[Link] = "Smooth"
[Link] = "Smooth"
[Link] = true
[Link] = false
[Link] =
[Link](
([Link] * [Link](0, 0, -
[Link].Z * [Link].Z / 2)).p,
Target
) * [Link](0, 0, -[Link].Z / 2)
[Link] = 0.1
[Link] = [Link]("Gold") --
[[local Mesh = [Link]("SpecialMesh",Bullet)
[Link] = "FileMesh"
[Link] = [Link](0.5,0.5,0.2)
[Link] = "[Link]
--[Link] = "[Link]
local Mesh = [Link]("BlockMesh", Bullet)
[Link] = [Link](0.2, 0.2, 5) * Scale /
[Link]
IgnoreList[#IgnoreList + 1] = Bullet
RenderStepped:wait()
for i = Speed, 1000, Speed do -- Loop to do the
bullet movement and stuff.
local ray, Hit, Pos, SurfaceNormal
ray =
[Link](
[Link],
(([Link] * [Link]([Link](-
Gravity), 0, 0) *
[Link](0, 0, -Speed)).p -
[Link]).unit * Speed
)
Hit, Pos, SurfaceNormal =
Workspace:FindPartOnRayWithIgnoreList(ray, IgnoreList)
[Link] =
[Link] * [Link]([Link](-
Gravity), 0, 0) *
[Link](0, 0, -Speed)
if Hit ~= nil then
local Hum =
[Link]:FindFirstChild("Humanoid")
or

[Link]:FindFirstChild("Humanoid") or
([Link] ~= nil and

[Link]:FindFirstChild("Humanoid"))
if Hum ~= nil then
Hum:TakeDamage(
(((Gangster and [Link](0, 0)
or [Link](0, 0)) * Scale) / 100) *
[Link]
)
end
break
end
RenderStepped:wait()
end
Bullet:Destroy()
end

Mouse.Button1Down:connect(
function()
if not Down and not DB then
Down = true
while Down do
if [Link] == 0 then
break
end
if not DB then
DB = true
local Sound = [Link]("Sound",
Barrel)
[Link] =
"[Link] -- 132373574
[Link] = 5 * Scale
[Link] =
([Link](70, 110) / 100) /
((Scale < 0.25 and 0.25) or
(Scale > 4 and 4) or Scale)
Sound:Play()
Spawn(
function()
ShootBullet([Link].p,
Barrel1)
end
)
[Link] =
[Link](1, [Link](160,
245) / 255, 20 / 255)
PartWeld.C0 =
PartWeld.C0 * [Link](0,
[Link]([Link](-40, 40)), 0)
local Shell = [Link]("Part",
Workspace)
[Link] = "Custom"
[Link] =
[Link]("Bright yellow")
[Link] = [Link](0.2, 0.5,
0.2) * Scale
[Link] =
[Link] * [Link](0.5,
0.5, 0) *
[Link]([Link](-90), 0,
0)
[Link] =
(([Link] * [Link](5,
0, [Link](-2, 2))).p -
[Link].p) *
5 *
Scale
local Mesh =
[Link]("CylinderMesh", Shell)
[Link] = [Link](0.2, 0.5,
0.2) * Scale / [Link]
Spawn(
function()
wait(5)
Shell:Destroy()
end
)
for i = 1, 20, 7.5 do

[Link] = [Link].p
RotationOffset = RotationOffset
* [Link]([Link](7.5), 0, 0)
Part1Joint =
Part1Joint *
[Link]([Link](0, -0.15, 0) * Scale)
Barrel2Weld.C0 =
Barrel2Weld.C0 *
[Link]([Link](0, 0, 0.15) * Scale)
[Link] =
[Link] + 38
[Link] =
[Link] +
([Link](0, 0.375, 0) * Scale)
RenderStepped:wait()
end
wait(0.02)
for i = 1, 20, 3.75 do

[Link] = [Link].p
RotationOffset =
RotationOffset *
[Link]([Link](-3.75), 0, 0)
Part1Joint =
Part1Joint *
[Link]([Link](0, 0.075, 0) * Scale)
Barrel2Weld.C0 =
Barrel2Weld.C0 *
[Link]([Link](0, 0, -0.075) * Scale)
[Link] =
[Link] - 19
[Link] =
[Link] +
([Link](0, -0.1875, 0) * Scale)
RenderStepped:wait()
end
wait(0.02)
DB = false
end
end
end
end
)

Mouse.Button1Up:connect(
function()
Down = false
end
)

[Link]:connect(
function(Key)
if Key:lower() == "g" and not DB then
DB = true
if Gangster == true then
for i = 1, 70, 5 do
RotationOffset = RotationOffset *
[Link](0, [Link](-5), 0)
RenderStepped:wait()
end
Gangster = false
else
for i = 1, 70, 5 do
RotationOffset = RotationOffset *
[Link](0, [Link](5), 0)
RenderStepped:wait()
end
Gangster = true
end
DB = false
end
end
)

local Weld = [Link]("Weld")


Weld.Part0 = Torso
Weld.Part1 = Character["Right Arm"]
[Link] = Torso

local Weld2 = [Link]("Weld")


Weld2.Part0 = Torso
Weld2.Part1 = [Link]
[Link] = Torso

local RA = Character["Right Arm"]

game:GetService("RunService"):BindToRenderStep(
"Pistol",
[Link],
function()
local Point =
[Link]:vectorToObjectSpace([Link].p - [Link].p)
if Point.Z > 0 then
if Point.X > 0 then
[Link] =
[Link](
[Link],
[Link]([Link].X,
[Link].Y, [Link].Z)
) * CF
[Link](0, [Link](90), 0)
elseif Point.X < 0 then
[Link] =
[Link](
[Link],
[Link]([Link].X,
[Link].Y, [Link].Z)
) * CF
[Link](0, [Link](-90), 0)
end
end

local CFr =
([Link] * Part0Joint):toObjectSpace(
[Link](([Link] * Part0Joint).p,
[Link].p)
)
--RayEnd))
Weld.C0 = Part0Joint * (CFr - CFr.p) *
RotationOffset
Weld.C1 = Part1Joint
Weld.Part0 = Torso
Weld.Part1 = RA
local CFr =
([Link] *
Part0JointHead):toObjectSpace(
[Link](([Link] *
Part0JointHead).p, [Link].p)
)
--RayEnd))
Weld2.C0 = Part0JointHead * (CFr - CFr.p) *
RotationOffsetHead
Weld2.C1 = Part1JointHead
Weld2.Part0 = Torso
Weld2.Part1 = [Link]
local Last = Scale
Scale =

[Link].X / 2 *

([Link]:FindFirstChild("ScaleInserted") ~= nil
and

[Link]:FindFirstChild("ScaleInserted").Scale.Z or
1) *
0.8
Speed = 20 * Scale
if Scale ~= Last then
Part0Joint = [Link]([Link](1,
0.75, 0) * Scale * 1.25)
Part1Joint = [Link]([Link](-0.5,
0.75, 0) * Scale * 1.25)
Part0JointHead = [Link]([Link](0,
1, 0) * Scale * 1.25)
Part1JointHead = [Link]([Link](0,
-0.5, 0) * Scale * 1.25)
end
end
)
end
)

local Section = Tab:NewSection("ESP")


game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loaded ESP now you can see players trough
walls",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

Section:NewButton(
"Click",
"See Players",
function()
getgenv().enabled = true --Toggle on/off
getgenv().filluseteamcolor = true --Toggle fill color
using player team color
--on/off
getgenv().outlineuseteamcolor = true --Toggle outline
color using player team color
--on/off
getgenv().fillcolor = [Link](0, 0, 0) --Change fill
color, no need to edit if
--using team color
getgenv().outlinecolor = [Link](1, 1, 1) --Change
outline color, no need to
--edit if using team color
getgenv().filltrans = 0.7 --Change fill transparency
getgenv().outlinetrans = 0.3 --Change outline
transparency

loadstring(

game:HttpGet("[Link]
)()
end
)

local Section = Tab:NewSection("Tp To Random User")


Section:NewButton(
"Click",
"See Players",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Dont Click This Its Not Working",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Soz its not working",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "This Is Not Working Rn XD",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
end
)

local Section = Tab:NewSection("Custom Hitbox")

Section:NewSlider(
"Custom Hitbox",
"SliderInfo",
110,
0,
function(s) -- 110 (MaxValue) | 0 (MinValue)
[Link]._G.HeadSize
= s
end
)

local Section = Tab:NewSection("Universal Aimbot")

Section:NewButton(
"Aimbot",
"ButtonInfo",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loaded Tracers",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

local dwCamera = [Link]


local dwRunService = game:GetService("RunService")
local dwUIS = game:GetService("UserInputService")
local dwEntities = game:GetService("Players")
local dwLocalPlayer = [Link]
local dwMouse = dwLocalPlayer:GetMouse()

local settings = {
Aimbot = true,
Aiming = false,
Aimbot_AimPart = "Head",
Aimbot_TeamCheck = true,
Aimbot_Draw_FOV = true,
Aimbot_FOV_Radius = 60,
Aimbot_FOV_Color = [Link](255, 255, 255)
}

local fovcircle = [Link]("Circle")


[Link] = settings.Aimbot_Draw_FOV
[Link] = settings.Aimbot_FOV_Radius
[Link] = settings.Aimbot_FOV_Color
[Link] = 1
[Link] = false
[Link] = 1

[Link] =
[Link]([Link].X / 2, [Link].Y / 2)

[Link]:Connect(
function(i)
if [Link] ==
[Link].MouseButton2 then
[Link] = true
end
end
)

[Link]:Connect(
function(i)
if [Link] ==
[Link].MouseButton2 then
[Link] = false
end
end
)

[Link]:Connect(
function()
local dist = [Link]
local closest_char = nil

if [Link] then
for i, v in next, dwEntities:GetChildren()
do
if
v ~= dwLocalPlayer and [Link]
and

[Link]:FindFirstChild("HumanoidRootPart") and

[Link]:FindFirstChild("Humanoid") and

[Link]:FindFirstChild("Humanoid").Health > 0
then
if
settings.Aimbot_TeamCheck ==
true and [Link] ~= [Link] or
settings.Aimbot_TeamCheck
== false
then
local char = [Link]
local char_part_pos,
is_onscreen =

dwCamera:WorldToViewportPoint(

char[settings.Aimbot_AimPart].Position
)

if is_onscreen then
local mag =
([Link](dwMouse.X,
dwMouse.Y) -

[Link](char_part_pos.X, char_part_pos.Y)).Magnitude

if mag < dist and mag <


settings.Aimbot_FOV_Radius then
dist = mag
closest_char = char
end
end
end
end
end

if
closest_char ~= nil and
closest_char:FindFirstChild("HumanoidRootPart") and

closest_char:FindFirstChild("Humanoid") and

closest_char:FindFirstChild("Humanoid").Health > 0
then
[Link] =
[Link](
[Link],

closest_char[settings.Aimbot_AimPart].Position
)
end
end
end
)
end
)

local Tab = Window:NewTab("FE")


local Section = Tab:NewSection("Netless")
Section:NewButton(
"Click",
"Executes",
function()
for i, v in next,
game:GetService("Players").[Link]:GetDescendants() do
if v:IsA("BasePart") and [Link] ~=
"HumanoidRootPart" then
game:GetService("RunService").Heartbeat:connect(
function()
[Link] = [Link](0, 35, 0)
wait(0.5)
end
)
end
end

game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Netless activated",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
end
)

local Section = Tab:NewSection("Force Reset | Important When U


Used Fe Already")
Section:NewButton(
"Click",
"Resets You To Die",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Resseting You Please Wait",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
[Link] = 1
local l =
[Link]["1"]:Clone()
[Link] = [Link]
[Link] = "Humanoid"
wait()
[Link]["1"]:Destroy()
[Link] =
[Link]
[Link] =
true
wait()
[Link] =
false

[Link] = "None"
wait()
local prt = [Link]("Model", workspace)
[Link]("Part", prt).Name = "Torso"
[Link]("Part", prt).Name = "Head"
[Link]("Humanoid", prt).Name = "Humanoid"
[Link] = prt
end
)
local Section = Tab:NewSection("Ender | Leftclick to fling my
di--")
Section:NewButton(
"Click",
"Executes Ender Di--",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Ender",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGet(("[Link] true))()
end
)
local Section = Tab:NewSection("Caducus | Edgy Looking emo")
Section:NewButton(
"Click",
"Executes Caducus Sh--",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Caducus",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGet(("[Link] true))()
end
)
local Section = Tab:NewSection("WallWalker | Walks On Some
Walls")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Wall Walker",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16
loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Sonic | Go faster")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Sonic",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Memer Dance | Dance Yourself To
Get Bit---")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Meme",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Chill")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Chill Chill",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Joy")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Joy",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Classic Fighter Gale")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading The Classic Fighter",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Elio Blasio")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Blasio",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)
local Section = Tab:NewSection("Clown Xester")
Section:NewButton(
"Click",
"Executes",
function()
game:GetService("StarterGui"):SetCore(
"SendNotification",
{
Title = "Notification",
Text = "Loading Clown",
Icon =
"rbxthumb://type=Asset&id=5107182114&w=150&h=150"
}
)
Duration = 16

loadstring(game:HttpGetAsync("[Link]
end
)

local Tab = Window:NewTab("UI Toggles")


local Section = Tab:NewSection("Toggles")

Section:NewKeybind(
"Close/Open Ui",
"KeybindInfo",
[Link].B,
function()
Library:ToggleUI()
end
)

Section:NewKeybind(
"TP Hold Z to tp",
"KeybindInfo",
[Link].Z,
function()
local Plr = game:GetService("Players").LocalPlayer
local Mouse = Plr:GetMouse()
Mouse.Button1Down:connect(
function()
if not
game:GetService("UserInputService"):IsKeyDown([Link].Z) then
return
end
if not [Link] then
return
end
[Link]:MoveTo([Link].p)
end
)
end
)

local Tab = Window:NewTab("Script Gui")


local Section = Tab:NewSection("Script Hub")

Section:NewButton(
"Artenis Z/Softbed",
"Bedwars",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : Loaded Vape V4",
"All"
)
loadstring(
game:HttpGet(

"[Link]
[Link]",
true
)
)()
end
)

Section:NewButton(
"Keyboard Gui",
"For Scripts",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : Loaded Keyboard Gui",
"All"
)
end
)

Section:NewButton(
"Phantom Forces",
"For Scripts",
function()

game:GetService("ReplicatedStorage").[Link]:
FireServer(
"System : Loaded Phatom Forces",
"All"
)

loadstring(game:HttpGet("[Link]
Startup"))(

)
end
)

local Section = Tab:NewSection("Arsenal")

Section:NewButton(
"Owl Hub",
"Executes Owl Hub",
function()
loadstring(
game:HttpGet("[Link]
)()
end
)

Section:NewButton(
"V.G Hub",
"Executes V.G Hub",
function()

loadstring(game:HttpGet("[Link]
[Link]"))()
end
)

local Section = Tab:NewSection("Combat Warriors")

Section:NewButton(
"Nova Hub",
"Executes Nova Hub",
function()
loadstring(
game:HttpGet(

"[Link]
)
)()
end
)
Section:NewButton(
"Hydra Hub",
"Executes Hydra Hub",
function()
loadstring(
game:HttpGet(

"[Link]
%[Link]",
true
)
)()
end
)

local Section = Tab:NewSection("Zombie Attack")

Section:NewButton(
"Zombie Hub",
"Executes Zombie Hub",
function()
loadstring(
game:HttpGet(

"[Link]
%[Link]"
)
)()
end
)
local Section = Tab:NewSection("Evade")

Section:NewButton(
"Evade Hub",
"Executes Evade Hub",
function()
loadstring(
game:HttpGet(

"[Link]
)
)()
end
)

local Section = Tab:NewSection("Edward The Man Eating Train")

Section:NewButton(
"Edward Hub",
"Executes Edward Hub",
function()
loadstring(

game:HttpGet("[Link]
true)
)()
end
)

Section:NewButton(
"Choo Choo Hub",
"Executes Choo Choo Hub",
function()
for i, v in pairs(getgc(true)) do
if type(v) == "table" and rawget(v,
"IntValue_MaxDamageRange") ~= nil then
--add other tables below this--
v.IntValue_PelletCount = 100
v.IntValue_MaxMagazine = 1000
v.IntValue_MaxReserve = 1000
end
end
end
)

local Section = Tab:NewSection("Kat")


Section:NewButton(
"Knife Ability Test",
"Executes KAT hub",
function()
loadstring(

game:HttpGet("[Link]
)()
end
)
end
)
end
}
)

OrionLib:Init()

Common questions

Powered by AI

The recurring phrase contributes to a playful yet slightly taunting atmosphere within the game, blending humor with competitiveness. The personalized twist on a known rhyme catches attention and emphasizes the loss of opponents, enhancing the thematic element of rivalry. It shapes the communication style towards playful banter, hinting at the cultural interplay between humor and gaming competition .

The use of admin commands and modified scripts raises ethical concerns centered around fairness, game integrity, and player enjoyment. Key factors include the disruption of balanced gameplay, potential violations of game terms of service, the impact on other players' experience, and the distinction between permissible mods and unethical cheats. Balancing creative expression against fairness should guide ethical considerations in using such modifications .

By adjusting 'walkspeed' and 'jump power' through sliders, players can drastically change their movement capabilities, enhancing or reducing their speed and jump height. This can provide strategic advantages, allowing players to move rapidly across the map, evade opponents, reach otherwise inaccessible areas, and exploit map design limits. Such control over movement can shift strategic gameplay dynamics, favoring active and evasive strategies .

The 'Get Admin' function provides players with administrative privileges, allowing them to exercise control over various game settings, which can include altering other players' settings, spawning items, or bypassing restrictions. Its widespread use can lead to chaos, with multiple players competing for control, disrupting game sessions, and potentially causing disputes or grievances among the community .

The repetitive automated chat messages sent by Extender Hub, such as boasting about having a 'Pro Gaming Chair' or cryptic lines like 'I Wonder Why I Wonder How You Died,' can affect the gaming environment by cluttering chat communication. This can lead to distractions, irritation among players, and a decrease in the meaningfulness of in-game communication, potentially hindering cooperative gameplay and player interactions .

Integrating modification features requires balancing user customization with game integrity, ensuring mods do not compromise security or fairness. Developers should consider creating robust APIs for safe modding, setting clear guidelines, and building detection systems to distinguish benign modding from harmful cheating. Community governance and feedback mechanisms are vital to maintaining ecosystem health and encouraging positive usage .

The modification of weapons in the script significantly alters the game's dynamics by dramatically increasing the damage, ammo capacity, fire rate, and range of weapons like the AK-47, M9, and Remington 870. These changes effectively give players a substantial power advantage, making gameplay considerably easier and potentially less balanced, as they can shoot rapidly and have virtually unlimited ammo .

Using scripts to modify attributes such as 'FireRate' or 'ReloadTime' poses risks including detection of cheating by game security systems, account suspension or bans, and the destabilization of game balance and fairness. Moreover, excessive use might lead to glitches or crashes, reducing the game's reliability and player satisfaction .

Associating 'extender hub' with a 'Pro Gaming Chair' reflects a cultural element of gaming where equipment and modifications are seen as part of enhancing user experience or skill status. This may influence perceptions by implying users of the hub are more skilled or have distinct advantages, potentially leading to biases against non-users and altering social dynamics and perceived credibility within the game .

The 'noclip' feature allows players to move through objects without collision, significantly impacting gameplay by enabling players to bypass obstacles and boundaries that would normally limit movement. This can undermine game fairness, providing a potential competitive advantage that disrupts standard gameplay mechanics and could be considered cheating .

You might also like