MADE BY NullMaple
FEATURE:
- TELEPORT EVERYONE,
- TELEPORT SPECIFIC
- .
- https://www.roblox.com/games/8458333139/1-LIFE
SCRIPTS: [2]
TP EVERYONE
Code:
local plrs = game.Players:GetChildren()
for i = 1, #plrs do
if (plrs[i].Name ~= game.Players.LocalPlayer.Name) then
plrs[i].Character.HumanoidRootPart.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 2, 5)
end
end
TELEPORT SPECIFIC:
local PlayerToTeleport = ""
local plrs = game.Players:GetChildren()
for i = 1, #plrs do
if (plrs[i].Name == PlayerToTeleport) then
plrs[i].Character.HumanoidRootPart.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 2, 5)
end
end