コンテンツへスキップ
動作中General

[FE] - Destruction Simulator Lag The Server

GAGamerGG790 閲覧数Universal2026年7月23日
共有
[FE] - Destruction Simulator Lag The Server

スクリプトコード

Lua
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")

local explodeRocket = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("explodeRocket")

local function getRandomPlayer()
    local players = Players:GetPlayers()
    local localPlayer = Players.LocalPlayer
    
    local validPlayers = {}
    for _, player in ipairs(players) do
        if player ~= localPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
            table.insert(validPlayers, player)
        end
    end
    
    if #validPlayers == 0 then
        return nil
    end
    
    return validPlayers[math.random(1, #validPlayers)]
end

local function explodeOnRandomPlayer()
    local target = getRandomPlayer()
    if not target then 
        warn("No other players found!")
        return 
    end
    
    local root = target.Character:FindFirstChild("HumanoidRootPart")
    if not root then return end
    
    local randomCFrame = root.CFrame * CFrame.new(
        math.random(-5, 5), 
        math.random(0, 3), 
        math.random(-5, 5)
    )
    
    local args = {
        tick(), 
        game:GetService("Players").LocalPlayer.Character:WaitForChild("Launcher"):WaitForChild("Stats"),
        randomCFrame.Position,   
        game:GetService("Players").LocalPlayer.Character:WaitForChild("Launcher"):WaitForChild("Assets"):WaitForChild("Rocket"):WaitForChild("Boom")
    }
    
    explodeRocket:FireServer(unpack(args))
end

while true do
    explodeOnRandomPlayer()
    task.wait(0.1)  
end

説明

**The more you execute more worst the server lags** It works like this: It finds a special remote called explodeRocket that tells the game server to make a rocket explode. It gets a list of all other players in the game except yourself. It picks one random player who is fully loaded in the game. It chooses a spot close to that player. It sends a message to the server to explode a rocket at that spot using your own launcher. Then it repeats this whole process forever, every 0.1 seconds. Basically, it keeps spamming random explosions on other players nonstop.

コメント (0)

会話に参加するにはログインしてください

  • 最初のコメントを投稿しましょう。

よくある質問

[FE] - Destruction Simulator Lag The Serverスクリプトはどう使いますか?
上のスクリプトコードをコピーし、RobloxでUniversalに参加して、エグゼキューターに貼り付けて実行してください。スクリプトが動くとすぐに機能が有効になります。
[FE] - Destruction Simulator Lag The Serverはまだ動作しますか?
はい。[FE] - Destruction Simulator Lag The Serverは現在「動作中」とマークされています(最終更新: 2026年9月16日)。Robloxのアップデートで動かなくなった場合は、更新版をお待ちください。
[FE] - Destruction Simulator Lag The Serverに対応するエグゼキューターは?
このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。