geicogeko
|
  |
| Joined: 27 Apr 2010 |
| Total Posts: 2727 |
|
|
| 21 Aug 2011 06:37 PM |
| Couldn't a script be made that took up so much server space that it messed up roblox. |
|
|
| Report Abuse |
|
|
|
| 21 Aug 2011 06:40 PM |
No, it would crash the server instance, not the entire server itself. Maybe on DOS bud, but not on WinSrv2k8
~I finally have the Siggy bot working |
|
|
| Report Abuse |
|
|
pwnedu46
|
  |
| Joined: 23 May 2009 |
| Total Posts: 7534 |
|
|
| 21 Aug 2011 06:43 PM |
It would probably crash the ROBLOX program way before it got close to exceeding the server's capacity.
______________________________________ ~pwnedu46~ -I lost the game.- I love making dooly-bops. ~ArceusInator
|
|
|
| Report Abuse |
|
|
LocalChum
|
  |
| Joined: 04 Mar 2011 |
| Total Posts: 6906 |
|
|
| 21 Aug 2011 06:44 PM |
| ...You guys forget the pagefile.... |
|
|
| Report Abuse |
|
|
lucas668
|
  |
| Joined: 18 Jun 2008 |
| Total Posts: 6183 |
|
|
| 21 Aug 2011 07:14 PM |
| while true do Instance.new("Part") wait() end |
|
|
| Report Abuse |
|
|
Corecii
|
  |
| Joined: 06 Aug 2010 |
| Total Posts: 687 |
|
|
| 21 Aug 2011 07:18 PM |
You can shutdown the Roblox server, but nto the actual server machine.
@Above: Woprkspace? NUUU You crash everyone else to. Workspace.CurrentCamera = local to server on serversided scripts. |
|
|
| Report Abuse |
|
|
Mew903NBC
|
  |
| Joined: 02 Aug 2011 |
| Total Posts: 304 |
|
|
| 21 Aug 2011 10:08 PM |
Make 100,000 line script and insert it into a game, AUTO SHUTDOWN.....
Or use m method:
Instance.new('ManualSurfaceJointInstance',workspace) |
|
|
| Report Abuse |
|
|
elucidir
|
  |
| Joined: 08 Aug 2011 |
| Total Posts: 243 |
|
| |
|
elucidir
|
  |
| Joined: 08 Aug 2011 |
| Total Posts: 243 |
|
| |
|
|
| 22 Aug 2011 01:31 AM |
"Instance.new('ManualSurfaceJointInstance',workspace)"
What if I told you that you don't even need to put it in Workspace?
Instance.new 'ManualSurfaceJointInstance'
Tada, crashed. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 01:34 AM |
while wait(1) do -- Yeah, wait(1). Let's not crash the server instantly, let's spam it with bricks slowly and slowly... =3 Instance.new('Part', Workspace.CurrentCamera) end |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 01:42 AM |
Better:
while wait() do local Part = Instance.new('Part', Workspace) Part.Anchored = true Instance.new('Fire', Part) Instance.new('Smoke', Part) Instance.new('Sparkles', Part) end |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 01:43 AM |
| You can also add another script with a little while true do end if you really hate the server... |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 01:45 AM |
No, I meant this, instead: while wait() do local Part = Instance.new('Part', Workspace.CurrentCamera) Part.Anchored = true Instance.new('Fire', Part) Instance.new('Smoke', Part) Instance.new('Sparkles', Part) end |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 01:55 AM |
local Parent = Workspace.CurrentCamera local Template = Instance.new('CornerWedgePart') Template.Anchored = true Instance.new('Fire', Template) Instance.new('Sparkles', Template) Instance.new('Smoke', Template) Instance.new('Hole', Template) Instance.new('Hole', Template).FaceId = Enum.NormalId.Back Instance.new('Hole', Template).FaceId = Enum.NormalId.Bottom Instance.new('Hole', Template).FaceId = Enum.NormalId.Front Instance.new('Hole', Template).FaceId = Enum.NormalId.Left Instance.new('Hole', Template).FaceId = Enum.NormalId.Top
while wait() do Template:Clone().Parent = Parent end
Made it faster. :D |
|
|
| Report Abuse |
|
|
oxcool1
|
  |
| Joined: 05 Nov 2009 |
| Total Posts: 15444 |
|
| |
|
oxcool1
|
  |
| Joined: 05 Nov 2009 |
| Total Posts: 15444 |
|
| |
|
|
| 22 Aug 2011 04:33 AM |
while not false do Instance.new('ManualSurfaceJointInstance',workspace) end
Will give you output: exception while signalling: Access violation - no RTTI data!
And then it will crash your server/computer (if you're in fullscreen :D) |
|
|
| Report Abuse |
|
|
alltaken
|
  |
| Joined: 18 Aug 2011 |
| Total Posts: 73 |
|
|
| 22 Aug 2011 04:43 AM |
>:O
I added sparkles to my character constantly once and it not only crashed roblox, but my entire computer.
Don't tell me it isn't possible btw. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 04:49 AM |
| @Soul: it didn't crash mine. It didn't even return that error... |
|
|
| Report Abuse |
|
|
Newe6000
|
  |
| Joined: 20 Jun 2008 |
| Total Posts: 1874 |
|
|
| 22 Aug 2011 05:50 AM |
while true do Instance.new("part") script:clone().parent = game.Workspace end
now THAT would have a spaz (and i know about the half a billion capital errors im just too damn lazy) |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 07:40 AM |
| @New, that COULD have a spaz, if you learn to script that is. |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 08:02 AM |
Type this in command bar:
Instance.new 'ManualSurfaceJointInstance'
Tada, your studio crashed.
You don't need to put it in Workspace, you don't need to instance them constantly. >_>
Just instance it. Once. And it'll crash. |
|
|
| Report Abuse |
|
|
Aaaboy97
|
  |
| Joined: 05 Apr 2009 |
| Total Posts: 6612 |
|
|
| 22 Aug 2011 08:09 AM |
while wait() do coroutine.resume(coroutine.create(function() while wait() do Instance.new("Part", workspace) end end)) end |
|
|
| Report Abuse |
|
|
|
| 22 Aug 2011 08:26 AM |
| Aaaboy. why would you lag up every player? You could also just lag up the server... Just put them in the server's CurrentCamera, using a normal script. |
|
|
| Report Abuse |
|
|