The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
RECOIL BETA script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 22



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("RECOIL")
  3. local b = w:CreateFolder("AutoFarm")
  4. local e = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6. --Toggle
  7. b:Toggle("AutoKillEnemy",function(bool)
  8.     shared.toggle = bool
  9.     AutoKillEnemy = bool
  10. end)
  11.  
  12. b:Toggle("AutoFlag",function(bool)
  13.     shared.toggle = bool
  14.     AutoFlag = bool
  15. end)
  16.  
  17. e:Toggle("AntiAfk",function(bool)
  18.     shared.toggle = bool
  19.     AntiAfk = bool
  20. end)
  21. --Credits
  22. u:Button("maxgat5#8395",function()
  23.     setclipboard("maxgat5#8395")
  24. end)
  25.  
  26. u:Button("Discrod Server",function()
  27.     setclipboard("https://discord.gg/K4txdRSVfq")
  28. end)
  29.  
  30. while wait() do
  31.     if AutoKillEnemy == true then
  32.         function Player()
  33.             local target = nil
  34.             for i, v in pairs(game.Players:GetPlayers()) do
  35.                 if game.Workspace:FindFirstChild(v.Name) then
  36.                     if game.Workspace[v.Name]:FindFirstChild("HumanoidRootPart") then
  37.                         if game.Workspace[v.Name]:FindFirstChild("Head") then
  38.                             if game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name) then
  39.                                 if game.Players.LocalPlayer.Name ~= game.Workspace[v.Name] then
  40.                                     local v = game.Workspace[v.Name].HumanoidRootPart
  41.                                     if v.Parent.Name ~= game.Players.LocalPlayer.Name then
  42.                                         if v.Highlight.Friendly.Visible == false then
  43.                                             target = v
  44.                                         end
  45.                                     end
  46.                                 end
  47.                             end
  48.                         end
  49.                     end
  50.                 end
  51.             end
  52.             return target
  53.         end
  54.         local tweenInfo = TweenInfo.new(
  55.         0
  56.         )
  57.         local t = game.TweenService:Create(game.Players.LocalPlayer.Character.PrimaryPart,tweenInfo,{CFrame = CFrame.new(
  58.         Player().Position
  59.         )})
  60.         game.Players.LocalPlayer.Character.PrimaryPart.Anchored = true
  61.         t:Play()
  62.         wait(0)
  63.         game.Workspace.CurrentCamera.CFrame = CFrame.new(game.Workspace.CurrentCamera.CFrame.Position, Player().Position)
  64.         game.Players.LocalPlayer.Character.PrimaryPart.Anchored = false
  65.         wait()
  66.         mouse1press()
  67.         mouse1release()
  68.         wait()
  69.         keypress(0x46)
  70.         keyrelease(0x46)
  71.     end
  72.    
  73.     if AutoFlag == true then
  74.         for i,v in pairs(game.workspace:GetDescendants()) do
  75.             if v.Name == "AFlag" then
  76.                 local tweenInfo = TweenInfo.new(
  77.                 0
  78.                 )
  79.                 local t = game.TweenService:Create(game.Players.LocalPlayer.Character.PrimaryPart, tweenInfo, {CFrame = CFrame.new(
  80.                 v.Union.Position
  81.                 )})
  82.                 game.Players.LocalPlayer.Character.PrimaryPart.Anchored = true
  83.                 t:Play()
  84.                 wait(0)
  85.                 game.Players.LocalPlayer.Character.PrimaryPart.Anchored = false
  86.                 wait(5)
  87.             end
  88.             if v.Name == "BFlag" then
  89.                 local tweenInfo = TweenInfo.new(
  90.                 0
  91.                 )
  92.                 local t = game.TweenService:Create(game.Players.LocalPlayer.Character.PrimaryPart, tweenInfo, {CFrame = CFrame.new(
  93.                 v.Union.Position
  94.                 )})
  95.                 game.Players.LocalPlayer.Character.PrimaryPart.Anchored = true
  96.                 t:Play()
  97.                 wait(0)
  98.                 game.Players.LocalPlayer.Character.PrimaryPart.Anchored = false
  99.                 wait(5)
  100.             end
  101.             if v.Name == "CFlag" then
  102.                 local tweenInfo = TweenInfo.new(
  103.                 0
  104.                 )
  105.                 local t = game.TweenService:Create(game.Players.LocalPlayer.Character.PrimaryPart, tweenInfo, {CFrame = CFrame.new(
  106.                 v.Union.Position
  107.                 )})
  108.                 game.Players.LocalPlayer.Character.PrimaryPart.Anchored = true
  109.                 t:Play()
  110.                 wait(0)
  111.                 game.Players.LocalPlayer.Character.PrimaryPart.Anchored = false
  112.                 wait(5)
  113.             end
  114.         end
  115.     end
  116. end