Advertisement
Guest User

Untitled

a guest
Mar 27th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.31 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.547657674, 0, 0.299781084, 0)
  40. Frame.Size = UDim2.new(0, 420, 0, 253)
  41. Frame.Active = true
  42. Frame.Draggable = true
  43.  
  44.  
  45. TextLabel.Parent = Frame
  46. TextLabel.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  47. TextLabel.BorderSizePixel = 0
  48. TextLabel.Position = UDim2.new(-0.0142857144, 0, 0, 0)
  49. TextLabel.Size = UDim2.new(0, 432, 0, 40)
  50. TextLabel.Font = Enum.Font.SciFi
  51. TextLabel.Text = "Heroes Online GUI"
  52. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  53. TextLabel.TextSize = 30
  54.  
  55. Frame_2.Parent = Frame
  56. Frame_2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  57. Frame_2.BackgroundTransparency = 0.64999997615814
  58. Frame_2.BorderSizePixel = 0
  59. Frame_2.Position = UDim2.new(0.0190476198, 0, 0.175373137, 0)
  60. Frame_2.Size = UDim2.new(0, 403, 0, 162)
  61.  
  62. ThugFarm.Name = "Thug Farm"
  63. ThugFarm.Parent = Frame_2
  64. ThugFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  65. ThugFarm.BorderSizePixel = 0
  66. ThugFarm.Position = UDim2.new(0.012406948, 0, 0.0674242377, 0)
  67. ThugFarm.Size = UDim2.new(0, 121, 0, 28)
  68. ThugFarm.Font = Enum.Font.SciFi
  69. ThugFarm.Text = "Thug Farm"
  70. ThugFarm.TextColor3 = Color3.new(1, 1, 1)
  71. ThugFarm.TextSize = 14
  72. ThugFarm.MouseButton1Down:connect(function()
  73. if ThugFarming == false then
  74. ThugFarming = true
  75. ThugFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  76. else
  77. ThugFarming = false
  78. ThugFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  79. Stepped:Disconnect()
  80. end
  81.  
  82. if ThugFarming then
  83. Stepped = runService.Stepped:Connect(function()
  84. for i,v in pairs(workspace:GetChildren()) do
  85. if string.find(v.Name, "Thug") and v:FindFirstChild("HumanoidRootPart") then
  86. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  87. local VirtualUser=game:service'VirtualUser'
  88. VirtualUser:ClickButton1(Vector2.new())
  89. end
  90. end
  91. end)
  92. end
  93. end)
  94.  
  95. PoliceFarm.Name = "Police Farm"
  96. PoliceFarm.Parent = Frame_2
  97. PoliceFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  98. PoliceFarm.BorderSizePixel = 0
  99. PoliceFarm.Position = UDim2.new(0.348862559, 0, 0.0674242377, 0)
  100. PoliceFarm.Size = UDim2.new(0, 121, 0, 28)
  101. PoliceFarm.Font = Enum.Font.SciFi
  102. PoliceFarm.Text = "Police Farm"
  103. PoliceFarm.TextColor3 = Color3.new(1, 1, 1)
  104. PoliceFarm.TextSize = 14
  105. PoliceFarm.MouseButton1Down:connect(function()
  106. if PoliceFarming == false then
  107. PoliceFarming = true
  108. PoliceFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  109. else
  110. PoliceFarming = false
  111. PoliceFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  112. Stepped:Disconnect()
  113. end
  114.  
  115. if PoliceFarming then
  116. Stepped = runService.Stepped:Connect(function()
  117. for i,v in pairs(workspace:GetChildren()) do
  118. if string.find(v.Name, "ArmedPolice") and v:FindFirstChild("HumanoidRootPart") then
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  120. local VirtualUser=game:service'VirtualUser'
  121. VirtualUser:ClickButton1(Vector2.new())
  122. end
  123. end
  124. end)
  125. end
  126. end)
  127.  
  128. UAStudentFarm.Name = "UA Student Farm"
  129. UAStudentFarm.Parent = Frame_2
  130. UAStudentFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  131. UAStudentFarm.BorderSizePixel = 0
  132. UAStudentFarm.Position = UDim2.new(0.683436215, 0, 0.0674242377, 0)
  133. UAStudentFarm.Size = UDim2.new(0, 121, 0, 28)
  134. UAStudentFarm.Font = Enum.Font.SciFi
  135. UAStudentFarm.Text = "UA Student Farm"
  136. UAStudentFarm.TextColor3 = Color3.new(1, 1, 1)
  137. UAStudentFarm.TextSize = 14
  138. UAStudentFarm.MouseButton1Down:connect(function()
  139. if StudentFarming == false then
  140. StudentFarming = true
  141. UAStudentFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  142. else
  143. StudentFarming = false
  144. UAStudentFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  145. Stepped:Disconnect()
  146. end
  147.  
  148. if StudentFarming then
  149. Stepped = runService.Stepped:Connect(function()
  150. for i,v in pairs(workspace:GetChildren()) do
  151. if string.find(v.Name, "UAStudent") and v:FindFirstChild("HumanoidRootPart") then
  152. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  153. local VirtualUser=game:service'VirtualUser'
  154. VirtualUser:ClickButton1(Vector2.new())
  155. end
  156. end
  157. end)
  158. end
  159. end)
  160.  
  161. ArmedThugFarm.Name = "Armed Thug Farm"
  162. ArmedThugFarm.Parent = Frame_2
  163. ArmedThugFarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  164. ArmedThugFarm.BorderSizePixel = 0
  165. ArmedThugFarm.Position = UDim2.new(0.348862559, 0, 0.288582683, 0)
  166. ArmedThugFarm.Size = UDim2.new(0, 121, 0, 28)
  167. ArmedThugFarm.Font = Enum.Font.SciFi
  168. ArmedThugFarm.Text = "Armed Thug farm"
  169. ArmedThugFarm.TextColor3 = Color3.new(1, 1, 1)
  170. ArmedThugFarm.TextSize = 14
  171. ArmedThugFarm.MouseButton1Down:connect(function()
  172. if ArmedThugFarming == false then
  173. ArmedThugFarming = true
  174. ArmedThugFarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  175. else
  176. ArmedThugFarming = false
  177. ArmedThugFarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  178. Stepped:Disconnect()
  179. end
  180.  
  181. if ArmedThugFarming then
  182. Stepped = runService.Stepped:Connect(function()
  183. for i,v in pairs(workspace:GetChildren()) do
  184. if string.find(v.Name, "ArmedThug") and v:FindFirstChild("HumanoidRootPart") then
  185. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  186. local VirtualUser=game:service'VirtualUser'
  187. VirtualUser:ClickButton1(Vector2.new())
  188. end
  189. end
  190. end)
  191. end
  192. end)
  193.  
  194. guardfarm.Name = "gaurd farm "
  195. guardfarm.Parent = Frame_2
  196. guardfarm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  197. guardfarm.BorderSizePixel = 0
  198. guardfarm.Position = UDim2.new(0.012406948, 0, 0.288582683, 0)
  199. guardfarm.Size = UDim2.new(0, 121, 0, 28)
  200. guardfarm.Font = Enum.Font.SciFi
  201. guardfarm.Text = "Naturl gaurd farm"
  202. guardfarm.TextColor3 = Color3.new(1, 1, 1)
  203. guardfarm.TextSize = 14
  204. guardfarm.MouseButton1Down:connect(function()
  205. if GuardFarming == false then
  206. GuardFarming = true
  207. guardfarm.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  208. else
  209. GuardFarming = false
  210. guardfarm.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  211. Stepped:Disconnect()
  212. end
  213.  
  214. if GuardFarming then
  215. Stepped = runService.Stepped:Connect(function()
  216. for i,v in pairs(workspace:GetChildren()) do
  217. if string.find(v.Name, "NaturiaGuard") and v:FindFirstChild("HumanoidRootPart") then
  218. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  219. local VirtualUser=game:service'VirtualUser'
  220. VirtualUser:ClickButton1(Vector2.new())
  221. end
  222. end
  223. end)
  224. end
  225. end)
  226.  
  227. FarmHooligan.Name = "Farm Hooligan"
  228. FarmHooligan.Parent = Frame_2
  229. FarmHooligan.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  230. FarmHooligan.BorderSizePixel = 0
  231. FarmHooligan.Position = UDim2.new(0.683436215, 0, 0.288582683, 0)
  232. FarmHooligan.Size = UDim2.new(0, 121, 0, 28)
  233. FarmHooligan.Font = Enum.Font.SciFi
  234. FarmHooligan.Text = "Farm Hooligan"
  235. FarmHooligan.TextColor3 = Color3.new(1, 1, 1)
  236. FarmHooligan.TextSize = 14
  237. FarmHooligan.MouseButton1Down:connect(function()
  238. if HooliganFarming == false then
  239. HooliganFarming = true
  240. FarmHooligan.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  241. else
  242. HooliganFarming = false
  243. FarmHooligan.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  244. Stepped:Disconnect()
  245. end
  246.  
  247. if HooliganFarming then
  248. Stepped = runService.Stepped:Connect(function()
  249. for i,v in pairs(workspace:GetChildren()) do
  250. if string.find(v.Name, "Hooligan") and v:FindFirstChild("HumanoidRootPart") then
  251. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  252. local VirtualUser=game:service'VirtualUser'
  253. VirtualUser:ClickButton1(Vector2.new())
  254. end
  255. end
  256. end)
  257. end
  258. end)
  259.  
  260. Kickbypass.Name = "Kick bypass"
  261. Kickbypass.Parent = Frame_2
  262. Kickbypass.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  263. Kickbypass.BorderSizePixel = 0
  264. Kickbypass.Position = UDim2.new(0.012406948, 0, 0.515693605, 0)
  265. Kickbypass.Size = UDim2.new(0, 121, 0, 28)
  266. Kickbypass.Font = Enum.Font.SciFi
  267. Kickbypass.Text = "HosuKnight"
  268. Kickbypass.TextColor3 = Color3.new(1, 1, 1)
  269. Kickbypass.TextSize = 14
  270. Kickbypass.MouseButton1Down:connect(function()
  271. if HooliganFarming == false then
  272. HooliganFarming = true
  273. Kickbypass.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  274. else
  275. HooliganFarming = false
  276. Kickbypass.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  277. Stepped:Disconnect()
  278. end
  279.  
  280. if HooliganFarming then
  281. Stepped = runService.Stepped:Connect(function()
  282. for i,v in pairs(workspace:GetChildren()) do
  283. if string.find(v.Name, "HosuK") and v:FindFirstChild("HumanoidRootPart") then
  284. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  285. local VirtualUser=game:service'VirtualUser'
  286. VirtualUser:ClickButton1(Vector2.new())
  287. end
  288. end
  289. end)
  290. end
  291. end)
  292.  
  293. ravizadmin.Name = "HosuCaptain"
  294. ravizadmin.Parent = Frame_2
  295. ravizadmin.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  296. ravizadmin.BorderSizePixel = 0
  297. ravizadmin.Position = UDim2.new(0.348862559, 0, 0.515693605, 0)
  298. ravizadmin.Size = UDim2.new(0, 121, 0, 28)
  299. ravizadmin.Font = Enum.Font.SciFi
  300. ravizadmin.Text = "HosuCaptain"
  301. ravizadmin.TextColor3 = Color3.new(1, 1, 1)
  302. ravizadmin.TextSize = 14
  303. ravizadmin.MouseButton1Down:connect(function()
  304. if HooliganFarming == false then
  305. HooliganFarming = true
  306. ravizadmin.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  307. else
  308. HooliganFarming = false
  309. ravizadmin.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  310. Stepped:Disconnect()
  311. end
  312.  
  313. if HooliganFarming then
  314. Stepped = runService.Stepped:Connect(function()
  315. for i,v in pairs(workspace:GetChildren()) do
  316. if string.find(v.Name, "HosuC") and v:FindFirstChild("HumanoidRootPart") then
  317. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  318. local VirtualUser=game:service'VirtualUser'
  319. VirtualUser:ClickButton1(Vector2.new())
  320. end
  321. end
  322. end)
  323. end
  324. end)
  325.  
  326. na.Name = "NO"
  327. na.Parent = Frame_2
  328. na.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  329. na.BorderSizePixel = 0
  330. na.Position = UDim2.new(0.348862559, 0, 0.748756647, 0)
  331. na.Size = UDim2.new(0, 121, 0, 28)
  332. na.Font = Enum.Font.SciFi
  333. na.Text = "Farm Stain"
  334. na.TextColor3 = Color3.new(1, 1, 1)
  335. na.TextSize = 14
  336. na.MouseButton1Down:connect(function()
  337. if HosuFarming == false then
  338. HosuFarming = true
  339. na.BackgroundColor3 = Color3.fromRGB(52, 255, 21)
  340. else
  341. HosuFarming = false
  342. na.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  343. Stepped:Disconnect()
  344. end
  345.  
  346. if HosuFarming then
  347. Stepped = runService.Stepped:Connect(function()
  348. for i,v in pairs(workspace:GetChildren()) do
  349. if string.find(v.Name, "Stain") and v:FindFirstChild("HumanoidRootPart") then
  350. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame - v.HumanoidRootPart.CFrame.lookVector * 5
  351. local VirtualUser=game:service'VirtualUser'
  352. VirtualUser:ClickButton1(Vector2.new())
  353. end
  354. end
  355. end)
  356. end
  357. end)
  358.  
  359.  
  360. na_2.Name = "n/a"
  361. na_2.Parent = Frame_2
  362. na_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  363. na_2.BorderSizePixel = 0
  364. na_2.Position = UDim2.new(0.012406948, 0, 0.748756647, 0)
  365. na_2.Size = UDim2.new(0, 121, 0, 28)
  366. na_2.Font = Enum.Font.SciFi
  367. na_2.Text = "empty"
  368. na_2.TextColor3 = Color3.new(1, 1, 1)
  369. na_2.TextSize = 14
  370.  
  371.  
  372. Na.Name = "empty"
  373. Na.Parent = Frame_2
  374. Na.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  375. Na.BorderSizePixel = 0
  376. Na.Position = UDim2.new(0.683436215, 0, 0.748756647, 0)
  377. Na.Size = UDim2.new(0, 121, 0, 28)
  378. Na.Font = Enum.Font.SciFi
  379. Na.Text = "n/a"
  380. Na.TextColor3 = Color3.new(1, 1, 1)
  381. Na.TextSize = 14
  382.  
  383.  
  384. clicktp.Name = "click tp"
  385. clicktp.Parent = Frame_2
  386. clicktp.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  387. clicktp.BorderSizePixel = 0
  388. clicktp.Position = UDim2.new(0.683436215, 0, 0.515693605, 0)
  389. clicktp.Size = UDim2.new(0, 121, 0, 28)
  390. clicktp.Font = Enum.Font.SciFi
  391. clicktp.Text = "Click Tp"
  392. clicktp.TextColor3 = Color3.new(1, 1, 1)
  393. clicktp.TextSize = 14
  394. clicktp.MouseButton1Down:connect(function()
  395. local Plr = game:GetService("Players").LocalPlayer
  396. local Mouse = Plr:GetMouse()
  397.  
  398. Mouse.Button1Down:connect(function()
  399. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end --You can change the "LeftControl" to another hotkey
  400. if not Mouse.Target then return end
  401. Plr.Character:MoveTo(Mouse.Hit.p)
  402. end)
  403. end)
  404.  
  405. TextLabel_2.Parent = Frame
  406. TextLabel_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  407. TextLabel_2.BorderSizePixel = 0
  408. TextLabel_2.Position = UDim2.new(-0.0142857144, 0, 0.850746274, 0)
  409. TextLabel_2.Size = UDim2.new(0, 432, 0, 40)
  410. TextLabel_2.Font = Enum.Font.SciFi
  411. TextLabel_2.Text = " eAreSafe"
  412. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  413. TextLabel_2.TextSize = 30
  414.  
  415. TextLabel_3.Parent = TextLabel_2
  416. TextLabel_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  417. TextLabel_3.BorderSizePixel = 0
  418. TextLabel_3.Position = UDim2.new(0.32407406, 0, 0, 0)
  419. TextLabel_3.Size = UDim2.new(0, 25, 0, 40)
  420. TextLabel_3.Font = Enum.Font.SciFi
  421. TextLabel_3.Text = "W"
  422. TextLabel_3.TextColor3 = Color3.new(1, 0.392157, 0)
  423. TextLabel_3.TextSize = 30
  424. -- Scripts:
  425.  
  426. ThugFarm.MouseButton1Click:connect(function()
  427. game.StarterGui:SetCore("SendNotification", {
  428. Title = "Credit";
  429. Text = "Credit RobloxPain/RemoteScripts";
  430. Icon = "rbxassetid://2625496512";
  431. Duration = 3;
  432. })
  433. end)
  434.  
  435. PoliceFarm.MouseButton1Click:connect(function()
  436. game.StarterGui:SetCore("SendNotification", {
  437. Title = "Credit";
  438. Text = "Credit RobloxPain/RemoteScripts";
  439. Icon = "rbxassetid://2625496512";
  440. Duration = 3;
  441. })
  442. end)
  443.  
  444. UAStudentFarm.MouseButton1Click:connect(function()
  445. game.StarterGui:SetCore("SendNotification", {
  446. Title = "Credit";
  447. Text = "Credit 2 RobloxPain/RemoteScripts";
  448. Icon = "rbxassetid://2625496512";
  449. Duration = 3;
  450. })
  451. end)
  452.  
  453. ArmedThugFarm.MouseButton1Click:connect(function()
  454. game.StarterGui:SetCore("SendNotification", {
  455. Title = "Credit";
  456. Text = "Credit 2 RobloxPain/RemoteScripts";
  457. Icon = "rbxassetid://2625496512";
  458. Duration = 3;
  459. })
  460. end)
  461.  
  462. guardfarm.MouseButton1Click:connect(function()
  463. game.StarterGui:SetCore("SendNotification", {
  464. Title = "Credit";
  465. Text = "Credit 2 RobloxPain/RemoteScripts";
  466. Icon = "rbxassetid://2625496512";
  467. Duration = 3;
  468. })
  469. end)
  470.  
  471. FarmHooligan.MouseButton1Click:connect(function()
  472. game.StarterGui:SetCore("SendNotification", {
  473. Title = "Credit";
  474. Text = "Credit 2 RobloxPain/RemoteScripts";
  475. Icon = "rbxassetid://2625496512";
  476. Duration = 3;
  477. })
  478. end)
  479.  
  480. ravizadmin.MouseButton1Click:connect(function()
  481. game.StarterGui:SetCore("SendNotification", {
  482. Title = "Credit";
  483. Text = "Credit RobloxPain/RemoteScripts";
  484. Icon = "rbxassetid://2625496512";
  485. Duration = 3;
  486. })
  487. end)
  488.  
  489. Kickbypass.MouseButton1Click:connect(function()
  490. game.StarterGui:SetCore("SendNotification", {
  491. Title = "Credit";
  492. Text = "Credit RobloxPain/RemoteScripts";
  493. Icon = "rbxassetid://2625496512";
  494. Duration = 3;
  495. })
  496. end)
  497.  
  498. na.MouseButton1Click:connect(function()
  499. game.StarterGui:SetCore("SendNotification", {
  500. Title = "Credit";
  501. Text = "Credit RobloxPain/RemoteScripts";
  502. Icon = "rbxassetid://2625496512";
  503. Duration = 3;
  504. })
  505. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement