How would I make a script that teleport all players in the game to a brick?
local brick = workspace.BrickYouWantNoobsToTeleportToLikeYou for i, v in pairs(game.Players:GetPlayers())do pcall(function() v.Character:MoveTo(brick.Position) end) end