Advertisement
iEmotionless

Untitled

Jun 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local Mouse = Player:GetMouse()
  3. on1 = false
  4. on2 = false
  5.  
  6. Player:GetMouse().Button1Down:connect(function()
  7. on1 = true
  8. end)
  9. Player:GetMouse().Button2Down:connect(function()
  10. on2 = true
  11. end)
  12.  
  13. Player:GetMouse().Button1Up:connect(function()
  14. on1 = false
  15. end)
  16. Player:GetMouse().Button2Up:connect(function()
  17. on2 = false
  18. end)
  19.  
  20. while wait(.2) do
  21. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 500
  22. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 70
  23. if game.Players.LocalPlayer:GetMouse().Target and on1 == true and on2 == true then
  24. wait(.8)
  25. if game.Players.LocalPlayer:GetMouse().Target and on1 == true and on2 == true then
  26. game.Players.LocalPlayer:GetMouse().Target:Destroy()
  27. end
  28. end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement