ADVERTISEMENTREMOVE ADS
Game icon

Jurex13gaming Hub

Brookhaven 🏑RPβ€’
4 months ago
Script preview thumbnail
Script Preview

Description

πŸ“Œ Brookhaven GUI (BETA)

This is a beta version of my Brookhaven script.

πŸ’‘ Features currently included:

- Fly

-Noclip

- Teleport to player

- Infinite Jump

-ESP
- Speed Boost
- Rainbow Avatar
- Sit

- Become Invisible

⚠️ I'm still actively working on this script β€” more features will be added soon!

βœ… Updates will include:

- GUI improvements

- Extra trolling & movement features

Please note: There may still be some bugs or glitches.

If you find any issues, feel free to report them!

πŸ”„ Stay tuned for future versions!

ADVERTISEMENTREMOVE ADS
167 Lines β€’ 4.98 KiB
Raw
-- Jurex13Gaming Hub 🌈 (Safe for Brookhaven)
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local uis = game:GetService("UserInputService")
local rs = game:GetService("RunService")
-- GUI Setup
local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
gui.Name = "Jurex13GamingHub"
gui.ResetOnSpawn = false
local frame = Instance.new("Frame", gui)
frame.Size = UDim2.new(0, 350, 0, 500)
frame.Position = UDim2.new(0.5, -175, 0.5, -250)
frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
frame.BorderSizePixel = 0
frame.Active = true
frame.Draggable = true
local corner = Instance.new("UICorner", frame)
corner.CornerRadius = UDim.new(0, 12)
local title = Instance.new("TextLabel", frame)
title.Size = UDim2.new(1, 0, 0, 50)
title.Text = "πŸ”« Jurex13Gaming Hub πŸ”«"
title.Font = Enum.Font.GothamBold
title.TextSize = 22
title.TextColor3 = Color3.new(1, 1, 1)
title.BackgroundTransparency = 1
local layout = Instance.new("UIListLayout", frame)
layout.Padding = UDim.new(0, 5)
layout.SortOrder = Enum.SortOrder.LayoutOrder
-- Button creator
local function createButton(text, func)
local button = Instance.new("TextButton", frame)
button.Size = UDim2.new(1, -20, 0, 40)
button.Position = UDim2.new(0, 10, 0, 0)
button.Text = text
button.Font = Enum.Font.Gotham
button.TextSize = 18
button.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
button.TextColor3 = Color3.new(1, 1, 1)
local btnCorner = Instance.new("UICorner", button)
btnCorner.CornerRadius = UDim.new(0, 8)
button.MouseButton1Click:Connect(func)
end
-- ✈️ Fly
local flying = false
createButton("✈️ Fly (Toggle)", function()
flying = not flying
local root = character:FindFirstChild("HumanoidRootPart")
if not root then return end
local bp = Instance.new("BodyVelocity", root)
bp.MaxForce = Vector3.new(1e5, 1e5, 1e5)
bp.Velocity = Vector3.zero
local conn
conn = rs.RenderStepped:Connect(function()
if flying and root and bp then
local dir = Vector3.zero
if uis:IsKeyDown(Enum.KeyCode.W) then dir += workspace.CurrentCamera.CFrame.LookVector end
if uis:IsKeyDown(Enum.KeyCode.S) then dir -= workspace.CurrentCamera.CFrame.LookVector end
if uis:IsKeyDown(Enum.KeyCode.A) then dir -= workspace.CurrentCamera.CFrame.RightVector end
if uis:IsKeyDown(Enum.KeyCode.D) then dir += workspace.CurrentCamera.CFrame.RightVector end
bp.Velocity = dir.Magnitude > 0 and dir.Unit * 60 or Vector3.zero
else
bp:Destroy()
conn:Disconnect()
end
end)
end)
-- πŸ’¨ Speed
createButton("πŸ’¨ Speed Boost", function()
local hum = character:FindFirstChildOfClass("Humanoid")
if hum then hum.WalkSpeed = 100 end
end)
-- 🧱 Noclip
local noclip = false
createButton("🧱 Noclip (Toggle)", function()
noclip = not noclip
rs.Stepped:Connect(function()
if noclip then
for _, part in pairs(character:GetDescendants()) do
if part:IsA("BasePart") then part.CanCollide = false end
end
end
end)
end)
-- πŸ” Infinite Jump
createButton("πŸ” Infinite Jump", function()
uis.JumpRequest:Connect(function()
local hum = character:FindFirstChildOfClass("Humanoid")
if hum then hum:ChangeState("Jumping") end
end)
end)
-- πŸ“ Teleport
createButton("πŸ“ Teleport to Player", function()
for _, target in pairs(game.Players:GetPlayers()) do
if target ~= player and target.Character and target.Character:FindFirstChild("HumanoidRootPart") then
character:MoveTo(target.Character.HumanoidRootPart.Position + Vector3.new(0, 5, 0))
break
end
end
end)
-- πŸ‘€ ESP
createButton("πŸ‘€ Show ESP", function()
for _, p in pairs(game.Players:GetPlayers()) do
if p ~= player and p.Character and p.Character:FindFirstChild("Head") then
local esp = Instance.new("BillboardGui", p.Character.Head)
esp.Size = UDim2.new(0, 100, 0, 40)
esp.AlwaysOnTop = true
local label = Instance.new("TextLabel", esp)
label.Size = UDim2.new(1, 0, 1, 0)
label.Text = p.Name
label.BackgroundTransparency = 1
label.TextColor3 = Color3.fromRGB(255, 0, 0)
label.TextScaled = true
end
end
end)
-- πŸ«₯ Invisibility
createButton("πŸ«₯ Become Invisible", function()
for _, v in pairs(character:GetDescendants()) do
if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
v.Transparency = 1
elseif v:IsA("Accessory") and v:FindFirstChild("Handle") then
v.Handle.Transparency = 1
end
end
end)
-- πŸͺ‘ Sit Anywhere
createButton("πŸͺ‘ Sit Anywhere", function()
local hum = character:FindFirstChildOfClass("Humanoid")
if hum then hum.Sit = true end
end)
-- πŸ”„ Reset
createButton("πŸ”„ Reset Character", function()
character:BreakJoints()
end)
-- 🌈 RGB Character
createButton("🌈 Rainbow Body Color", function()
spawn(function()
while true do
for _, part in pairs(character:GetChildren()) do
if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then
part.Color = Color3.fromHSV(tick() % 5 / 5, 1, 1)
end
end
wait(0.1)
end
end)
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS