Advertisement
3rks

CBRING

Mar 9th, 2021
2,532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. --[[ Make sure you dont send this to anyone
  2. stolen by erks LOL discord.gg/RBLX
  3. This should bypass every arena
  4.  
  5. --]]
  6.  
  7. _G.Reach = 0
  8. _G.KeyBindHigher = "q"
  9. _G.KeyBindLower = "e"
  10. _G.ReachOff = false -- Set this to true if you want to disable the reach lol
  11.  
  12. game:GetService"RunService".Stepped:Connect(function()
  13. if _G.ReachOff then return end
  14. pcall(function()
  15. Sword = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle
  16. for i,v in pairs(game.Players:GetPlayers()) do
  17. if v ~= game.Players.LocalPlayer and v.Character:FindFirstChild("Left Arm") then
  18. if (game.Players.LocalPlayer.Character.Torso.Position - v.Character.Torso.Position).Magnitude <= _G.Reach then
  19. v.Character['Left Arm']:BreakJoints()
  20. v.Character['Left Arm'].Transparency = 1
  21. v.Character['Left Arm'].CanCollide = false
  22. v.Character['Left Arm'].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(1,0,-3.5)
  23. v.Character['Left Leg']:BreakJoints()
  24. v.Character['Left Leg'].Transparency = 1
  25. v.Character['Left Leg'].CanCollide = false
  26. v.Character['Left Leg'].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(1,0,-3.5)
  27. end
  28. end
  29. end
  30. end)
  31. end)
  32.  
  33. local Mouse = game.Players.LocalPlayer:GetMouse()
  34. Mouse.KeyDown:Connect(function(key)
  35. if key == _G.KeyBindHigher then
  36. _G.Reach = _G.Reach + 1
  37. game.StarterGui:SetCore("SendNotification", {
  38. Title = "niggerreach";
  39. Text = "Reach set to " .. _G.Reach;
  40. Icon = "";
  41. Duration = 1;})
  42. end
  43. end)
  44.  
  45.  
  46. local Mouse = game.Players.LocalPlayer:GetMouse()
  47. Mouse.KeyDown:Connect(function(key)
  48. if key == _G.KeyBindLower then
  49. _G.Reach = _G.Reach - 1
  50. game.StarterGui:SetCore("SendNotification", {
  51. Title = "niggerreach";
  52. Text = "Reach set to " .. _G.Reach;
  53. Icon = "";
  54. Duration = 1;})
  55. end
  56. end)
  57.  
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement