Загрузка данных


_G.unlocktween = true
loadstring(game:HttpGet("https://raw.githubusercontent.com/Chris12089/atlasbss/main/script.lua"))()
local P=game:GetService("Players")
local G=game:GetService("GuiService")
local T=game:GetService("TeleportService")
local p=P.LocalPlayer
local busy,queued=false,false
local tries=0

local function retry()
    if queued or tries>=5 then return end
    queued=true
    task.delay(3,function()
        queued=false
        tries+=1
        local ok=pcall(T.Teleport,T,game.PlaceId,p)
        if not ok then retry() end
    end)
end

T.TeleportInitFailed:Connect(function(plr)
    if plr==p and busy then retry() end
end)

G.ErrorMessageChanged:Connect(function(e)
    if e~="" and not busy then
        busy=true
        retry()
    end
end)