Advertisement
Aznen

Boku No Roblox GUI

Mar 31st, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.26 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(255,0,0)
  2. _G.ButtonColor = Color3.fromRGB(85,255,255)
  3. _G.SliderColor = Color3.fromRGB(0,0,255)
  4.  
  5. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/6uhPtizd')))()
  6.  
  7. local w = library:CreateWindow("Boku No Roblox")
  8.  
  9. local b = w:CreateFolder("Main")
  10.  
  11. local a = w:CreateFolder("Settings")
  12.  
  13. b:Label("AutoFarm",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111))
  14.  
  15. b:Button("LoadGui",function()
  16.     loadstring(game:HttpGet(('https://pastebin.com/raw/R1vA1jee')))() -- Credits to the GUI Owner :)
  17. end)
  18.  
  19. b:Button("RemoveRemotes",function()
  20.     local a = game:GetService("ReplicatedStorage")["ExploitKick"]
  21.     local b = game:GetService("ReplicatedStorage")["DetectBan"]
  22.     local c = game:GetService("ReplicatedStorage")["Watch"]
  23.     local d = game:GetService("ReplicatedStorage")
  24.  
  25.     a:Destroy()
  26.     b:Destroy()
  27.     c:Destroy()
  28.     d.PermItems.PBan:Destroy()
  29.     d.PermItems.Ban:Destroy()
  30.     d.PermItems.SendPBanCon:Destroy()
  31. end)
  32.  
  33. b:Button("Anti-Afk",function()
  34.     local VirtualUser=game:service'VirtualUser'
  35.     game:service'Players'.LocalPlayer.Idled:connect(function()
  36.     VirtualUser:CaptureController()
  37.     VirtualUser:ClickButton2(Vector2.new())
  38.     end)
  39.     print'>   Running   <'
  40. end)
  41.  
  42. a:DestroyGUI()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement