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

[FE] - Destruction Simulator Lag The Server

CLclarkdevlinorg0 閲覧数Universal2026年7月26日
共有
[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エグゼキューターを開いて貼り付け、ゲーム中に実行を押してください。スクリプトが実行されると、機能が即座に有効になります。
[FE] - Destruction Simulator Lag The Serverスクリプトは無料ですか?
はい。このスクリプトは無料でコピー&使用できます。キーシステムを使用している場合は、リンクから無料でキーを取得してください。
[FE] - Destruction Simulator Lag The Serverスクリプトの使用は安全ですか?
ソースコード全体がこのページに表示されるので、実行前に内容を正確に確認できます。信頼できるエグゼキューターを使用し、スクリプトの使用はRobloxの利用規約に違反するため、自己責任で使用してください。
[FE] - Destruction Simulator Lag The Serverに対応するエグゼキューターは?
このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。
[FE] - Destruction Simulator Lag The Server | BloxScripter