ADVERTISEMENTREMOVE ADS
Jurex13gaming Hub
48,014 views
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
-- 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
ADVERTISEMENTREMOVE ADS
Comments