ADVERTISEMENTREMOVE ADS
Game icon

(OP) Loop Kill All:

Script preview thumbnail
Script Preview

Description

Basically loop kills everyone in the game except you.

Features:

  • Kill All
ADVERTISEMENTREMOVE ADS
34 Lines • 1016 Bytes
Raw
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Remote = LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("TrollGui"):WaitForChild("RemoteEvent")
spawn(function()
while true do
for _, player in ipairs(Players:GetPlayers()) do
if player ~= LocalPlayer then
local args = {
player.Name,
"Button3",
"0"
}
Remote:FireServer(unpack(args))
wait(0.1)
end
end
wait(0.5)
end
end)
spawn(function()
while true do
for _, player in ipairs(Players:GetPlayers()) do
if player ~= LocalPlayer then
local character = player.Character
if character and character:FindFirstChild("Humanoid") then
character.Humanoid.Health = 0
end
end
end
wait(0.2)
end
end)
ADVERTISEMENTREMOVE ADS

Comments

1 comment
to add a comment
Lo

It's fun to watch all the kids rage and quit the game I love Roblox hacking

3
0
ADVERTISEMENTREMOVE ADS