Advertisement
stinkpotato

sections

Dec 27th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. DO NOT COPY PASTE THIS, ONLY COPY PASTE SECTIONS
  2.  
  3. Section 1 (Godding)
  4. ____________________
  5.  
  6. local player = game.Players.LocalPlayer
  7.  
  8. if player.Character then
  9.  
  10. if player.Character:FindFirstChild("Humanoid") then
  11.  
  12. player.Character.Humanoid.Name = "1"
  13.  
  14. end
  15.  
  16. local l = player.Character["1"]:Clone()
  17.  
  18. l.Parent = player.Character
  19.  
  20. l.Name = "Humanoid"; wait(0.1)
  21.  
  22. player.Character["1"]:Destroy()
  23.  
  24. workspace.CurrentCamera.CameraSubject = player.Character.Humanoid
  25.  
  26. player.Character.Animate.Disabled = true; wait(0.1)
  27.  
  28. player.Character.Animate.Disabled = false
  29.  
  30. end
  31.  
  32. print("finished.")
  33.  
  34. __________________________
  35. Section 2 (click teleport)
  36. _________________________
  37.  
  38. plr = game.Players.LocalPlayer
  39.  
  40. hum = plr.Character.HumanoidRootPart
  41.  
  42. mouse = plr:GetMouse()
  43.  
  44.  
  45.  
  46. mouse.KeyDown:connect(function(key)
  47.  
  48. if key == "e" then
  49.  
  50. if mouse.Target then
  51.  
  52. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  53.  
  54. end
  55.  
  56. end
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement