Advertisement
buvy

Untitled

Oct 30th, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. loadstring(game:HttpGet('https://raw.githubusercontent.com/2dgeneralspam1/scripts-and-stuff/master/shit%20script%20pack/CheatX'))()
  2.  
  3. -----------------------------------------------------------------------------------------------------------------------------
  4.  
  5.  
  6. _G.Reach = 0
  7. _G.KeyBindHigher = "["
  8. _G.KeyBindLower = "]"
  9. _G.ReachOff = false -- Set this to true if you want to disable the reach lol
  10.  
  11. game:GetService"RunService".Stepped:Connect(function()
  12. if _G.ReachOff then return end
  13. pcall(function()
  14. Sword = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle
  15. for i,v in pairs(game.Players:GetPlayers()) do
  16. if v ~= game.Players.LocalPlayer and v.Character:FindFirstChild("Left Arm") then
  17. if (game.Players.LocalPlayer.Character.Torso.Position - v.Character.Torso.Position).Magnitude <= _G.Reach then
  18. v.Character['Left Arm']:BreakJoints()
  19. v.Character['Left Arm'].Transparency = 1
  20. v.Character['Left Arm'].CanCollide = false
  21. v.Character['Left Arm'].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(1,0,-3.5)
  22. v.Character['Left Leg']:BreakJoints()
  23. v.Character['Left Leg'].Transparency = 1
  24. v.Character['Left Leg'].CanCollide = false
  25. v.Character['Left Leg'].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(1,0,-3.5)
  26. end
  27. end
  28. end
  29. end)
  30. end)
  31.  
  32. local Mouse = game.Players.LocalPlayer:GetMouse()
  33. Mouse.KeyDown:Connect(function(key)
  34. if key == _G.KeyBindHigher then
  35. _G.Reach = _G.Reach + 1
  36. game.StarterGui:SetCore("SendNotification", {
  37. Title = "H0ndu's Reach v1";
  38. Text = "Reach set to " .. _G.Reach;
  39. Icon = "";
  40. Duration = 0.3;})
  41. end
  42. end)
  43.  
  44.  
  45. local Mouse = game.Players.LocalPlayer:GetMouse()
  46. Mouse.KeyDown:Connect(function(key)
  47. if key == _G.KeyBindLower then
  48. _G.Reach = _G.Reach - 1
  49. game.StarterGui:SetCore("SendNotification", {
  50. Title = "H0ndu's Reach v1";
  51. Text = "Reach set to " .. _G.Reach;
  52. Icon = "";
  53. Duration = 0.3;})
  54. end
  55. end)
  56.  
  57.  
  58. -----------------------------------------------------------------------------------------------------------------------------
  59.  
  60.  
  61.  
  62.  
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement