I want to make a teleporter like the mimic, that teleports you to a certain place after a certain time, for a certain amount of Players, what is the script?
A simple script would go something with a wait() for how many seconds is that "certain amount of time" then code that would teleport the players to a new place.
local part = -- define a part in the workspace you want the players to tp to wait(5) -- change wait time for i,v in pairs(game.Players:GetChildren()) do if v.Character then v.Character.HumanoidRootPart.CFrame = part.CFrame end end