function Notify(titletxt, text, time) local GUI = Instance.new("ScreenGui") local Main = Instance.new("Frame", GUI) local title = Instance.new("TextLabel", Main) local message = Instance.new("TextLabel", Main) GUI.Name = "NotificationOof" GUI.Parent = game.CoreGui Main.Name = "MainFrame" Main.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) Main.BorderSizePixel = 0 Main.Position = UDim2.new(1, 5, 0, 50) Main.Size = UDim2.new(0, 330, 0, 100) title.BackgroundColor3 = Color3.new(0, 0, 0) title.BackgroundTransparency = 0.89999997615814 title.Size = UDim2.new(1, 0, 0, 30) title.Font = Enum.Font.SourceSansSemibold title.Text = titletxt title.TextColor3 = Color3.new(1, 1, 1) title.TextSize = 17 message.BackgroundColor3 = Color3.new(0, 0, 0) message.BackgroundTransparency = 1 message.Position = UDim2.new(0, 0, 0, 30) message.Size = UDim2.new(1, 0, 1, -30) message.Font = Enum.Font.SourceSans message.Text = text message.TextColor3 = Color3.new(1, 1, 1) message.TextSize = 16 wait(0.1) Main:TweenPosition(UDim2.new(1, -330, 0, 50), "Out", "Sine", 0.5) wait(time) Main:TweenPosition(UDim2.new(1, 5, 0, 50), "Out", "Sine", 0.5) wait(0.6) GUI:Destroy(); end Notify("Made by", "Discord: Abstract#9034 , V3rm: AbstractPoo", 3) local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))() local Main = library:CreateWindow({ text = "Main" }) local Rebirth = library:CreateWindow({ text = "Rebirth" }) local Egg = library:CreateWindow({ text = "Egg" }) Rebirth:AddButton("Quick Rebirth", function() game.ReplicatedStorage.RebirthEvents.requestRebirth:InvokeServer(1) end) Rebirth:AddBox("Mass Rebirth Amount", function(object, focus) _G.RebirthAmount = tonumber(object.Text) end) Rebirth:AddButton("Mass Rebirth", function() game.ReplicatedStorage.RebirthEvents.requestRebirth:InvokeServer(_G.RebirthAmount) end) _G.enabled = false Main:AddToggle("Autosell", function(state) _G.enabled = not _G.enabled while true do if _G.enabled ~= true then break end game:GetService("Workspace").Rings.Sellx2.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) wait() end end) _G.onting = false Main:AddToggle("Autofarm", function(state) _G.onting = not _G.onting local Magnet = game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") while true do if _G.onting ~= true then break end game.ReplicatedStorage.Events.MagnetEvents.requestGrab:FireServer("6080000000", Magnet) wait() end end) Main:AddButton("Remove Sell GUI", function() game.Players.LocalPlayer.PlayerGui.GameHUD.FullBackpack:ClearAllChildren() game.Players.LocalPlayer.PlayerGui.GameHUD.FullBackpack:Destroy() end) Main:AddButton("Hide Sell Ring", function() game.Workspace.Rings.Sellx2.Transparency = 1 end) Egg:AddBox("Egg Name", function(object, focus) _G.EggName = tostring(object.Text) end) Egg:AddButton("Buy Egg", function() game.ReplicatedStorage.PetEvents.requesthatch:FireServer(_G.EggName) end) Egg:AddToggle("Auto Buy Egg", function(state) _G.ree = not _G.ree while true do if _G.ree ~= true then break end game.ReplicatedStorage.PetEvents.requesthatch:FireServer(_G.EggName) wait() end end) Main:AddLabel("Made by AbstractPoo v3rm")