RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"I want to lag roblox studio for test"
-- Here's a script that will create a large number of parts in your workspace, which may cause lag. Be careful with this, as it can crash your Roblox Studio if the number is too high. local numParts = 10000 -- change this to the number of parts you want to create for i = 1, numParts do local part = Instance.new("Part") part.Parent = workspace part.Position = Vector3.new(math.random(-100, 100), math.random(-100, 100), math.random(-100, 100)) end