Kill All Tank Game Simulator Mobile Script

Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts a popular scripting and programming language.

BloxScript4You


Instruction
1.Open Roblox And Start Playing
2.Click The Blue Circle To Copy The Script Code
3.Paste The Script Code Into Your Executor
4.Then Execute The Script Code
5.Enjoy
Script Code
local tanks = workspace:WaitForChild("Tanks"):WaitForChild("Tanks")
local localPlayer = game:GetService("Players").LocalPlayer

while true do
    local ded
    for _, part in ipairs(tanks:GetChildren()) do
        if part:IsA("Model") then
            local humanoidRootPart = part:FindFirstChild("HumanoidRootPart")
            
            if humanoidRootPart and part ~= localPlayer.Character then
                ded = humanoidRootPart.CFrame
            end
        end
    end
    
    if ded then
        local args = {
            [1] = ded
        }

        localPlayer.Character:WaitForChild("Controls"):WaitForChild("Shoot"):FireServer(unpack(args))
    else
        print("poo")
    end

    wait(0.1) 
end
 

Select Game [A-Z]