Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is It possible to crash roblox without any message?

Asked by
hvcu 3
4 years ago
Edited 4 years ago

Tried overloading the roblox client but it displays the "Roblox has crashed" Popup. web.roblox.com/games/2903562653/Crash-Button Is that button even possible to be remade?

0
umm use plr:Kick? EmbeddedHorror 299 — 4y
0
Did you check the link? The button just closes roblox with no kick message or anything hvcu 3 — 4y
0
plr:Remove()? im pretty sure that just closes EmbeddedHorror 299 — 4y
0
or plr:Destroy() EmbeddedHorror 299 — 4y
View all comments (3 more)
0
This will only remove him from the server hvcu 3 — 4y
0
not disconnect... hvcu 3 — 4y
0
just use an if statement then put while true do in there with spawn function and another while true do in there.. greatneil80 2647 — 4y

1 answer

Log in to vote
0
Answered by
rnelee 105
4 years ago

If you do something like repeated while true do ends you'll get the crash message, you'd be better off just creating extreme client side lag. Maybe something like this on the client:

local Part = workspace.Baseplate (set this to any part)

while true do
    spawn(function()
        while true do
            newPart = Part:Clone()
            newPart.Parent = workspace -- if you parent it first, it takes up more server effort
            newPart.Anchored = false
            newPart.Transparency = 1
        end
    end)
end
0
crashing the client is never a good idea... EmbeddedHorror 299 — 4y
Ad

Answer this question