Advertisement
Real_IceyDev

Easy Teleport System - Roblox Script

May 11th, 2021 (edited)
563
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. -- Made by Real_IceyDev (lceyDex) --
  2. -- This script, when you touch a part, it teleports you to another block --
  3.  
  4. -- Paste the script below in a Script under a part, make "PARTHERE" the part you want players to be teleported too --
  5.  
  6.  
  7. place = workspace.PARTHERE
  8. script.Parent.Touched:connect(function(p)
  9.     local humanoid = p.Parent:findFirstChild("Humanoid")
  10.     if (humanoid ~= nil) then
  11.         humanoid.Torso.CFrame = place
  12.     end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement