Advertisement
wowzers

arm gloves thingy of life n death

Jun 26th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. local Plr = game.Players.LocalPlayer
  2. local PChar = Plr.Character
  3. local memes = false
  4. local memes2 = false
  5. wait(0.5)
  6.  
  7. local CharPart = Instance.new("Part", PChar)
  8. CharPart.Size = Vector3.new(1.05,2.05,1.05)
  9. CharPart.Rotation = Vector3.new(90,90,90)
  10. CharPart.Name = "meme"
  11. CharPart.Material = "Neon"
  12. CharPart.BrickColor = BrickColor.new("Lime green")
  13. CharPart.CanCollide = true
  14. local CharWeld = Instance.new("Weld", PChar.Torso)
  15. CharWeld.Part0 = CharPart
  16. CharWeld.Part1 = PChar['Right Arm']
  17. CharWeld.C0 = CFrame.Angles(0, math.pi, 0)
  18. CharWeld.Name = "memeweld"
  19.  
  20. local CharPart2 = Instance.new("Part", PChar)
  21. CharPart2.Size = Vector3.new(1.05,2.05,1.05)
  22. CharPart2.Rotation = Vector3.new(90,90,90)
  23. CharPart2.Name = "meme2"
  24. CharPart2.Material = "Neon"
  25. CharPart2.BrickColor = BrickColor.new("Really red")
  26. CharPart2.CanCollide = true
  27. local CharWeld2 = Instance.new("Weld", PChar.Torso)
  28. CharWeld2.Part0 = CharPart2
  29. CharWeld2.Part1 = PChar['Left Arm']
  30. CharWeld2.C0 = CFrame.Angles(0, math.pi, 0)
  31. CharWeld2.Name = "memeweld2"
  32.  
  33. local Humanoid = PChar:WaitForChild("Humanoid")
  34.  
  35. Humanoid.WalkSpeed = 16
  36.  
  37. local Music = Instance.new("Sound", CharPart)
  38. Music.SoundId = "rbxassetid://186745378"
  39. Music.Volume = 3
  40. Music.Looped = true
  41. Music:Play()
  42.  
  43. CharPart.Touched:connect(function(ChildTouched)
  44. if ChildTouched.Parent:FindFirstChild("Humanoid") == nil then else
  45. if ChildTouched.Parent.Name == Plr.Name then return end
  46. if memes == false then
  47. memes = true
  48. local getrekt = Instance.new("Sound", game.Workspace)
  49. getrekt.SoundId = "rbxassetid://260421433"
  50. getrekt.Volume = 10
  51. getrekt:Play()
  52. ChildTouched.Parent:FindFirstChild("Humanoid").Health = ChildTouched.Parent:FindFirstChild("Humanoid").Health+20
  53. wait(0.5)
  54. memes = false
  55. end
  56. end
  57. end)
  58.  
  59. CharPart2.Touched:connect(function(ChildTouched)
  60. if ChildTouched.Parent:FindFirstChild("Humanoid") == nil then else
  61. if ChildTouched.Parent.Name == Plr.Name then return end
  62. if memes2 == false then
  63. memes2 = true
  64. local getrekt = Instance.new("Sound", game.Workspace)
  65. getrekt.SoundId = "rbxassetid://155288625"
  66. getrekt.Volume = 10
  67. getrekt:Play()
  68. ChildTouched.Parent:FindFirstChild("Humanoid").Health = ChildTouched.Parent:FindFirstChild("Humanoid").Health-20
  69. wait(0.5)
  70. memes2 = false
  71. end
  72. end
  73. end)
  74.  
  75. wait(0.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement