07-04-2011, 01:10 AM
Are you using UIStickyFrames? They're extremely buggy and need to be removed.
Also, try wrapping code that creates, removes, or changes a lot of GUI components in
, especially if you are clone()ing the UI from storage or something. (this is standard practice for cloning parts too)
Also, try wrapping code that creates, removes, or changes a lot of GUI components in
Code:
game:addTask(function()
--code here
end)
, especially if you are clone()ing the UI from storage or something. (this is standard practice for cloning parts too)