Scripts

Scripts de Roblox High School

Hubs de skateboard Legacy, toggles Fan Club y helpers de evento RHS2 — más avisos de ban y enlaces de progresión legítima.

Última actualización:

Scripts Hub

Los jugadores que buscan scripts de Roblox High School suelen querer loaders de QoL para Roblox High School [Legacy] o helpers antiguos de eventos de RHS2. Abajo hay scripts comunitarios que circulan ahora para esas experiences, más alternativas oficiales más seguras.

Riesgo de ban (lee esto antes de ejecutar)

Legacy y RHS2 son juegos Fan Club all-ages. Inyectar executors puede provocar bans permanentes sin apelación. Durante The Hunt, un ban también bloquea el progreso del evento. Prefiere códigos, gifts gratis del Fan Club y guías normales siempre que puedas.

Cómo ejecutar un script

  1. Entra a la experience correcta (Legacy place 9689581 o RHS2 2098516465).
  2. Adjunta un executor Lua en tu dispositivo.
  3. Pega uno de los bloques de script de abajo y ejecútalo.
  4. Vuelve a equipar tools (por ejemplo skateboards) cuando un notify lo diga.

Los scripts se rompen tras parches de Roblox o del juego. Si no pasa nada, el loader está desactualizado — no busques key systems random del chat.

Script 1: Hub Legacy Hack School

Juego: Roblox High School [Legacy]

Features:

  • Skateboard rápido / reset de velocidad
  • Desactivar o activar la colisión de ruedas del skateboard
  • Color de nombre de chat personalizado
  • Toggle de teléfono Fan Club en el cliente
  • Toggles locales de gamepass non-FE (Club Red, Double Cash, Drivers License, Enforcers Powers, Unrestricted DJ, VIP)
getgenv().ColorPicked = Color3.fromRGB(255,255,255)
local playerData = game:GetService("ReplicatedStorage").PlayerData
local localUserID = game.Players.LocalPlayer.UserId
local localData = playerData:FindFirstChild(localUserID)
local localGamePasses = localData:FindFirstChild("GamePasses")
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local skateboard = game.Players.LocalPlayer.Backpack.Skateboard or game.Players.LocalPlayer.Character.Skateboard

local Window = Rayfield:CreateWindow({
    Name = "Roblox Hack School",
    Icon = 0,
    LoadingTitle = "Roblox Hack School",
    LoadingSubtitle = "White Cat was here :3",
    ShowText = "ugly ahh mobile user",
    Theme = "Ocean",
    ToggleUIKeybind = "G",
    DisableRayfieldPrompts = true,
    DisableBuildWarnings = true,  
})
local Tab = Window:CreateTab("Main", 4483362458)
local ColorPicker = Tab:CreateColorPicker({
    Name = "Chat Color",
    Color = Color3.fromRGB(255,255,255),
    Flag = "ColorPicker1", 
    Callback = function(Value)
        getgenv().ColorPicked = Value
    end
})
local Button = Tab:CreateButton({
   Name = "Apply Chat Color",
   Callback = function()
local args = {
	"2",
	getgenv().ColorPicked
}
game:GetService("ReplicatedStorage"):WaitForChild("RemoteFunctions"):WaitForChild("NameColorChange"):InvokeServer(unpack(args))

   end,
})
local Button = Tab:CreateButton({
   Name = "Make Skateboard Super Fast",
   Callback = function()
    print(skateboard:SetAttribute("TopSpeed", 999))
    Rayfield:Notify({
   Title = "Success",
   Content = "Re-equip the Skateboard!",
   Duration = 6.5,
   Image = 4483362458,
})
   end,
})
local Button = Tab:CreateButton({
   Name = "Reset Skateboard Speed",
   Callback = function()
    print(skateboard:SetAttribute("TopSpeed", 45))
        Rayfield:Notify({
   Title = "Success",
   Content = "Re-equip the Skateboard!",
   Duration = 6.5,
   Image = 4483362458,
})
   end,
})
local Button = Tab:CreateButton({
   Name = "Disable Skateboard Wheels Collision",
   Callback = function()
    for i, v in pairs(skateboard.Model:GetChildren()) do
        if v:FindFirstChild("Wheel") then
            v.Wheel.CanCollide = false
        end
    end
   end,
})
local Button = Tab:CreateButton({
   Name = "Enable Skateboard Wheels Collision",
   Callback = function()
    for i, v in pairs(skateboard.Model:GetChildren()) do
        if v:FindFirstChild("Wheel") then
            v.Wheel.CanCollide = true
        end
    end
   end,
})

local Toggle = Tab:CreateToggle({
   Name = "Fan Club (allows to use phone)",
   CurrentValue = localData.IsInFanClub.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localData.IsInFanClub.Value = Value
   end,
})
local Tab = Window:CreateTab("Gamepasses (NOT FE)", 4483362458)
local Toggle = Tab:CreateToggle({
   Name = "Club Red",
   CurrentValue = localGamePasses.ClubRed.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localGamePasses.ClubRed.Value = Value
   end,
})
local Toggle = Tab:CreateToggle({
   Name = "Double Cash",
   CurrentValue = localGamePasses.DoubleCash.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localGamePasses.DoubleCash.Value = Value
   end,
})
local Toggle = Tab:CreateToggle({
   Name = "Drivers Liscense",
   CurrentValue = localGamePasses.DriversLicense.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localGamePasses.DriversLicense.Value = Value
   end,
})
local Toggle = Tab:CreateToggle({
   Name = "Enforcers Powers",
   CurrentValue = localGamePasses.EnforcersPowers.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localGamePasses.EnforcersPowers.Value = Value
   end,
})
local Toggle = Tab:CreateToggle({
   Name = "Unrestricted DJ",
   CurrentValue = localGamePasses.UnrestrictedDJ.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localGamePasses.UnrestrictedDJ.Value = Value
   end,
})
local Toggle = Tab:CreateToggle({
   Name = "VIP",
   CurrentValue = localGamePasses.VIP.Value,
   Flag = "Toggle1", 
   Callback = function(Value)
    localGamePasses.VIP.Value = Value
   end,
})

Script 2: Fake Enforcers Powers (Legacy)

Juego: Roblox High School [Legacy]

Features: UI de anuncio local, selector de jugadores de fake detention / suspension (bromas del lado del cliente — no poderes reales de staff).

local player = game.Players.LocalPlayer
local players = game:GetService("Players")

-- MAIN GUI
local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
gui.Name = "FakeEnforcer"

local frame = Instance.new("Frame", gui)
frame.Size = UDim2.new(0, 260, 0, 180)
frame.Position = UDim2.new(0.4, 0, 0.4, 0)
frame.BackgroundColor3 = Color3.fromRGB(20,20,20)
frame.Active = true
frame.Draggable = true

local title = Instance.new("TextLabel", frame)
title.Size = UDim2.new(1,0,0,30)
title.Text = "Fake Enforcer Powers 🌐"
title.TextScaled = true
title.BackgroundColor3 = Color3.fromRGB(40,40,40)
title.TextColor3 = Color3.new(1,1,1)

-- FUNCTION: TOP MESSAGE
local function showMessage(text)
    local msg = Instance.new("TextLabel", gui)
    msg.Size = UDim2.new(1,0,0,40)
    msg.Position = UDim2.new(0,0,0,0)
    msg.BackgroundColor3 = Color3.fromRGB(120,0,0)
    msg.TextColor3 = Color3.new(1,1,1)
    msg.TextScaled = true
    msg.Text = text

    task.wait(3)
    msg:Destroy()
end

-- BUTTON CREATOR
local function makeButton(text, posY)
    local btn = Instance.new("TextButton", frame)
    btn.Size = UDim2.new(0.8,0,0.2,0)
    btn.Position = UDim2.new(0.1,0,posY,0)
    btn.Text = text
    btn.TextScaled = true
    btn.BackgroundColor3 = Color3.fromRGB(70,70,70)
    btn.TextColor3 = Color3.new(1,1,1)
    return btn
end

-- 1️⃣ ANNOUNCEMENT BUTTON
local announceBtn = makeButton("SEND ANNOUNCEMENT", 0.25)

announceBtn.MouseButton1Click:Connect(function()
    local subGui = Instance.new("Frame", gui)
    subGui.Size = UDim2.new(0, 300, 0, 150)
    subGui.Position = UDim2.new(0.4,0,0.4,0)
    subGui.BackgroundColor3 = Color3.fromRGB(30,30,30)

    local box = Instance.new("TextBox", subGui)
    box.Size = UDim2.new(0.8,0,0.3,0)
    box.Position = UDim2.new(0.1,0,0.2,0)
    box.PlaceholderText = "Type anything here"
    box.TextScaled = true

    local send = Instance.new("TextButton", subGui)
    send.Size = UDim2.new(0.5,0,0.25,0)
    send.Position = UDim2.new(0.25,0,0.6,0)
    send.Text = "SEND"
    send.TextScaled = true

    send.MouseButton1Click:Connect(function()
        showMessage(box.Text)
        subGui:Destroy()
    end)
end)

-- FUNCTION: PLAYER LIST GUI
local function openPlayerMenu(mode)
    local listGui = Instance.new("Frame", gui)
    listGui.Size = UDim2.new(0, 250, 0, 300)
    listGui.Position = UDim2.new(0.4,0,0.4,0)
    listGui.BackgroundColor3 = Color3.fromRGB(30,30,30)

    local layout = Instance.new("UIListLayout", listGui)

    for _, plr in pairs(players:GetPlayers()) do
        if plr ~= player then
            local btn = Instance.new("TextButton", listGui)
            btn.Size = UDim2.new(1,0,0,30)
            btn.Text = plr.Name
            btn.TextScaled = true

            btn.MouseButton1Click:Connect(function()
                if mode == "detention" then
                    showMessage(plr.Name .. " sent to detention! (not really)")
                else
                    showMessage(plr.Name .. " suspended! (not really)")
                end
                listGui:Destroy()
            end)
        end
    end
end

-- 2️⃣ FAKE DETENTION
local detentionBtn = makeButton("FAKE DETENTION", 0.5)
detentionBtn.MouseButton1Click:Connect(function()
    openPlayerMenu("detention")
end)

-- 3️⃣ FAKE SUSPENSION
local suspensionBtn = makeButton("FAKE SUSPENSION", 0.75)
suspensionBtn.MouseButton1Click:Connect(function()
    openPlayerMenu("suspension")
end)

Script 3: Helper de evento free-items de RHS2

Juego: Roblox High School 2

Features: teleport a RHS2, luego CFrame a una ubicación histórica de la puerta free-items. El evento puede haber terminado — úsalo solo si la puerta blanca todavía existe.

local DiscordLib = loadstring(game:HttpGet"https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/discord%20lib.txt")()
local win = DiscordLib:Window("Developer: MakerScript | Discord: modle#8800")
local serv = win:Server("Free Items Event!", "")
local School = serv:Channel("Roblox High School 2 [free items]")

School:Button("Step 1: Teleport Game [If you are in the game then step2 click]", function()
    local T = game:GetService("TeleportService")
    T:Teleport(2098516465)
end)

School:Button("Step 2: Script [enter the white door next to you]" , function()
    game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6041.89062, -3463.00317, -2407.52515, 0.194168791, 4.55482763e-10, 0.980968118, -1.35596079e-09, 1, -1.95926345e-10, -0.980968118, -1.29211153e-09, 0.194168791)
end)

Progresión más segura en lugar de scripts

Páginas relacionadas

Mantén los servers divertidos para el público all-ages. Si un script solo se usa para grief, espera reports — y bans.

FAQ

Preguntas frecuentes

Respuestas rápidas para jugadores de Roblox High School.

¿Estos scripts siguen funcionando?

Son loaders comunitarios que pueden romperse tras actualizaciones de Roblox o de la experience. Prueba con cuidado y para si no pasa nada.

¿Puedo ser baneado por usar scripts?

Sí. Legacy advierte que romper las reglas puede significar bans permanentes sin apelación. Prefiere codes, gifts Fan Club y guides cuando puedas.

¿Para qué juego es cada script?

Hack School y Fake Enforcers apuntan a Legacy. El helper free-items apunta a Roblox High School 2.

¿Cómo desbloqueo features del teléfono Fan Club de forma segura?

Únete al grupo oficial Roblox High School: Fan Club en vez de spoof toggles. Mira la página de enlaces del wiki.

¿Dónde hay recompensas más seguras?

Usa el Codes Hub, gifts del grupo Fan Club y guides de progresión para Credits, casas y recompensas Hunt.

¿Por qué listar scripts en absoluto?

Los jugadores los buscan constantemente. Recopilamos loaders conocidos en un solo lugar mientras seguimos apuntando a codes y walkthroughs oficiales.