Advertisement
TheMemeUserLol

Untitled

Aug 30th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. wait(1)
  2.  
  3. local Player = game.Players.ItachiUchihna
  4.  
  5. wait(1)
  6.  
  7. local Tool = Instance.new("Tool", game.Lighting)
  8. Tool.Name = "QuickscopeSB"
  9. local Handle = Instance.new("Part", Tool)
  10. Handle.Name = "Handle"
  11. Handle.BrickColor = BrickColor.Black()
  12. local Mesh = Instance.new("SpecialMesh", Handle)
  13. Mesh.MeshId = "http://www.roblox.com/asset/?id=2761723"
  14. wait(1)
  15. Tool.Parent = Player.Backpack
  16. local PChar = Player.Character
  17.  
  18. Tool.Activated:connect(function()
  19. local Spin = Instance.new("BodyAngularVelocity", PChar.Head)
  20. Spin.AngularVelocity = Vector3.new(0, 5, 0)
  21. Spin.MaxTorque = Vector3.new(4000, 9000000, 4000)
  22. Spin.P = "9e+007"
  23. wait(2)
  24. game:GetService("Chat"):Chat(PChar.Head, "GET N0SC0PEZ!!1!", Enum.ChatColor.Red)
  25. Spin:Destroy()
  26. local Ammo = Instance.new("Part", game.Workspace)
  27. Ammo.Name = "Ammo"
  28. Ammo.Size = Vector3.new(1, 1, 1)
  29. Ammo.BrickColor = BrickColor.new("New Yeller")
  30. Ammo.CanCollide = false
  31. Ammo.Position = Tool.Handle.Position -- sorry! not working CFrame godammit!
  32. Ammo.Rotation = Tool.Handle.Rotation
  33. Ammo.Velocity = Tool.Handle.CFrame.lookVector*90
  34. Ammo.Anchored = false
  35. Ammo.Touched:connect(function(hit)
  36. local Humanoid = hit.Parent:findFirstChild("Humanoid")
  37. if Humanoid ~= nil then
  38. Humanoid.Health = 5
  39. end
  40. end)
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement