I have no idea how that's possible. My actual game works fine. Has this ever happened to anyone else?
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.)
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?