Advertisement
memberhero

The Ring Script Attempt 2

Dec 15th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2. --The Ring script by basstracker1970
  3. wait(2)
  4. for i,v in next, game.Players.LocalPlayer.Character:GetChildren() do
  5. if v:IsA("Accessory") then
  6. v:Remove()
  7. end
  8. end
  9. wait(1)
  10. Player = game:GetService("Players").LocalPlayer
  11. Character = Player.Character
  12. Spooks = Instance.new("Sound")
  13. Spooks.Looped = true
  14. Spooks.SoundId = "rbxassetid://536292305"
  15. Spooks.Parent = Character
  16. Spooks:Play()
  17. Character.Shirt.ShirtTemplate = "rbxassetid://12762251"
  18. Character.Pants.PantsTemplate = "rbxassetid://12762225"
  19. hair = Instance.new("Hat")
  20. hair.AttachmentForward = Vector3.new(0, -0.1, -0.995)
  21. hair.AttachmentPos = Vector3.new(0, 0.9, 0)
  22. hair.AttachmentRight = Vector3.new(1, 0, 0)
  23. hair.AttachmentUp = Vector3.new(0, 0.995, -0.1)
  24. hair.Parent = Character
  25. handle = Instance.new("Part")
  26. handle.Name = "Handle"
  27. handle.Anchored = false
  28. handle.Parent = hair
  29. mesh = Instance.new("SpecialMesh")
  30. mesh.Scale = Vector3.new(1, 1, 1)
  31. mesh.MeshId = "rbxassetid://13070796"
  32. mesh.TextureId = "rbxassetid://148498373"
  33. mesh.Parent = handle
  34. Character.Torso.Touched:connect(function(hit)
  35. if hit.Parent:FindFirstChild("Humanoid") then
  36. hit.Parent:BreakJoints()
  37. end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement