Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
- local w = library:CreateWindow("Made By Egor On Roblox/ roblox profile = egopka15") -- Creates the window
- local b = w:CreateFolder("open2") -- Creates the folder(U will put here your buttons,etc)
- b:Label("Pretty Useless NGL",{
- TextSize = 25; -- Self Explaining
- TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
- BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
- })
- b:Button("egors admin",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/NDWVxt9T"))();
- end)
- b:Toggle("Toggle",function(bool)
- shared.toggle = bool
- print(shared.toggle)
- end)
- b:Slider("Slider",{
- min = 10; -- min value of the slider
- max = 50; -- max value of the slider
- precise = true; -- max 2 decimals
- },function(value)
- print(useless)
- end)
- b:Dropdown("Dropdown",{"A","B","C"},true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
- print(mob)
- end)
- b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
- print("Yes")
- end)
- b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color) --Default color
- print(color)
- end)
- b:Box("Box","number",function(value) -- "number" or "string"
- print(value)
- end)
- b:Button("keyboard",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
- end)
- --[[
- How to refresh a dropdown:
- 1)Create the dropdown and save it in a variable
- local yourvariable = b:Dropdown("Hi",yourtable,function(a)
- print(a)
- end)
- 2)Refresh it using the function
- yourvariable:Refresh(yourtable)
- How to refresh a label:
- 1)Create your label and save it in a variable
- local yourvariable = b:Label("Pretty Useless NGL",{
- TextSize = 25; -- Self Explaining
- TextColor = Color3.fromRGB(255,255,255);
- BgColor = Color3.fromRGB(69,69,69);
- })
- 2)Refresh it using the function
- yourvariable:Refresh("Hello") It will only change the text ofc
- ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement