ID = 132286557 function Teleport(hit) game:GetSevice("TeleportService"):Teleport(ID, hit.Parent) end script.Parent.Touched:connect(Teleport)
local ID = 132286557 function Teleport(player) game:service("TeleportService"):Teleport(ID, player) end script.Parent.Touched:connect(function(hit) find = hit.Parent:FindFirstChild("Humanoid") if find then plr = game.Players:GetPlayerFromCharacter(hit.Parent) if plr then Teleport(plr) end end end) -- I rushed that code, let me know if it works. (It should work fine though)