The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Combat Rift! script pastebin roblox
By Combat Rift! on 2024-09-19 08:00 am | Syntax: LUA | Views: 28



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("Combat Rift")
  3. local b = w:CreateFolder("AutoFarm")
  4. local e = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6. local world = "1"
  7. --Toggle
  8.  
  9. b:Toggle("AutoTpMobs",function(bool)
  10.     shared.toggle = bool
  11.     AutoTpMobs = bool
  12. end)
  13.  
  14. b:Dropdown("World 1",{"1","2","3","4","5","6","7","8","9"},true,function(Value)
  15.     world = Value
  16. end)
  17.  
  18. b:Toggle("AutoAttack",function(bool)
  19.     shared.toggle = bool
  20.     AutoAttack = bool
  21. end)
  22.  
  23. b:Toggle("AutoSell",function(bool)
  24.     shared.toggle = bool
  25.     AutoSell = bool
  26. end)
  27.  
  28. b:Toggle("AutoTpKOTH",function(bool)
  29.     shared.toggle = bool
  30.     AutoTpKOTH = bool
  31. end)
  32.  
  33. e:Toggle("AntiAfk",function(bool)
  34.     shared.toggle = bool
  35.     AntiAfk = bool
  36. end)
  37. --Credits
  38. u:Button("maxgat5#8395",function()
  39.     setclipboard("maxgat5#8395")
  40. end)
  41.  
  42. u:Button("Discrod Server",function()
  43.     setclipboard("https://discord.gg/K4txdRSVfq")
  44. end)
  45.  
  46. while true do
  47.     wait()
  48.     if AutoTpKOTH == true then
  49.         if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  50.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").BuildingMapStuff.Map.Map4.Functional.KOTH.Model.MeshPart.CFrame.Position + Vector3.new(0,25,0))
  51.         end
  52.     end
  53.    
  54.     if AutoSell == true then
  55.         if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  56.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").BuildingMapStuff.Map.Map1.MapDecoration.Fountain.Sell.ColorTransition.CFrame.Position + Vector3.new(0,0,50))
  57.             wait(.1)
  58.             if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  59.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").BuildingMapStuff.Map.Map1.MapDecoration.Fountain.Sell.ColorTransition.CFrame.Position + Vector3.new(0,0,0))
  60.                 wait(.1)
  61.             end
  62.         end
  63.     end
  64.    
  65.     if AutoAttack == true then
  66.         if workspace[game.Players.LocalPlayer.Name]:FindFirstChild("Humanoid") then
  67.             local tool = game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") or game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
  68.             game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  69.             game:service'VirtualUser':ClickButton1(Vector2.new())
  70.         end
  71.     end
  72.    
  73.     if AutoTpMobs == true then
  74.         for i,v in pairs(game:GetService("Workspace").EnemySpawnRegions:GetChildren()) do
  75.             function tp()
  76.                 for i,v1 in pairs(v:GetChildren()) do
  77.                     if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  78.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v1.HumanoidRootPart.CFrame.Position + Vector3.new(0,0,3))
  79.                     end
  80.                 end
  81.             end
  82.            
  83.             if world == "1" then
  84.                 if v.Name == "1" then
  85.                     tp()
  86.                 end
  87.             end
  88.            
  89.             if world == "2" then
  90.                 if v.Name == "2" then
  91.                     tp()
  92.                 end
  93.             end
  94.            
  95.             if world == "3" then
  96.                 if v.Name == "3" then
  97.                     tp()
  98.                 end
  99.             end
  100.        
  101.             if world == "4" then
  102.                 if v.Name == "4" then
  103.                     tp()
  104.                 end
  105.             end
  106.            
  107.             if world == "5" then
  108.                 if v.Name == "5" then
  109.                     tp()
  110.                 end
  111.             end
  112.            
  113.             if world == "6" then
  114.                 if v.Name == "6" then
  115.                     tp()
  116.                 end
  117.             end
  118.            
  119.             if world == "7" then
  120.                 if v.Name == "7" then
  121.                     tp()
  122.                 end
  123.             end
  124.            
  125.             if world == "8" then
  126.                 if v.Name == "8" then
  127.                     tp()
  128.                 end
  129.             end
  130.            
  131.             if world == "9" then
  132.                 if v.Name == "9" then
  133.                     tp()
  134.                 end
  135.             end
  136.         end
  137.     end
  138.    
  139.     if AntiAfk == true then
  140.         local bb=game:service'VirtualUser'
  141.         bb:CaptureController()
  142.         bb:ClickButton2(Vector2.new())
  143.     end
  144. end