Immediately after enabling Team Create, I was kicked out of my place and can no longer go back into studio to edit it. The only solution is to publish my backup file of it to a new place. Running Google Chrome using Windows 10, if that matters
Try reverting versions. If it does the work, disable TC and reverse to the version you wanted it to be.
We’ve recently noticed that extremely large scripts or other objects can cause disconnects in Team Create. If you don’t have any of these, can you send me a copy of this place?
We’ve recently noticed that extremely large scripts or other objects can cause disconnects in Team Create.
You have a script titled MainGui (REFERENCE) that is 11,894 lines long. If I remove that script, the place works with Team Create just fine.
Ohhhh, I completely forgot about that. Thanks!
Might this be related to the old “2e5 disconnect” bug/exploit/feature?
Instance.new("StringValue",somePlayer.Backpack).Value = ("bye"):rep(2e5)
-- It tries to replicate the long string, is longer than 2e5 characters, so disconnects
-- (actually might be 2e5-1 that already crashes? or 2e5+1? veeeery near)
-- ("bye" is 3 characters, so it'll be 6e5 long, which is certainly long enough)
This got fixed by blocking scripts from setting any String property to anything above 2e5 characters.
The Source of scripts (afterwards) never had this problem in-game because they send bytecode.
But in Team Create, since you send the actual source, which is >2e5 characters… you get the idea.
TL;DR: Good ol’ friend “replicating long string disconnects” applies to .Source in Team Create
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.