Advertisement
Guest User

Roblox Sword Fighting Reach Exploit (Hitware)

a guest
Sep 5th, 2021
5,118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. [[-
  2. BROUGHT TO YOU BY TYRANNIFY
  3. MADE BY WWEDANIEL11? IDK
  4. THANKS FOR WATCHING THE VIDEO AND GOING THROUGH THE LINKVERTISE
  5. FOR REWARD THIS IS THE SCRIPT.
  6. KEYBINDS WILL BE LISTED
  7. E TO SHOW THE STATUS OF THE SCRIPT
  8. J TO INCREASE THE SIZE OF THE SCRIPT
  9. K TO DECREASE THE SIZE OF THE SCRIPT
  10. R TO TOGGLE ON AND OFF THE SCRIPT
  11. YOU CAN CHANGE THESE SETS BY MANUALLY DOING IT THROUGH THE SCRIPT BELOW
  12. ENJOY.
  13. -]]
  14.  
  15. local on = true
  16. local distance = 7
  17.  
  18. local starterGui = game:GetService("StarterGui")
  19. local plr = game:GetService('Players').LocalPlayer
  20. local cooldown = false
  21. game:GetService('RunService').Heartbeat:connect(function()
  22. if on then
  23. local hum = plr.Character.Humanoid
  24. for _,v in ipairs(game.Players:GetPlayers()) do
  25. if v.Name ~= plr.Name then
  26. local s,e = pcall(function()
  27. local root = v.Character.HumanoidRootPart
  28. local sword = hum.Parent:FindFirstChildOfClass('Tool')
  29. if sword and (root.Position - plr.Character.HumanoidRootPart.Position).Magnitude <= distance then
  30. if cooldown == false then
  31. cooldown = true
  32. firetouchinterest(sword.Handle, root, 1)
  33. firetouchinterest(sword.Handle, root, 0)
  34. wait(0.05)
  35. cooldown = false
  36. end
  37. end
  38. end) if e then print(e) end
  39. end
  40. end
  41. end
  42. end)
  43. local is_on = function()
  44. return on and 'on' or 'off'
  45. end
  46.  
  47. local mouse = plr:GetMouse()
  48. mouse.KeyDown:connect(function(key)
  49. if key == 'r' then
  50. on = not on
  51. elseif key == 'e' then
  52. local status = is_on()
  53. starterGui:SetCore('SendNotification', {Title = 'Hitware', Text = 'Exploit is '..status..'. Current: '.. distance..' studs'})
  54. elseif key == "j" then
  55. distance = distance + 1
  56. starterGui:SetCore("SendNotification", {Title = "PROJECT HITWARE", Text = "Reach Strength has increased by 1. Current: " .. distance..' studs'})
  57. elseif key == "k" then
  58. if distance > 1 then
  59. distance = distance - 1
  60. starterGui:SetCore("SendNotification", {Title = "Hitware", Text = "Reach Strength has decreased by 1. Current: " .. distance..' studs'})
  61. else
  62. starterGui:SetCore("SendNotification", {Title = "PROJECTHITWARE", Text = "Cannot decrease any further!"})
  63. end
  64. end
  65. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement