Advertisement
SpacecowboyHX

The Ghost (FINALLY WORKING)

Nov 21st, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. wait(3)
  2. local Name=game.Players.LocalPlayer
  3. local Player=Name.Character
  4. local Halfway=0.50
  5. local Shirt=Player:FindFirstChild("Shirt")
  6. if (Shirt~=nil) then
  7. Player.Shirt:Destroy()
  8. print("Shirt Removed")
  9. else
  10. print("Error removing Shirt")
  11. end
  12. local TShirt=Player:FindFirstChild("Shirt Graphic")
  13. if (TShirt~=nil) then
  14. Player["Shirt Graphic"]:Destroy()
  15. print("T-Shirt Removed")
  16. else
  17. print("Error removing T-Shirt")
  18. end
  19. local Pants=Player:FindFirstChild("Pants")
  20. if (Pants~=nil) then
  21. Player.Pants:Destroy()
  22. print("Pants Removed")
  23. else
  24. print("Error removing Pants")
  25. end
  26. wait()
  27. Player.Head.BrickColor=BrickColor.new("White")
  28. Player.Torso.BrickColor=BrickColor.new("White")
  29. Player["Left Arm"].BrickColor=BrickColor.new("White")
  30. Player["Right Arm"].BrickColor=BrickColor.new("White")
  31. Player["Right Leg"].BrickColor=BrickColor.new("White")
  32. Player["Left Leg"].BrickColor=BrickColor.new("White")
  33. wait()
  34. Player.Torso.Transparency=Halfway
  35. Player.Head.Transparency=Halfway
  36. Player["Left Arm"].Transparency=Halfway
  37. Player["Right Arm"].Transparency=Halfway
  38. Player["Right Leg"].Transparency=Halfway
  39. Player["Left Leg"].Transparency=Halfway
  40. local Sound=Instance.new("Sound")
  41. Sound.SoundId="rbxassetid://182390761"
  42. Sound.Volume=10
  43. Sound.Parent=Player.Head
  44. Sound.Playing=true
  45. local v=Instance.new("Sound")
  46. v.Parent=Player.Head
  47. v.MaxDistance=40
  48. v.Volume=5
  49. v.SoundId="rbxassetid://1787893952"
  50. function onTouch()
  51. v.Playing=true
  52. wait(1)
  53. v.Playing=false
  54. end
  55. Player.Animate.idle.Animation2:Destroy()
  56. Player.Animate.idle.Animation1.AnimationId="rbxassetid://2585771821"
  57. Player.Animate.walk.WalkAnim.AnimationId="rbxassetid://2325492084"
  58. Player.Torso.Touched:Connect(onTouch)
  59. Player.Humanoid.MaxHealth=("inf")
  60. Player.Humanoid.HealthDisplayType=("AlwaysOff")
  61. Player.Humanoid.WalkSpeed=100
  62. Player.Humanoid.JumpPower=200
  63. function onTouch(hit)
  64. local human=hit.Parent:FindFirstChild("Humanoid")
  65. if (human~=nil) then
  66. hit.Parent:BreakJoints()
  67. end
  68. end
  69. Player.Torso.Touched:Connect(onTouch)
  70. g=Instance.new("SurfaceLight")
  71. g.Parent=Player.Torso
  72. g.Angle=180
  73. g.Brightness=10
  74. g.Color=Color3.new(255,255,255)
  75. g.Face=("Top")
  76. g.Range=60
  77. wait(1/60)
  78. local load=Player:FindFirstChild("Torso")
  79. if (load~=nil) then
  80. print("Script loaded! Have fun!")
  81. else
  82. print("This script will only work with r15")
  83. end
  84. function onTouch(hit)
  85. local block=hit.Parent:FindFirstChild("Part")
  86. if (block~=nil) then
  87. hit.CanCollide=false
  88. wait(1)
  89. hit.CanCollide=false
  90. else
  91. hit.CanCollide=true
  92. end
  93. end
  94. Player.Torso.Touched:Connect(onTouch)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement