Advertisement
CamHead_Does

OP NINJA SIMULATOR script

Sep 20th, 2022
3,324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. local Config = {
  2.  
  3. WindowName = "OP NINJA SIMULATOR",
  4.  
  5.  
  6.  
  7. Color = Color3.fromRGB(243,4,4),
  8.  
  9.  
  10.  
  11. Keybind = Enum.KeyCode.RightShift -- Doesn't work
  12.  
  13.  
  14.  
  15. }
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/AlexR32/Roblox/main/BracketV3.lua"))()
  24.  
  25.  
  26.  
  27. local Window = Library:CreateWindow(Config, game:GetService("CoreGui"))
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. local Tab1 = Window:CreateTab("Main | youtube.com/bugxie")
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. local Section1 = Tab1:CreateSection("Autofarming Section")
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. function tool()
  52.  
  53.  
  54.  
  55. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  56.  
  57.  
  58.  
  59. if v.Name ~= "Shuriken" then
  60.  
  61. if v.Name ~= "TeleportTool" then
  62.  
  63.  
  64.  
  65. local tools = v
  66.  
  67.  
  68.  
  69. return tools
  70.  
  71.  
  72.  
  73. end
  74.  
  75. end
  76.  
  77. end
  78.  
  79. end
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91. local autofarm = Section1:CreateToggle("Autofarm", nil, function(State)
  92.  
  93.  
  94.  
  95. local character = game.Players.LocalPlayer.Character
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103. for i,v in pairs(character:GetChildren()) do
  104.  
  105.  
  106.  
  107. if v:IsA("Tool") then
  108.  
  109.  
  110.  
  111. equipped = true
  112.  
  113.  
  114.  
  115. else
  116.  
  117.  
  118.  
  119. equipped = false
  120.  
  121.  
  122.  
  123. end
  124.  
  125. end
  126.  
  127. local tool = tool()
  128.  
  129.  
  130.  
  131. if equipped ~= true then
  132.  
  133.  
  134.  
  135. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  136.  
  137.  
  138.  
  139. end
  140.  
  141. s = State
  142.  
  143. while s == true do wait()
  144.  
  145. local vu = game:GetService("VirtualUser")
  146.  
  147. vu:Button1Down(Vector2.new())
  148.  
  149. end
  150.  
  151. end)
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163. local autoequip = Section1:CreateToggle("Auto Equip Katana", nil, function(State)
  164.  
  165. tog = State
  166.  
  167. while tog do wait()
  168.  
  169. local tool = tool()
  170.  
  171. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  172.  
  173.  
  174.  
  175. end
  176. end)
  177.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement