local t1a = math.random(-360, -366)
local t1b = math.random(50, 54)
local t1c = math.random(269, 275)
local TelePos1 = {
Position = CFrame.new(t1a, t1b, t1c)
}
for _, player in ipairs(Players:GetPlayers()) do
if table.find(GamePlayersRegistered, player) then
player.Character:WaitForChild("HumanoidRootPart").CFrame = TelePos1.Position
print("Players Teleported")
print(TelePos1.Position)
else
print("Players not Teleported")
end
end