How can I crash Players

How can I Crash a Players game without affecting other players? Ideas appreciated!

4 Likes

Infinite loop with no yield seems to be the quickest way.

while true do end

You’d pay a big ux penalty for doing this though

1 Like

Why are you wanting to do this?

1 Like

You should just Kick them instead, crashing isn’t necessary & really serves no purpose but if you insist just use a while true do loop

You could attach a localscript to the player that runs infinite loops, but why not just kick them?

You could just spawn like 1 billion parts using a local script. Just do anything to take up as much memory and CPU as possible would work

That thread has more valuable responses that you could’ve linked: for example, kiriot below mentioned that infinite loops can be terminated by lowering the execution timeout or just disabling the code. Crashing without affecting other players means client-side code and client-side code can be tampered with by exploiters. When Kick exists, developers do not have any valid reason to crash clients.

2 Likes

I want to punish hackers! >:D
usint the HD Admin script if you chat “:Crash (player)” it crashes their game and breaks their computer for a little, I want this to happen to hackers. Just to scare them.

Here it is pulled directly from HD admin mainmodule:
(LocalScript)

wait(1)
local player = game.Players.LocalPlayer
–player.CameraMode = Enum.CameraMode.LockFirstPerson
Instance.new(“BlurEffect”,workspace.CurrentCamera).Size = 999
player.PlayerGui:ClearAllChildren()
game:GetService(‘StarterGui’):SetCore(“TopbarEnabled”, false)
–[[
for a = 1,10 do
for i = 1,10 do
local audio = Instance.new(“Sound”,player.PlayerGui)
audio.Volume = 10
audio.PlaybackSpeed = a*i
audio.Looped = true
if math.random(1,2) == 1 then
audio.SoundId = “rbxassetid://168137470”
else
audio.SoundId = “rbxassetid://714583842”
end
audio:Play()
–wait()
end
end–]]
wait(1)
while true do end
Edit: Not sure if this is useful because this has to be used in conjunction with HD. I recommend while true do end though.
Edit 2: Especially if it’s an anti exploit and being used with LocalScripts for punishment, that will make it much easier.

7 Likes

Unless their computer somehow explodes or doesn’t boot up anymore, it’s not Intentional Damage to a Computer.
If it is illegal, @OP is likely a minor, meaning they will most likely not be charged with IDTAC, unlike me, as I am 19.

It’s not illegal lol, but it’s ultimately pointless since crashing attempts can just be timed out through ScriptContext:SetTimeout

Yes, it can.
Most exploiters just use aimbot, noclip, etc. and do not have advanced exploits (or serversides like topkek) that have dex, script executors, etc.
So it’s not that much of a concern.