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

How to make a teleporter like the mimic?

Asked by 3 years ago

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?

1 answer

Log in to vote
0
Answered by
Jo1nts 134
3 years ago

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
0
I want the teleporter to teleport you to a certain roblox place ID. MatanelTheSlayer 0 — 3y
Ad

Answer this question