Advertisement
hjkook

ssd

Feb 24th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. --<<Ghost V1 [REMAKER]>>--
  2. --|| || || //
  3. --||-----|| || //
  4. --|| || ||||
  5. --||-----|| || \\
  6. --|| || || \\
  7.  
  8. --[[SYSTEM]]--
  9. local player = game.Players
  10. local localplay = player.LocalPlayer
  11. local cha = localplay.Character
  12. local Larm = cha["Left Arm"]
  13. local Rarm = cha["Right Arm"]
  14. local Lleg = cha["Left Leg"]
  15. local Rleg = cha["Right Leg"]
  16. local Torso = cha.Torso
  17. local Head = cha.Head
  18. local hum = cha.Humanoid
  19. local Mouse = localplay:GetMouse()
  20.  
  21. --GHOST MAIN SYSTEM
  22. wait(1) -- WAIT COMMAND
  23. print("HK'S GHOST ACTIVE!")
  24. Larm.Transparency = 0.35
  25. Rarm.Transparency = 0.35
  26. Lleg.Transparency = 0.35
  27. Rleg.Transparency = 0.35
  28. Head.Transparency = 0.35
  29. Torso.Transparency = 0.35
  30. --BodyColors
  31. cha["Body Colors"].HeadColor = BrickColor.new("Institutional white")
  32. cha["Body Colors"].TorsoColor = BrickColor.new("Institutional white")
  33. cha["Body Colors"].LeftArmColor = BrickColor.new("Institutional white")
  34. cha["Body Colors"].RightArmColor = BrickColor.new("Institutional white")
  35. cha["Body Colors"].RightLegColor = BrickColor.new("Institutional white")
  36. cha["Body Colors"].LeftLegColor = BrickColor.new("Institutional white")
  37. --HumanoidName
  38. hum.Name = "HK.ghostMode"
  39. --Hit
  40. Mouse.KeyDown:connect(function(key)
  41. if key == "f" then
  42. Hacker()
  43. end
  44.  
  45. end)
  46. function Hacker()
  47. Torso.Touched:connect(function(hit)
  48. if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
  49. hit.Parent.Humanoid.Health = 0
  50. end
  51. end)
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement