local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Hatch a Brainrot", "DarkTheme") local Tab = Window:NewTab("Menu") local Section = Tab:NewSection("Menu") Section:NewButton("Server Legendary Luck for 3 minutes", "ButtonInfo", function() -- Services local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Remote local OnlyLegendaryGamepass = ReplicatedStorage.OnlyLegendaryGamepass -- RemoteEvent OnlyLegendaryGamepass:FireServer() print("Clicked") end) Section:NewButton("Get Legendary Lucky Block", "ButtonInfo", function() -- Services local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Remote local GiveLegendaryblock = ReplicatedStorage.GiveLegendaryblock -- RemoteEvent GiveLegendaryblock:FireServer() print("Clicked") end) Section:NewButton("Get Mythic Lucky Block", "ButtonInfo", function() -- Services local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Remote local GiveMythic = ReplicatedStorage.GiveMythic -- RemoteEvent GiveMythic:FireServer() print("Clicked") end) Section:NewButton("Server Luck for 15 minutes", "ButtonInfo", function() -- Generated with Sigma Spy Github: https://github.com/depthso/Sigma-Spy -- Services local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Remote local ServerLuckGamepass = ReplicatedStorage.ServerLuckGamepass -- RemoteEvent ServerLuckGamepass:FireServer() print("Clicked") end) Section:NewButton("Robux Hammer", "ButtonInfo", function() -- Services local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Remote local GiveHammer = ReplicatedStorage.GiveHammer -- RemoteEvent GiveHammer:FireServer() print("Clicked") end)