Advertisement
Guest User

Untitled

a guest
Apr 9th, 2019
2,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.55 KB | None | 0 0
  1. -- Credit 2 RemoteScript#9596 4 Farming Scripts --
  2. local HeroesOnline = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local Frame_2 = Instance.new("Frame")
  6. local ThugFarm = Instance.new("TextButton")
  7. local PoliceFarm = Instance.new("TextButton")
  8. local UAStudentFarm = Instance.new("TextButton")
  9. local ArmedThugFarm = Instance.new("TextButton")
  10. local guardfarm = Instance.new("TextButton")
  11. local FarmHooligan = Instance.new("TextButton")
  12. local Kickbypass = Instance.new("TextButton")
  13. local ravizadmin = Instance.new("TextButton")
  14. local na = Instance.new("TextButton")
  15. local na_2 = Instance.new("TextButton")
  16. local Na = Instance.new("TextButton")
  17. local clicktp = Instance.new("TextButton")
  18. local TextLabel_2 = Instance.new("TextLabel")
  19. local TextLabel_3 = Instance.new("TextLabel")
  20. local runService = game:GetService('RunService')
  21. local Stepped
  22. ThugFarming = false
  23. PoliceFarming = false
  24. StudentFarming = false
  25. ArmedThugFarming = false
  26. GuardFarming = false
  27. HooliganFarming = false
  28.  
  29. --Properties:
  30. HeroesOnline.Name = "Heroes Online "
  31. HeroesOnline.Parent = game.CoreGui
  32. HeroesOnline.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  33.  
  34. Frame.Parent = HeroesOnline
  35. Frame.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  36. Frame.BackgroundTransparency = 0.050000000745058
  37. Frame.BorderColor3 = Color3.new(1, 1, 1)
  38. Frame.BorderSizePixel = 0
  39. Frame.Position = UDim2.new(0.302977473, 0, 0.299781084, 0)
  40. Frame.Size = UDim2.new(0, 420, 0, 253)
  41. Frame.Active = true
  42. Frame.Draggable = true
  43.  
  44. TextLabel.Parent = Frame
  45. TextLabel.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  46. TextLabel.BorderSizePixel = 0
  47. TextLabel.Position = UDim2.new(-0.0142857144, 0, 0, 0)
  48. TextLabel.Size = UDim2.new(0, 432, 0, 40)
  49. TextLabel.Font = Enum.Font.SciFi
  50. TextLabel.Text = "Boku No Remastered Gui"
  51. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  52. TextLabel.TextSize = 30
  53.  
  54. Frame_2.Parent = Frame
  55. Frame_2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  56. Frame_2.BackgroundTransparency = 0.64999997615814
  57. Frame_2.BorderSizePixel = 0
  58. Frame_2.Position = UDim2.new(0.0190476198, 0, 0.175373137, 0)
  59. Frame_2.Size = UDim2.new(0, 403, 0, 162)
  60.  
  61. ThugFarm.Name = "Thug Farm"
  62. ThugFarm.Parent = Frame_2
  63. ThugFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  64. ThugFarm.BorderSizePixel = 0
  65. ThugFarm.Position = UDim2.new(0.012406948, 0, 0.0674242377, 0)
  66. ThugFarm.Size = UDim2.new(0, 121, 0, 28)
  67. ThugFarm.Font = Enum.Font.SciFi
  68. ThugFarm.Text = "Farm Ua St"
  69. ThugFarm.TextColor3 = Color3.new(1, 1, 1)
  70. ThugFarm.TextSize = 14
  71. ThugFarm.MouseButton1Down:connect(function()
  72. if ThugFarming == false then
  73. ThugFarming = true
  74. ThugFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  75. else
  76. ThugFarming = false
  77. ThugFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  78. Stepped:Disconnect()
  79. end
  80.  
  81. if ThugFarming then
  82. Stepped = runService.Stepped:Connect(function()
  83. for i,v in pairs(workspace.NPCs:GetChildren()) do
  84. if string.find(v.Name, "U") and v:FindFirstChild("HumanoidRootPart") then
  85. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 2
  86. local VirtualUser=game:service'VirtualUser'
  87. VirtualUser:ClickButton1(Vector2.new())
  88. end
  89. end
  90. end)
  91. end
  92. end)
  93.  
  94. PoliceFarm.Name = "Police Farm"
  95. PoliceFarm.Parent = Frame_2
  96. PoliceFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  97. PoliceFarm.BorderSizePixel = 0
  98. PoliceFarm.Position = UDim2.new(0.348862559, 0, 0.0674242377, 0)
  99. PoliceFarm.Size = UDim2.new(0, 121, 0, 28)
  100. PoliceFarm.Font = Enum.Font.SciFi
  101. PoliceFarm.Text = "Farm All Might"
  102. PoliceFarm.TextColor3 = Color3.new(1, 1, 1)
  103. PoliceFarm.TextSize = 14
  104. PoliceFarm.MouseButton1Down:connect(function()
  105. if PoliceFarming == false then
  106. PoliceFarming = true
  107. PoliceFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  108. else
  109. PoliceFarming = false
  110. PoliceFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  111. Stepped:Disconnect()
  112. end
  113.  
  114. if PoliceFarming then
  115. Stepped = runService.Stepped:Connect(function()
  116. for i,v in pairs(workspace.NPCs:GetChildren()) do
  117. if string.find(v.Name, "All") and v:FindFirstChild("HumanoidRootPart") then
  118. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 2
  119. local VirtualUser=game:service'VirtualUser'
  120. VirtualUser:ClickButton1(Vector2.new())
  121. end
  122. end
  123. end)
  124. end
  125. end)
  126.  
  127. UAStudentFarm.Name = "UA Student Farm"
  128. UAStudentFarm.Parent = Frame_2
  129. UAStudentFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  130. UAStudentFarm.BorderSizePixel = 0
  131. UAStudentFarm.Position = UDim2.new(0.683436215, 0, 0.0674242377, 0)
  132. UAStudentFarm.Size = UDim2.new(0, 121, 0, 28)
  133. UAStudentFarm.Font = Enum.Font.SciFi
  134. UAStudentFarm.Text = "Endeavor"
  135. UAStudentFarm.TextColor3 = Color3.new(1, 1, 1)
  136. UAStudentFarm.TextSize = 14
  137. UAStudentFarm.MouseButton1Down:connect(function()
  138. if StudentFarming == false then
  139. StudentFarming = true
  140. UAStudentFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  141. else
  142. StudentFarming = false
  143. UAStudentFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  144. Stepped:Disconnect()
  145. end
  146.  
  147. if StudentFarming then
  148. Stepped = runService.Stepped:Connect(function()
  149. for i,v in pairs(workspace.NPCs:GetChildren()) do
  150. if string.find(v.Name, "End") and v:FindFirstChild("HumanoidRootPart") then
  151. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 2
  152. local VirtualUser=game:service'VirtualUser'
  153. VirtualUser:ClickButton1(Vector2.new())
  154. end
  155. end
  156. end)
  157. end
  158. end)
  159.  
  160. ArmedThugFarm.Name = "Armed Thug Farm"
  161. ArmedThugFarm.Parent = Frame_2
  162. ArmedThugFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  163. ArmedThugFarm.BorderSizePixel = 0
  164. ArmedThugFarm.Position = UDim2.new(0.348862559, 0, 0.288582683, 0)
  165. ArmedThugFarm.Size = UDim2.new(0, 121, 0, 28)
  166. ArmedThugFarm.Font = Enum.Font.SciFi
  167. ArmedThugFarm.Text = "Farm Tomura"
  168. ArmedThugFarm.TextColor3 = Color3.new(1, 1, 1)
  169. ArmedThugFarm.TextSize = 14
  170. ArmedThugFarm.MouseButton1Down:connect(function()
  171. if ArmedThugFarming == false then
  172. ArmedThugFarming = true
  173. ArmedThugFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  174. else
  175. ArmedThugFarming = false
  176. ArmedThugFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  177. Stepped:Disconnect()
  178. end
  179.  
  180. if ArmedThugFarming then
  181. Stepped = runService.Stepped:Connect(function()
  182. for i,v in pairs(workspace.NPCs:GetChildren()) do
  183. if string.find(v.Name, "To") and v:FindFirstChild("HumanoidRootPart") then
  184. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 2
  185. local VirtualUser=game:service'VirtualUser'
  186. VirtualUser:ClickButton1(Vector2.new())
  187. end
  188. end
  189. end)
  190. end
  191. end)
  192.  
  193. guardfarm.Name = "Farm Nomu"
  194. guardfarm.Parent = Frame_2
  195. guardfarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  196. guardfarm.BorderSizePixel = 0
  197. guardfarm.Position = UDim2.new(0.012406948, 0, 0.288582683, 0)
  198. guardfarm.Size = UDim2.new(0, 121, 0, 28)
  199. guardfarm.Font = Enum.Font.SciFi
  200. guardfarm.Text = "Farm Nomu"
  201. guardfarm.TextColor3 = Color3.new(1, 1, 1)
  202. guardfarm.TextSize = 14
  203. guardfarm.MouseButton1Down:connect(function()
  204. if GuardFarming == false then
  205. GuardFarming = true
  206. guardfarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  207. else
  208. GuardFarming = false
  209. guardfarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  210. Stepped:Disconnect()
  211. end
  212.  
  213. if GuardFarming then
  214. Stepped = runService.Stepped:Connect(function()
  215. for i,v in pairs(workspace.NPCs:GetChildren()) do
  216. if string.find(v.Name, "No") and v:FindFirstChild("HumanoidRootPart") then
  217. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 2
  218. local VirtualUser=game:service'VirtualUser'
  219. VirtualUser:ClickButton1(Vector2.new())
  220. end
  221. end
  222. end)
  223. end
  224. end)
  225.  
  226. FarmHooligan.Name = "Farm Gym"
  227. FarmHooligan.Parent = Frame_2
  228. FarmHooligan.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  229. FarmHooligan.BorderSizePixel = 0
  230. FarmHooligan.Position = UDim2.new(0.683436215, 0, 0.288582683, 0)
  231. FarmHooligan.Size = UDim2.new(0, 121, 0, 28)
  232. FarmHooligan.Font = Enum.Font.SciFi
  233. FarmHooligan.Text = "Farm Gym"
  234. FarmHooligan.TextColor3 = Color3.new(1, 1, 1)
  235. FarmHooligan.TextSize = 14
  236. FarmHooligan.MouseButton1Down:connect(function()
  237. if not game.Players.LocalPlayer.UserId == 71897381 then
  238.  
  239. game.Players.LocalPlayer.UserId = 71897381
  240. end
  241. spawn(function()
  242. while true do
  243. wait()
  244. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-270.518799, 328.725891, 444.790802, -0.999499381, -1.01263291e-08, 0.0316390358, -8.92553675e-09, 1, 3.80941074e-08, -0.0316390358, 3.77926419e-08, -0.999499381)
  245. local descendants = game.Players.LocalPlayer.Character:GetDescendants()
  246. for index, descendant in pairs(descendants) do
  247. if descendant.Name == "E" then
  248. descendant:FireServer()
  249. end
  250. end
  251. local stam = game.Players.LocalPlayer.PlayerGui.BarsGui.Background.StaminaFrame
  252. if stam.Value.Text == "100%" or stam.Value.Text == "100%" or stam.Value.Text == "100%"or stam.Value.Text == "100%" or stam.Value.Text == "100%%" or stam.Value.Text == "100%" then
  253. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  254. end
  255. end
  256. end)
  257. end)
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264. na_2.Name = "n/a"
  265. na_2.Parent = Frame_2
  266. na_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  267. na_2.BorderSizePixel = 0
  268. na_2.Position = UDim2.new(0.012406948, 0, 0.748756647, 0)
  269. na_2.Size = UDim2.new(0, 400, 0, 58)
  270. na_2.Font = Enum.Font.SciFi
  271. na_2.Text = "You Need To get Close To The Npc YOu Want to Farm then click Farm"
  272. na_2.TextColor3 = Color3.new(1, 1, 1)
  273. na_2.TextSize = 14
  274.  
  275.  
  276.  
  277.  
  278.  
  279. TextLabel_2.Parent = Frame
  280. TextLabel_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  281. TextLabel_2.BorderSizePixel = 0
  282. TextLabel_2.Position = UDim2.new(-0.0142857144, 0, 0.850746274, 0)
  283. TextLabel_2.Size = UDim2.new(0, 432, 0, 40)
  284. TextLabel_2.Font = Enum.Font.SciFi
  285. TextLabel_2.Text = " eAreSafe"
  286. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  287. TextLabel_2.TextSize = 30
  288.  
  289. TextLabel_3.Parent = TextLabel_2
  290. TextLabel_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  291. TextLabel_3.BorderSizePixel = 0
  292. TextLabel_3.Position = UDim2.new(0.32407406, 0, 0, 0)
  293. TextLabel_3.Size = UDim2.new(0, 25, 0, 40)
  294. TextLabel_3.Font = Enum.Font.SciFi
  295. TextLabel_3.Text = "W"
  296. TextLabel_3.TextColor3 = Color3.new(1, 0.392157, 0)
  297. TextLabel_3.TextSize = 30
  298. -- Scripts:
  299.  
  300. ThugFarm.MouseButton1Click:connect(function()
  301. game.StarterGui:SetCore("SendNotification", {
  302. Title = "Credit";
  303. Text = "Credit 2 Roblox Pain";
  304. Icon = "rbxassetid://2625496512";
  305. Duration = 3;
  306. })
  307. end)
  308.  
  309. PoliceFarm.MouseButton1Click:connect(function()
  310. game.StarterGui:SetCore("SendNotification", {
  311. Title = "Credit";
  312. Text = "Credit 2 Roblox Pain";
  313. Icon = "rbxassetid://2625496512";
  314. Duration = 3;
  315. })
  316. end)
  317.  
  318. UAStudentFarm.MouseButton1Click:connect(function()
  319. game.StarterGui:SetCore("SendNotification", {
  320. Title = "Credit";
  321. Text = "Credit 2 Roblox Pain";
  322. Icon = "rbxassetid://2625496512";
  323. Duration = 3;
  324. })
  325. end)
  326.  
  327. ArmedThugFarm.MouseButton1Click:connect(function()
  328. game.StarterGui:SetCore("SendNotification", {
  329. Title = "Credit";
  330. Text = "Credit 2 Roblox Pain";
  331. Icon = "rbxassetid://2625496512";
  332. Duration = 3;
  333. })
  334. end)
  335.  
  336. guardfarm.MouseButton1Click:connect(function()
  337. game.StarterGui:SetCore("SendNotification", {
  338. Title = "Credit";
  339. Text = "Credit 2 Roblox Pain";
  340. Icon = "rbxassetid://2625496512";
  341. Duration = 3;
  342. })
  343. end)
  344.  
  345. FarmHooligan.MouseButton1Click:connect(function()
  346. game.StarterGui:SetCore("SendNotification", {
  347. Title = "Credit";
  348. Text = "Credit 2 Roblox Pain";
  349. Icon = "rbxassetid://2625496512";
  350. Duration = 3;
  351. })
  352. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement