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

...Studio crashes as soon as I open it? [closed]

Asked by
funyun 958 Moderation Voter
9 years ago

I have no idea how that's possible. My actual game works fine. Has this ever happened to anyone else?

http://imgur.com/HpOG3tQ

0
Does this happen all the time? EzraNehemiah_TF2 3552 — 9y
0
Yes, every time I click Edit on my game. funyun 958 — 9y
0
Edit or Solo? If it's edit then you've got a problem with roblox studio, reinstall it and try again. EzraNehemiah_TF2 3552 — 9y

Closed as Not Constructive by FearMeIAmLag

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
1
Answered by 9 years ago

This will happen if you have a loop without a form of delay.

while true do
end

repeat
until true

for i = 1,2 do
end
--All of these will crash your game

To fix it add a delay(like wait)

while true do
    wait()
end

repeat
    wait()
until true

for i = 1,2 do
    wait()
end

Hope it helps!(Post your code too so we can fix it easier.)

0
Yes, but that's when you actually run the game. I didn't make any script like that. Studio just crashes when I try to open it. funyun 958 — 9y
1
@funyun That's a bug caused by ROBLOX; My Studio does that for a lot of Updates, but, it can also be caused by Anti-Viruses, Firewalls, Anti-Malware, ect., so, it is something only ROBLOX can really fix. :( TheeDeathCaster 2368 — 9y
Ad