local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ToggleButton = Instance.new("TextButton") local UIPadding = Instance.new("UIPadding") ScreenGui.Name = "MemeHubGUI" ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.BorderSizePixel = 0 MainFrame.Position = UDim2.new(0.35, 0, 0.35, 0) MainFrame.Size = UDim2.new(0, 400, 0, 120) MainFrame.Active = true MainFrame.Draggable = true UIPadding.Parent = MainFrame UIPadding.PaddingTop = UDim.new(0, 5) UIPadding.PaddingLeft = UDim.new(0, 5) UIPadding.PaddingRight = UDim.new(0, 5) UIPadding.PaddingBottom = UDim.new(0, 5) Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Title.BorderSizePixel = 0 Title.Size = UDim2.new(1, 0, 0, 30) Title.Font = Enum.Font.GothamBold Title.Text = "Meme Hub | Prove Mom Wrong by Becoming Rich Tycoon" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 14 Title.TextXAlignment = Enum.TextXAlignment.Center ToggleButton.Name = "ToggleButton" ToggleButton.Parent = MainFrame ToggleButton.BackgroundColor3 = Color3.fromRGB(50, 200, 50) ToggleButton.Position = UDim2.new(0.5, -75, 0.6, 0) ToggleButton.Size = UDim2.new(0, 150, 0, 30) ToggleButton.Font = Enum.Font.GothamBold ToggleButton.Text = "Turn ON" ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.TextSize = 14 ToggleButton.AutoButtonColor = true local enabled = false local running = true task.spawn(function() while running do if enabled then pcall(function() ReplicatedStorage:WaitForChild("Events"):WaitForChild("changeLater"):InvokeServer() end) end task.wait(0.1) end end) ToggleButton.MouseButton1Click:Connect(function() enabled = not enabled ToggleButton.Text = enabled and "Turn OFF" or "Turn ON" ToggleButton.BackgroundColor3 = enabled and Color3.fromRGB(200, 50, 50) or Color3.fromRGB(50, 200, 50) end)