OogaBoogaNoob

ro fruit gui

Oct 19th, 2022 (edited)
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.85 KB | None | 0 0
  1.  
  2. --Made by : https://v3rmillion.net/member.php?action=profile&uid=244024
  3. -- init
  4. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/zxciaz/VenyxUI/main/Reuploaded"))() --someone reuploaded it so I put it in place of the original back up so guy can get free credit.
  5. local venyx = library.new("Ro fruit", 5013109572)
  6.  
  7. -- themes
  8. local themes = {
  9. Background = Color3.fromRGB(24, 24, 24),
  10. Glow = Color3.fromRGB(0, 0, 0),
  11. Accent = Color3.fromRGB(10, 10, 10),
  12. LightContrast = Color3.fromRGB(20, 20, 20),
  13. DarkContrast = Color3.fromRGB(14, 14, 14),
  14. TextColor = Color3.fromRGB(255, 255, 255)
  15. }
  16.  
  17. -- first page
  18. local page = venyx:addPage("Main", 5012544693)
  19. local section1 = page:addSection("Main")
  20. local section2 = page:addSection("Keybind")
  21.  
  22. section1:addButton("Bring fruits(click)", function()
  23. local playerhead = game.Players.LocalPlayer.Character.Head
  24. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  25. if v.Name == "TouchInterest" and v.Parent then
  26. firetouchinterest(playerhead, v.Parent, 0)
  27. end
  28. end
  29. end)
  30.  
  31. section1:addButton("Alt+Click = Remove alt(doing again bring it back)", function()
  32. local Plr = game:GetService("Players").LocalPlayer
  33. local Mouse = Plr:GetMouse()
  34.  
  35. Mouse.Button1Down:connect(function()
  36. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftAlt) then return end
  37. if not Mouse.Target then return end
  38. if Mouse.Target.Transparency == 0 then
  39. Mouse.Target.Transparency = 1
  40. Mouse.Target.CanCollide = false
  41. elseif Mouse.Target.Transparency == 1 then
  42. Mouse.Target.Transparency = 0
  43. Mouse.Target.CanCollide = true
  44. end
  45. end)
  46. end)
  47.  
  48. section1:addButton("Ctrl+Click in any npc head = kill", function()
  49. local Plr = game:GetService("Players").LocalPlayer
  50. local Mouse = Plr:GetMouse()
  51.  
  52. Mouse.Button1Down:connect(function()
  53. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  54. if not Mouse.Target then return end
  55. Mouse.Target:Destroy()
  56. end)
  57. end)
  58. --sec 2
  59. section2:addKeybind("Close gui key", Enum.KeyCode.One, function()
  60. print("Activated Keybind")
  61. venyx:toggle()
  62. end, function()
  63. print("Changed Keybind")
  64. end)
  65. section2:addColorPicker("ColorPicker", Color3.fromRGB(50, 50, 50))
  66. section2:addColorPicker("ColorPicker2")
  67. section2:addSlider("Slider", 0, -100, 100, function(value)
  68. print("Dragged", value)
  69. end)
  70. -- second page
  71. local theme = venyx:addPage("Theme", 5012544693)
  72. local colors = theme:addSection("Colors")
  73.  
  74. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  75. colors:addColorPicker(theme, color, function(color3)
  76. venyx:setTheme(theme, color3)
  77. end)
  78. end
  79. --page 3
  80. local page = venyx:addPage("Guis", 5012544693)
  81. local section1 = page:addSection("Gui")
  82. local section2 = page:addSection("Cant click the X?")
  83.  
  84. section1:addButton("Haki shop", function()
  85. game:GetService("Players").LocalPlayer.PlayerGui.HakiShop.Enabled = true
  86. end)
  87.  
  88. section1:addButton("Codes", function()
  89. game:GetService("Players").LocalPlayer.PlayerGui.Code.BK.Visible = true
  90. end)
  91.  
  92. section1:addButton("Katana shop", function()
  93. game:GetService("Players").LocalPlayer.PlayerGui.KatanaShop.Enabled = true
  94. end)
  95.  
  96. section2:addButton("Undo haki shop", function()
  97. game:GetService("Players").LocalPlayer.PlayerGui.HakiShop.Enabled = false
  98. end)
  99.  
  100. section2:addButton("Undo Codes", function()
  101. game:GetService("Players").LocalPlayer.PlayerGui.Code.BK.Visible = false
  102. end)
  103.  
  104. section2:addButton("Undo Katana shop", function()
  105. game:GetService("Players").LocalPlayer.PlayerGui.KatanaShop.Enabled = false
  106. end)
  107. --page 4
  108. local page = venyx:addPage("Insta kill boss", 5012544693)
  109. local section1 = page:addSection("Kill :)")
  110.  
  111. section1:addButton("Only work if theres no one else than you at the boss", function()
  112. print('read')
  113. end)
  114.  
  115. section1:addButton("Buggy", function()
  116. game:GetService("Workspace").Mob["Buggy [Lv.20]"].Head:Destroy()
  117. end)
  118.  
  119. section1:addButton("??? boss", function()
  120. game:GetService("Workspace").Mob["??? [Lv.250]"].Head:Destroy()
  121. end)
  122.  
  123. section1:addButton("Thor", function()
  124. game:GetService("Workspace").Mob["Thor [Lv.350]"].Head:Destroy()
  125. end)
  126.  
  127. section1:addButton("Enma", function()
  128. game:GetService("Workspace").Mob["Enma [Lv.400]"].Head:Destroy()
  129. end)
  130.  
  131. section1:addButton("Ryuma", function()
  132. game:GetService("Workspace").Mob["Ryuma [Lv.500]"].Head:Destroy()
  133. end)
  134.  
  135. section1:addButton("Shanks", function()
  136. game:GetService("Workspace").Mob["Shank [Lv.900]"].Head:Destroy()
  137. end)
  138.  
  139. section1:addButton("Monkey error", function()
  140. game:GetService("Workspace").Mob["Monkey Error [Lv.75]"].Head:Destroy()
  141. end)
  142.  
  143. section1:addButton("Mihawk", function()
  144. game:GetService("Workspace").Mob["Mihawk [Lv.1000]"].Head:Destroy()
  145. end)
  146.  
  147. section1:addButton("Sandia kimistuu", function()
  148. game:GetService("Workspace").Mob["Sandia kimistuu [Lv.200]"].Head:Destroy()
  149. end)
  150. -- load
  151. venyx:SelectPage(venyx.pages[1], true) -- no default for more freedom
Advertisement
Add Comment
Please, Sign In to add comment