local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "TestMenu" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local OpenButton = Instance.new("TextButton") OpenButton.Size = UDim2.new(0,100,0,40) OpenButton.Position = UDim2.new(0,10,0.5,-20) OpenButton.Text = "Open" OpenButton.Parent = ScreenGui local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0,250,0,180) Frame.Position = UDim2.new(0.5,-125,0.5,-90) Frame.Visible = false Frame.Parent = ScreenGui local AutoGreen = Instance.new("TextButton") AutoGreen.Size = UDim2.new(0.9,0,0,40) AutoGreen.Position = UDim2.new(0.05,0,0.1,0) AutoGreen.Text = "Auto Green: OFF" AutoGreen.Parent = Frame local UnlockAll = Instance.new("TextButton") UnlockAll.Size = UDim2.new(0.9,0,0,40) UnlockAll.Position = UDim2.new(0.05,0,0.4,0) UnlockAll.Text = "Unlock All: OFF" UnlockAll.Parent = Frame OpenButton.MouseButton1Click:Connect(function() Frame.Visible = not Frame.Visible end) local green = false AutoGreen.MouseButton1Click:Connect(function() green = not green AutoGreen.Text = "Auto Green: "..(green and "ON" or "OFF") end) local unlock = false UnlockAll.MouseButton1Click:Connect(function() unlock = not unlock UnlockAll.Text = "Unlock All: "..(unlock and "ON" or "OFF") end)