Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2. local example = library:CreateWindow({
  3. text = "Example"
  4. })
  5.  
  6. local credits = library:CreateWindow({text='Credits'})
  7. credits:AddLabel("Credits\nInori: Dragging\nwally: UI\n")
  8.  
  9. example:AddBox("WalkSpeed", function(object, focus)
  10. if focus then
  11. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  12. end
  13. end)
  14.  
  15. example:AddButton("Pfhaxx", function()
  16. loadstring(game:HttpGet("https://pastebin.com/raw/3QTyfCnH", true))()
  17. end)
  18.  
  19. example:AddButton("Mr Spy", function()
  20. loadstring(game:HttpGet("https://pastebin.com/raw/hYPZCW3i", true))()
  21. end)
  22.  
  23. example:AddLabel("Now isnt that epic?");
  24.  
  25. local dropdown;
  26. dropdown = example:AddDropdown({'Synapse', 'ProtoSmasher', 'Elysian', 'SirHurt', 'Visenya', 'Sk8r', 'JJSploit', 'Axon', 'Axon Infinite', 'Venyx', 'Game Ended', 'Ventura', 'Proxo', 'P4.0'}, function(a)
  27. if a == 'Elysian' then
  28. dropdown:Refresh({'A', 'B', 'C'})
  29. end
  30. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement