Advertisement
memberhero

The Ring Script Attempt 1

Dec 12th, 2017
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. --The Ring script by basstracker1970
  2. Player = game:GetService("Players").LocalPlayer
  3. Character = Player.Character
  4. Spooks = Instance.new("Sound")
  5. Spooks.Looped = true
  6. Spooks.SoundId = "rbxassetid://536292305"
  7. Spooks.Parent = Character
  8. Spooks:Play()
  9. Character.Shirt.ShirtTemplate = "rbxassetid://12762251"
  10. Character.Pants.PantsTemplate = "rbxassetid://12762225"
  11. hair = Instance.new("Hat")
  12. hair.Parent = Character
  13. handle = Instance.new("Part")
  14. handle.Parent = hair
  15. mesh = Instance.new("SpecialMesh")
  16. mesh.Scale = Vector3.new(1, 1, -1)
  17. mesh.MeshId = "rbxassetid://13070796"
  18. mesh.TextureId = "rbxassetid://46411796"
  19. mesh.Parent = handle
  20. Character.Torso.Touched:connect(function(hit)
  21. if hit.Parent:FindFirstChild("Humanoid") then
  22. hit.Parent:BreakJoints()
  23. end
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement