Advertisement
Rusty_Clock

Code 91 [Roblox script]

Jan 3rd, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. local player = game:GetService('Players').LocalPlayer
  2. local char = game:GetService('Players').LocalPlayer.Character
  3. local mouse = player:GetMouse()
  4.  
  5.  
  6.  
  7. --particle
  8. local p = Instance.new('ParticleEmitter')
  9. p.Parent = game:GetService('Players').LocalPlayer.Character:FindFirstChild('Right Arm')
  10. p.Rate = 100
  11. p.Size = NumberSequence.new(1,0.1)
  12. p.Lifetime = NumberRange.new(1,1)
  13. p.Texture = "http://www.roblox.com/asset/?id=274458269"
  14. p.Color = ColorSequence.new(Color3.new(BrickColor.Black))
  15.  
  16.  
  17.  
  18. --Body Color
  19. bodyc = game.Players.LocalPlayer.Character:FindFirstChild('Body Colors')
  20. bodyc.HeadColor = BrickColor.new('Really black')
  21. bodyc.TorsoColor = BrickColor.new('Really black')
  22. bodyc.LeftArmColor = BrickColor.new('Really black')
  23. bodyc.LeftLegColor = BrickColor.new('Really black')
  24. bodyc.RightArmColor = BrickColor.new('Really black')
  25. bodyc.RightLegColor = BrickColor.new('Really black')
  26.  
  27. --stats
  28. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 3
  29. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36. game.Players.LocalPlayer.Character.Head.face:Destroy()
  37.  
  38. if game.Players.LocalPlayer.Character:FindFirstChild('Shirt') then
  39. game.Players.LocalPlayer.Character.Shirt:Destroy()
  40. end
  41.  
  42. if game.Players.LocalPlayer.Character:FindFirstChild('Pants') then
  43. game.Players.LocalPlayer.Character.Pants:Destroy()
  44. end
  45.  
  46.  
  47.  
  48. function clickedUp()
  49. local r = game.Players.LocalPlayer.Character:FindFirstChild('Right Arm')
  50. if r:FindFirstChild('ParticleEmitter') then
  51. --maybe
  52. end
  53. end
  54.  
  55.  
  56. function clickedDown()
  57.  
  58.  
  59.  
  60. if mouse.Target.Parent:FindFirstChild('Humanoid') then
  61. local hum = mouse.Target.Parent.Humanoid
  62.  
  63.  
  64.  
  65. mouse.Target:Destroy()
  66. hum.Health = hum.Health - hum.Health
  67.  
  68. bodyc = mouse.Target.Parent:FindFirstChild('Body Colors')
  69. bodyc.HeadColor = BrickColor.new('Really black')
  70. bodyc.TorsoColor = BrickColor.new('Really black')
  71. bodyc.LeftArmColor = BrickColor.new('Really black')
  72. bodyc.LeftLegColor = BrickColor.new('Really black')
  73. bodyc.RightArmColor = BrickColor.new('Really black')
  74. bodyc.RightLegColor = BrickColor.new('Really black')
  75.  
  76.  
  77. end
  78. end
  79.  
  80.  
  81. mouse.Button1Down:connect(clickedDown)
  82. mouse.Button1Up:connect(clickedUp)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement