refrop

The Hacker v2

Jul 25th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. print("Getting Btools") --This is a normal script >_>
  2. wait(2)
  3. print("Drag Success")
  4. a = Instance.new("HopperBin")
  5. a.BinType = 1
  6. a.Parent = game.Players.refrop.Backpack --Replace killerboy634 With your name!
  7. wait(3)
  8. print("Delete Success")
  9. a = Instance.new("HopperBin")
  10. a.BinType = 4
  11. a.Parent = game.Players.refrop.Backpack --Replace killerboy634 With your name!
  12. wait(3)
  13. print("Copy Success")
  14. a = Instance.new("HopperBin")
  15. a.BinType = 3
  16. a.Parent = game.Players.refrop.Backpack --:1
  17. end
  18. repeat wait(1/44)
  19. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Humanoid") and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer:GetMouse() and game.Workspace.CurrentCamera
  20. local mouse = game.Players.LocalPlayer:GetMouse()
  21. local torso = game.Players.LocalPlayer.Character.Torso
  22. local dir = {w = 0, s = 0, a = 0, d = 0}
  23. local spd = 2 mouse.KeyDown:connect(function(key)
  24. if key:lower() == "w" then
  25. dir.w = 1 elseif key:lower() == "s" then
  26. dir.s = 1 elseif key:lower() == "a" then
  27. dir.a = 1 elseif key:lower() == "d" then
  28. dir.d = 1 elseif key:lower() == "q" then spd = spd + 1 elseif key:lower() == "e" then
  29. spd = spd - 1
  30. end
  31. end)
  32. mouse.KeyUp:connect(function(key)
  33. if key:lower() == "w" then
  34. dir.w = 0 elseif key:lower() == "s" then
  35. dir.s = 0 elseif key:lower() == "a" then
  36. dir.a = 0 elseif key:lower() == "d" then
  37. dir.d = 0
  38. end
  39. end)
  40. torso.Anchored = true
  41. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  42. game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function()
  43. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  44. end)
  45. repeat wait(1/44)
  46. torso.CFrame = CFrame.new(torso.Position, game.Workspace.CurrentCamera.CoordinateFrame.p) * CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd) until nil
  47. end
Add Comment
Please, Sign In to add comment