Facebook
From Aqua Monkey, 2 Years ago, written in Plain Text.
This paste is a reply to Roblox hack from Krovey - view diff
Embed
Download Paste or View Raw
Hits: 391
  1. else
  2. if Main.Flags.Size > dist then
  3. Target = v
  4. end
  5. end
  6. end
  7. end
  8. end
  9. return Target
  10. end
  11. local circle = Drawing.new(“Circle”)
  12. circle.Thickness = 0.1
  13. RS.RenderStepped:Connect(function()
  14. local Settings = Main.Flags
  15. if Settings.Aimbot and Settings.FovCircle then — FovCircle
  16. circle.Visible = true
  17. circle.Color = Color3.fromRGB(Settings.FovRed, Settings.FovGreen, Settings.FovBlue)
  18. circle.NumSides = Settings.Smoothing
  19. circle.Radius = Settings.Size
  20. circle.Position = Vector2.new(mouse.X, mouse.Y + 35)
  21. else
  22. circle.Visible = false
  23. end
  24. if Settings.Aimbot then — Aimbot
  25. for i,arrow in pairs(game:GetService(“Workspace”):GetChildren()) do
  26. if arrow.Name == “arrow” or arrow.Name == “crossbow_arrow” then
  27. pcall(function()
  28. arrow:WaitForChild(“Handle”).Position = getclosestplayertomouse().Character.HumanoidRootPart.Position
  29. end)
  30. end
  31. end
  32. end
  33. if Main.Flags.Speed then — Toggle Speed
  34. pcall(function() Plr.Character.Humanoid.WalkSpeed = 22 end)
  35. end
  36. end)
  37. local function InvisPlayer()
  38. getgenv().InvisRunning = false
  39. wait(0.01)
  40. getgenv().InvisRunning = true
  41. pcall(function()
  42. local CFrame = Plr.Character.UpperTorso.CFrame
  43. Plr.Character.HumanoidRootPart:BreakJoints()
  44. while InvisRunning do
  45. Plr.Character.UpperTorso.CFrame = CFrame
  46. wait(0.000001)
  47. end
  48. end)
  49. end
  50. coroutine.wrap(function()
  51. while true do
  52. wait(1)
  53. if Main.Flags.InstantBreak then — InstantBreak
  54. for i,block in pairs(game:GetService(“Workspace”).Map.Blocks:GetChildren()) do
  55. block:SetAttribute(“Health”, 1)
  56. end
  57. end
  58. end
  59. end)()
  60. local Window = Main:CreateWindow(“BedWars”)
  61. local MainTab = Window:AddTab(“Main”) do
  62. MainTab:AddToggle({Name = “Aimbot”, Flag = “Aimbot”})
  63. MainTab:AddToggle({Name = “AimBot Circle”, Flag = “FovCircle”})
  64. MainTab:AddToggle({Name = “VisCheck”, Flag = “VisCheck”})
  65. MainTab:AddSlider({Name = “Aimbot Fov”, Default = 50, Max = 500, Flag = “Size”})
  66. MainTab:AddToggle({Name = “Toggle Sprint”, Flag = “Speed”})
  67. MainTab:AddToggle({Name = “Instant Break”, Flag = “InstantBreak”})
  68. MainTab:AddText(“To get out of invisibility, just reset.”)
  69. MainTab:AddButton({Name = “Invisibility”, Callback = InvisPlayer})
  70. end
  71. local SettingsTab = Window:AddTab(“Settings”) do
  72. SettingsTab:AddText(“Fov Circle Settings”)
  73. SettingsTab:AddSlider({Name = “Red”, Flag = “FovRed”, Default = 255, Max = 255})
  74. SettingsTab:AddSlider({Name = “Green”, Flag = “FovGreen”, Default = 255, Max = 255})
  75. SettingsTab:AddSlider({Name = “Blue”, Flag = “FovBlue”, Default = 255, Max = 255})
  76. SettingsTab:AddSlider({Name = “Smoothness”, Flag = “Smoothing”, Min = 12, Default = 40, Max = 75})
  77. end
  78.  

Replies to Re: Roblox hack rss

Title Name Language When
Re: Re: Roblox hack Fiery Peafowl text 2 Years ago.
captcha