Home » Our Blog » Scripts » 5 NEW Brookhaven RP Scripts

5 NEW Brookhaven RP Scripts

Photo of author
Published by

Are you looking to make your Brookhaven RP experience more exciting? These scripts can add new features and abilities to your gameplay that aren’t available in the regular game. From server effects to movement enhancements, these scripts offer a variety of ways to stand out and have more fun in Brookhaven. Let’s explore what each script has to offer!

01. Salvatore FE Script

FeaturesDescription
FE Light SpawnCreate lights visible to all players
FE Lag ServerCause server lag effects
FE Server SoundsPlay sounds that everyone can hear
Additional FeaturesVarious other server-side effects

loadstring(game:HttpGet("https://raw.githubusercontent.com/RFR-R1CH4RD/Loader/main/Salvatore.lua"))()

02. Salvatore OP Script

FeaturesDescription
Powerful FeaturesEnhanced version with more capabilities
Easy to UseSimple interface for accessing features
Server-Side EffectsChanges visible to other players

loadstring(game:HttpGet("https://raw.githubusercontent.com/RFR-R1CH4RD/Loader/main/Salvatore.lua"))()

03. Speed and Jump Button Script

FeaturesDescription
Speed BoostIncreases your walking speed to 100 (normal is 16)
Jump PowerEnhances jump power to 200 (normal is 50)
Toggle ButtonEasy to switch between normal and enhanced movement
Automatic ResetReturns to normal settings when your character respawns

local Players = game:GetService("Players")
local player = Players.LocalPlayer
local gui = Instance.new("ScreenGui", player.PlayerGui)
gui.ResetOnSpawn = true
local Button = Instance.new("TextButton", gui)
Button.Position = UDim2.new(0.158, 0, 0.051, 0)
Button.Size = UDim2.new(0, 80, 0, 50)

local speed = false

Button.Text = "Original"

Button.MouseButton1Click:Connect(function()
if not speed then
speed = true
Button.Text = "Custom"
player.Character.Humanoid.WalkSpeed = 100
player.Character.Humanoid.JumpPower = 200
else
speed = false
Button.Text = "Original"
player.Character.Humanoid.WalkSpeed = 16
player.Character.Humanoid.JumpPower = 50
end
end)

player.CharacterAdded:Connect(function()
Button.Text = "Original"
speed = false
end)

04. Noclip Toggle Script

FeaturesDescription
Noclip AbilityWalk through walls, buildings, and objects
Visual ToggleButton changes color to show if noclip is on or off
Easy ActivationSimple button click to enable or disable
Respawn HandlingProperly resets when your character respawns

local Players = game:GetService("Players")
local player = Players.LocalPlayer
local gui = Instance.new("ScreenGui", player.PlayerGui)
gui.ResetOnSpawn = true
local Button = Instance.new("TextButton", gui)
Button.Position = UDim2.new(0.62, 0, 0.051, 0)
Button.Size = UDim2.new(0, 80, 0, 50)

local isNoclipping = false

local function setNoclip(character, state)
if not character then return end
for _, part in ipairs(character:GetDescendants()) do
if part:IsA("BasePart") then
part.CanCollide = not state
end
end
end

local function onButtonClick()
local character = player.Character
if not character then
warn("Player character not found.")
return
end

isNoclipping = not isNoclipping
setNoclip(character, isNoclipping)

if isNoclipping then
print("Noclip enabled")
Button.Text = "Noclip: ON"
Button.BackgroundColor3 = Color3.fromRGB(0, 255, 0) -- Green
else
print("Noclip disabled")
Button.Text = "Noclip: OFF"
Button.BackgroundColor3 = Color3.fromRGB(255, 0, 0) -- Red
end
end

local function onCharacterAdded(character)
character:WaitForChild("Humanoid")
if isNoclipping then
print("Character respawned, reapplying noclip.")
task.wait(0.1)
setNoclip(character, false)
else
Button.Text = "Noclip: OFF"
Button.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
end
end

Button.Text = "Noclip: OFF"
Button.BackgroundColor3 = Color3.fromRGB(255, 0, 0)

Button.MouseButton1Click:Connect(onButtonClick)
player.CharacterAdded:Connect(onCharacterAdded)

if player.Character then
onCharacterAdded(player.Character)
end

print("Noclip toggle script added to button:", Button:GetFullName())

05. Everage Control Panel

FeaturesDescription
Player ControlType a username to control another player
Multiple CommandsMany commands to control the targeted player
Remote ControlManage other players’ actions and movements
Easy to UseSimple interface for accessing commands

pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/projecter94/ECP/refs/heads/main/Everage%20Control%20Panel"))()
end)

How to Use the Scripts

  1. Copy the script you want to use
  2. Open your Roblox executor (like Synapse X, KRNL, or another trusted executor)
  3. Paste the script into the executor’s text area
  4. Click Execute or Run button
  5. For the Speed and Noclip scripts, look for the buttons that appear on your screen
  6. Click these buttons to toggle the features on and off
  7. For the Salvatore scripts, navigate through the menu that appears after execution
  8. For the Everage Control Panel, follow the on-screen instructions to enter usernames and commands
See also  5 Game-Changing Scripts for Legends of Speed - Boost Your Speed Journey

Benefits of Using These Scripts

  1. Enhanced Movement: Speed boost and jump power make getting around Brookhaven faster and more fun
  2. Access Anywhere: Noclip lets you explore areas that would normally be blocked by walls or barriers
  3. Unique Abilities: Create special effects like lights and sounds that other players can see and hear
  4. Stand Out: Do things that regular players can’t do, making your character more interesting
  5. Save Time: Move faster and access buildings without using doors
  6. Fun Interactions: Control other players for entertaining roleplay scenarios
  7. Exploration: Discover hidden areas of the map more easily
  8. Creative Freedom: Express yourself with special effects and abilities

These Brookhaven RP scripts offer exciting ways to enhance your gameplay experience and make your time in the game more enjoyable. Whether you want to move faster, walk through walls, create special effects, or control other players, these scripts have something for everyone. Try them out today and see how they can transform your Brookhaven adventures!

Leave a Comment