Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by Real_IceyDev (lceyDex) --
- -- This script, when you touch a part, it teleports you to another block --
- -- Paste the script below in a Script under a part, make "PARTHERE" the part you want players to be teleported too --
- place = workspace.PARTHERE
- script.Parent.Touched:connect(function(p)
- local humanoid = p.Parent:findFirstChild("Humanoid")
- if (humanoid ~= nil) then
- humanoid.Torso.CFrame = place
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement