Advertisement
Roblox__Exploits

Reach Script #3

May 1st, 2021
5,915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. --Made By Roblox__Exploits
  2.  
  3. game.StarterGui:SetCore("SendNotification", {
  4. Title = "-悪魔-";
  5. Text = "ロードしました";
  6. Icon = "";
  7. Duration = 5;})
  8.  
  9. Higher_KeyBind = "q"
  10. Lower_KeyBind = "e"
  11. local Distance = 8
  12. local plr = game.Players.LocalPlayer
  13. local m = plr:GetMouse()
  14. m.KeyDown:Connect(function(Key)
  15. if Key == Higher_KeyBind then
  16. Distance = Distance + 1
  17. game.StarterGui:SetCore("SendNotification", {
  18. Title = "-悪魔-";
  19. Text = "電力レベル: " .. Distance;
  20. Icon = "";
  21. Duration = 5;})
  22. end
  23. if Key == Lower_KeyBind then
  24. Distance = Distance - 1
  25. game.StarterGui:SetCore("SendNotification", {
  26. Title = "-悪魔-";
  27. Text = "電力レベル: " .. Distance;
  28. Icon = "";
  29. Duration = 5;})
  30. end
  31. end)
  32.  
  33.  
  34. game:GetService"RunService".Stepped:Connect(function()
  35. local Player = game.Players.LocalPlayer
  36. local Mouse = Player:GetMouse()
  37. local Char = Player.Character
  38. local Sword = Char:FindFirstChildOfClass("Tool")
  39. pcall(function()
  40. for _,v in pairs(game.Players:GetPlayers()) do
  41. if v and v ~= Player and v.Character.Humanoid.Health ~= 0 then
  42. if (v.Character.Torso.Position - Char.Torso.Position).Magnitude <= Distance then
  43. sword = Char:FindFirstChildOfClass("Tool")
  44. for i = 1,2 do
  45. firetouchinterest(sword.Handle, v.Character["Torso"], 0)
  46. firetouchinterest(sword.Handle, v.Character["Torso"], 1)
  47. firetouchinterest(sword.Handle, v.Character["Left Arm"], 0)
  48. firetouchinterest(sword.Handle, v.Character["Left Arm"], 1)
  49. firetouchinterest(sword.Handle, v.Character["Right Arm"], 0)
  50. firetouchinterest(sword.Handle, v.Character["Right Arm"], 1)
  51. firetouchinterest(sword.Handle, v.Character["Head"], 0)
  52. firetouchinterest(sword.Handle, v.Character["Head"], 1)
  53. firetouchinterest(sword.Handle, v.Character["Left Leg"], 0)
  54. firetouchinterest(sword.Handle, v.Character["Left Leg"], 1)
  55. firetouchinterest(sword.Handle, v.Character["Right Leg"], 0)
  56. firetouchinterest(sword.Handle, v.Character["Right Leg"], 1)
  57. end
  58. end
  59. end
  60. end
  61. end)
  62. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement