-- Here how to use it 🎀 -- Simple G2GUI Test Script with White Theme local G2GUI = loadstring(game:HttpGet("https://pastefy.app/J741xvzK/raw"))() local window = G2GUI:CreateWindow("G2GUI", 300, "White") -- Change it guys to Black Theme if you want 🎀 -- Add a ( Test Button ) window:Button("Test Button", function() print("Button clicked!") end) -- Add a ( Test Toggle ) window:Toggle("Test Toggle", false, function(state) print("Toggle is now: " .. tostring(state)) end) -- Add a (Test Textbox) window:Textbox("Name", "Enter text here", function(text) print("You entered: " .. text) end) -- I'm too lazy to make Readme.dm for it hehe Print("Welcome")