Advertisement
Aznen

Boku No Roblox GUI V.2

Mar 31st, 2021
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.36 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local whitelist = {
  3.     [p.Name] = true
  4. }
  5.  
  6. if whitelist[p.Name] then
  7.     game.StarterGui:SetCore("SendNotification", {
  8.         Title = "Boku No Roblox GUI";
  9.         Text = "Thanks for using my GUI";
  10.         Duration = 10;
  11.     })
  12. end
  13.  
  14. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Anen17/venyxLib/main/Liber"))()
  15. local venyx = library.new("Boku No Roblox: Remastered", 5013109572)
  16.  
  17.  
  18. local themes = {
  19. Background = Color3.fromRGB(24, 24, 24),
  20. Glow = Color3.fromRGB(0, 0, 0),
  21. Accent = Color3.fromRGB(10, 10, 10),
  22. LightContrast = Color3.fromRGB(20, 20, 20),
  23. DarkContrast = Color3.fromRGB(14, 14, 14),  
  24. TextColor = Color3.fromRGB(255, 255, 255)
  25. }
  26.  
  27.  
  28. local page = venyx:addPage("Autofarm", 5012544693)
  29. local section1 = page:addSection("Main")
  30. local section2 = page:addSection("Remove This")
  31.  
  32. section1:addButton("> LoadGui <", function(Click)
  33.     loadstring(game:HttpGet(('https://pastebin.com/raw/R1vA1jee')))() -- Credits to the GUI Owner :)
  34.    
  35.     if whitelist[p.Name] then
  36.     game.StarterGui:SetCore("SendNotification", {
  37.         Title = "Boku No Roblox";
  38.         Text = "GUI Loaded";
  39.         Duration = 10;
  40.     })
  41. end
  42. end)
  43.  
  44. section2:addButton("> RemoveRemotes <", function(Click)
  45.     if game:GetService("Players")["LocalPlayer"]["PlayerGui"]["IntroGui"]["Menu"].Visible == true then
  46.     local a = game:GetService("ReplicatedStorage")["ExploitKick"]
  47.     local b = game:GetService("ReplicatedStorage")["DetectBan"]
  48.     local c = game:GetService("ReplicatedStorage")["Watch"]
  49.     local d = game:GetService("ReplicatedStorage")
  50.  
  51.     a:Destroy()
  52.     b:Destroy()
  53.     c:Destroy()
  54.     d.PermItems.PBan:Destroy()
  55.     d.PermItems.Ban:Destroy()
  56.     d.PermItems.SendPBanCon:Destroy()
  57.     game:GetService("CoreGui")["Boku No Roblox: Remastered"]["Main"]["Autofarm"]["Remove This"].Visible = false
  58.    
  59.     if whitelist[p.Name] then
  60.     game.StarterGui:SetCore("SendNotification", {
  61.         Title = "Boku No Roblox";
  62.         Text = "Remotes Removed, Removing this section";
  63.         Duration = 10;
  64.     })
  65. end
  66. elseif game:GetService("Players")["LocalPlayer"]["PlayerGui"]["IntroGui"]["Menu"].Visible == false then
  67.     p:Kick("Must be in menu to do this, Rejoin and Redo")
  68.     end
  69. end)
  70. section1:addButton("> Anti-Afk <", function(Click)
  71.     local VirtualUser=game:service'VirtualUser'
  72.     game:service'Players'.LocalPlayer.Idled:connect(function()
  73.     VirtualUser:CaptureController()
  74.     VirtualUser:ClickButton2(Vector2.new())
  75.     end)
  76.    
  77.     if whitelist[p.Name] then
  78.     game.StarterGui:SetCore("SendNotification", {
  79.         Title = "Boku No Roblox";
  80.         Text = "Anti-Afk Running";
  81.         Duration = 10;
  82.     })
  83. end
  84. end)
  85.  
  86. local settings = venyx:addPage("Settings", 5012544693)
  87. local settings1 = settings:addSection("Settings")
  88. local settings2 = settings:addSection("Colors")
  89.  
  90. settings1:addKeybind("Toggle Keybind", Enum.KeyCode.RightControl, function()
  91. venyx:toggle()
  92. end, function()
  93. end)
  94. settings1:addButton("> DestroyGui <", function(Click)
  95.     if whitelist[p.Name] then
  96.     game.StarterGui:SetCore("SendNotification", {
  97.         Title = "Boku No Roblox GUI";
  98.         Text = "GUI Destroyed";
  99.         Duration = 10;
  100.     })
  101. end
  102.  
  103.     game:GetService("CoreGui"):FindFirstChild("Boku No Roblox: Remastered"):Destroy()
  104. end)
  105.  
  106. for settings, color in pairs(themes) do
  107. settings2:addColorPicker(settings, color, function(color3)
  108. venyx:setTheme(settings, color3)
  109. end)
  110. end
  111.  
  112.  
  113. venyx:SelectPage(venyx.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement