Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Reserved server doesn't work?

Asked by 2 years ago

Soooo my reserved server doesn't work

local TeleportService = game:GetService("TeleportService")
local Players = game:GetService("Players")

while true do
    print("Running")
    wait()
    local teleportOptions = Instance.new("TeleportOptions")
    teleportOptions.ShouldReserveServer = true

    local players = Players:GetPlayers()

    if #players >= 1 then       
        local teleportResult = TeleportService:TeleportAsync(8357468682, players , teleportOptions);

        -- print(teleportResult.ReservedServerAccessCode);  -- You can access the reserved server access code using this.
    end
end


0
Grammar mistake RunkerSecurity 6 — 2y
0
where.... User#39520 0 — 2y

Answer this question