What do you want to achieve?
I want to crash the client
What is the issue?
while true do loop is countered by script allowed execution time, but when I used Adonis’ crash command, it crashed Roblox Studio itself and script execution time couldn’t do anything.
What solutions have you tried so far?
Every post recommends while true do and my attempts to achieve this always fail
Now, before you say that it is bad to do this, the player can crash themselves but it is completely optional. It’s just like a “feature”
Hello, thanks for the ideas, but wouldn’t that be the same as just doing while true do? And about your first idea, I will test it later to see if it’s enough to crash Studio
Script timeout wont trigger if you add a wait function into the loop. So this solution should work eventually when there are too many parts on the client but it depends on the device how long it takes to crash.
while true do
task.wait()
local Part = Instance.new("Part")
Part.Parent = workspace
end