-- if you don’t understand please create ticket on our server https://discord.gg/pTmc8uEqJr -- start gui local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/scarlet1837/gui-scarlet-script/refs/heads/main/library.lua"))() -- rename the gui local gui, sidebar, mainFrame = library:CreateMainGUI("Scarlet Script") -- tabs local homeTab = library:CreateTab("Home", sidebar, mainFrame) local creditsTab = library:CreateTab("Credits", sidebar, mainFrame) -- Create buttons for the Home tab local homeButton = library:CreateButton("Scarlet Script", homeTab, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/scarlet1837/a/main/Tpwalk"))() end) -- Create a button for the Credits tab local creditsButton = library:CreateButton("Script Test", creditsTab, function() -- Add your script code here end) local creditsLabel = library:CreateLabel("version 1.0 or whatever", creditsTab) library:Initialize()