Advertisement
memberhero

roblox ghostface killer script

Dec 4th, 2017
10,527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. ---Scream script by basstracker1970
  2. ---and no its not a scream its scream the killer or ghostface you can call it that too
  3. wait(1)
  4. Player = game:GetService("Players").LocalPlayer
  5. Character = Player.Character
  6. Player.Character.Head.face.Texture = "rbxassetid://112826951"
  7. Player.Character.Head.BrickColor = BrickColor.new("Really black")
  8. Player.Character.Torso.BrickColor = BrickColor.new("Really black")
  9. Player.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  10. Player.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  11. Player.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  12. Player.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  13. sound = Instance.new("Sound")
  14. sound.SoundId = "rbxassetid://1052507441"
  15. sound.Looped = true
  16. sound.Parent = game.Workspace
  17. sound:Play()
  18. tool = Instance.new("Tool")
  19. tool.Name = "Knife"
  20. tool.Parent = Player.Backpack
  21. handle = Instance.new("Part")
  22. handle.Name = "Handle"
  23. handle.Parent = tool
  24. mesh = Instance.new("SpecialMesh")
  25. mesh.MeshId = "rbxassetid://121944778"
  26. mesh.TextureId = "rbxassetid://144012208"
  27. mesh.Parent = handle
  28. animation = Instance.new("Animation")
  29. animation.AnimationId = "rbxassetid://89134792"
  30. animation.Parent = tool
  31. tool.Activated:connect(function()
  32. local animtrack = Player.Character.Humanoid:LoadAnimation(animation)
  33. animtrack:Play()
  34. handle.Touched:connect(function(hit)
  35. if hit.Parent:FindFirstChild("Humanoid") then
  36. hit.Parent.Humanoid:TakeDamage(5)
  37. end
  38. end)
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement