ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Brookhaven 🏡RP
776 Views

NeverMedMs Hub Unban from House Brookhaven

Brookhaven 🏡RPUploaded by
4 months ago
Please login to perform these actions:

Description

Hey! Have you been banned from a house on Brookhaven and need a way to remove the ban? Use this script!

View Raw
Edited By: nevermedmsgang2 Download


Comments
2
User profile picture
nevermedmsgang2 4 months ago
Next update in future!
User profile picture
aceguerrero005 2 weeks ago
add name shortcut -- Deobfuscated Source Code local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer -- UI Library Setup (Using Orion UI Library) local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))() local Window = OrionLib:MakeWindow({ Name = "WeAreDevs Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest" }) -- Tab Configurations local Tab1 = Window:MakeTab({ Name = "Player Customization", Icon = "rbx*etid://4483345998", PremiumOnly = false }) -- Section Layout local MainSection = Tab1:AddSection({ Name = "Movement Adjustments" }) -- WalkSpeed Slider Feature MainSection:AddSlider({ Name = "Adjust WalkSpeed", Min = 16, Max = 500, Default = 16, Color = Color3.fromRGB(255, 255, 255), Increment = 1, ValueName = "Speed", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = Value end end }) -- JumpPower Slider Feature MainSection:AddSlider({ Name = "Adjust JumpPower", Min = 50, Max = 1000, Default = 50, Color = Color3.fromRGB(255, 255, 255), Increment = 1, ValueName = "Power", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.UseJumpPower = true LocalPlayer.Character.Humanoid.JumpPower = Value end end }) OrionLib:Init()
Please Login to add a comment.