Advertisement
memberhero

Bendy Script

Nov 20th, 2017
1,349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. ---bendy script made by basstracker1970
  2. wait(1)
  3. Player = game:GetService("Players").LocalPlayer
  4. Character = Player.Character
  5. Mouse = Player:GetMouse()
  6. Theme = Instance.new("Sound")
  7. Theme.Name = "Theme"
  8. Theme.Looped = true
  9. Theme.PlayOnRemove = true
  10. Theme.SoundId = "rbxassetid://1052507441"
  11. Theme.Parent = game.Workspace
  12. Theme:Play()
  13. Player.Character.Head.BrickColor = BrickColor.new("Really black")
  14. Player.Character.Torso.BrickColor = BrickColor.new("Really black")
  15. Player.Character.Humanoid.WalkSpeed = 10
  16. Player.Character.Torso.Touched:connect(function(hit)
  17. if hit.Parent:FindFirstChild("Humanoid") then
  18. kill = Instance.new("Sound")
  19. kill.Name = "Kill"
  20. kill.Looped = false
  21. kill.SoundId = "rbxassetid://333446256"
  22. kill.Parent = game.Workspace
  23. kill:Play()
  24. hit.Parent:BreakJoints()
  25.  
  26.  
  27. end
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement