Advertisement
Guest User

Untitled

a guest
Jan 9th, 2019
4,608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. Local = game:GetService('Players').LocalPlayer
  2. Char = Local.Character
  3. touched,tpdback = false, false
  4. Local.CharacterAdded:connect(function(char)
  5. if script.Disabled ~= true then
  6. wait(.25)
  7. loc = Char.HumanoidRootPart.Position
  8. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  9. end
  10. end)
  11. game:GetService('UserInputService').InputBegan:connect(function(key)
  12. if key.KeyCode == Enum.KeyCode.Equals then
  13. if script.Disabled ~= true then
  14. script.Disabled = true
  15. print'you may re-execute'
  16. end
  17. end
  18. end)
  19. box = Instance.new('Part',workspace)
  20. box.Anchored = true
  21. box.CanCollide = true
  22. box.Size = Vector3.new(10,1,10)
  23. box.Position = Vector3.new(0,10000,0)
  24. box.Touched:connect(function(part)
  25. if (part.Parent.Name == Local.Name) then
  26. if touched == false then
  27. touched = true
  28. function apply()
  29. if script.Disabled ~= true then
  30. no = Char.HumanoidRootPart:Clone()
  31. wait(.25)
  32. Char.HumanoidRootPart:Destroy()
  33. no.Parent = Char
  34. Char:MoveTo(loc)
  35. touched = false
  36. end end
  37. if Char then
  38. apply()
  39. end
  40. end
  41. end
  42. end)
  43. repeat wait() until Char
  44. loc = Char.HumanoidRootPart.Position
  45. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  46. Char.Torso.Transparency = 1
  47. Char.Head.Transparency = 1
  48. Char["Right Arm"].Transparency = 1
  49. Char["Left Arm"].Transparency = 1
  50. Char["Right Leg"].Transparency = 1
  51. Char["Left Leg"].Transparency = 1
  52. --by Suepr lol
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement