2. If you don’t get what you want, simply execute the script down below and wait a minute or two. Or wait until you get disconnected.
3. Rejoin
Repeat until you get what you want. (Do not execute the script if you get what you want.)
Kod:
do--//Crash things
Library = require(game:GetService('ReplicatedStorage').Framework.Library)
function Death()
spawn(function()
Library.Network.Fire('request world', "Fantasy")
Library.Network.Fire('performed teleport')
end)
spawn(function()
Library.Network.Fire('request world', "Tech")
Library.Network.Fire('performed teleport')
end)
end
for i=1,15000 do
spawn(function()
Death()
end)
end
end