Donny526

Void Script Builder Slenderman Script

Jul 3rd, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. -- SlenderMan script by Donny526! --
  2. -- Donny526#1886--
  3.  
  4. -- P.S. I edited the Bugs Bunny script. --
  5.  
  6. wait(.2)
  7.  
  8. player = game.Players.LocalPlayer
  9. char = player.Character
  10. human = char:WaitForChild("Humanoid")
  11.  
  12. print(player.Name.." is using the SlenderMan script made by Donny526!")
  13.  
  14. wait()
  15.  
  16. char:WaitForChild("Left Arm").Transparency = 1
  17. char:WaitForChild("Right Arm").Transparency = 1
  18. char:WaitForChild("Left Leg").Transparency = 1
  19. char:WaitForChild("Right Leg").Transparency = 1
  20. char:WaitForChild("Head").Transparency = 1
  21. char:WaitForChild("Head").face.Transparency = 1
  22. human.WalkSpeed = 32
  23.  
  24. wait()
  25.  
  26. torso = char:WaitForChild("Torso")
  27.  
  28. slendermesh = Instance.new("SpecialMesh",torso)
  29. slendermesh.MeshType = "FileMesh"
  30. slendermesh.MeshId = "rbxassetid://1531817922"
  31. slendermesh.TextureId = "rbxassetid://1531817954"
  32. slendermesh.Offset = Vector3.new(0,.5,0)
  33.  
  34. wait()
  35.  
  36. charamount = char:GetChildren()
  37.  
  38. for i=1, #charamount do
  39. if (charamount[i].className == "Accessory") then
  40. charamount[i]:remove()
  41. end
  42. end
  43.  
  44. music = Instance.new("Sound",char)
  45. music.SoundId = "rbxassetid://150151536"
  46. music.Volume = 1
  47. music.Looped = true
  48. wait()
  49. music:Play()
Add Comment
Please, Sign In to add comment