Advertisement
NiceBBMBThai

Gui Free Icon08

Apr 21st, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. local XanaxUILib = loadstring(game:HttpGet("https://pastebin.com/raw/XZz3Ytbu"))()
  2. local Ui = XanaxUILib:CreateWindow("Example UI")
  3. local Info = Ui:CreateSection("Info")
  4. local ExampleSection = Ui:CreateSection("Example")
  5.  
  6. Info:CreateLabel("Made by Dylan Exploits#9999")
  7. Info:CreateLabel("This is a UI Library example")
  8. Info:CreateButton("Destroy UI", function() XanaxUILib.functions:DestroyGUI() end)
  9.  
  10. ExampleSection:CreateLabel("This is label")
  11. ExampleSection:CreateButton("This is button", function() print("This is function") end)
  12. ExampleSection:CreateToggle("This is toggle", "This is flag", function(Toggled) print("This is optional argument", Toggled) end)
  13. ExampleSection:CreateSlider("This is walkspeed slider", "WalkSpeed", 16, 100, false, function(ws)
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = ws
  15. end)
  16. ExampleSection:CreateDropdown("Gender", "Default Text", "GenderFlag", {"Gay", "Lesbian", "Bi", " ", "White"}, function(chosenOption)
  17. if chosenOption == "Gay" then
  18. local m = Instance.new("Message")
  19. m.Parent = game.CoreGui
  20. m.Text = "Allahu Akbar Sweetie"
  21. wait(2)
  22. Instance.new("Explosion", game.Players.LocalPlayer.Character.HumanoidRootPart)
  23. m:Destroy()
  24. return
  25. end
  26. print("ur safe my dude")
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement