Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('Example')
  3. w:Section('Top')
  4. local t = w:Toggle('Example Toggle', {flag = "toggle1"})
  5. local b = w:Button("Example Button", function()
  6. print(w.flags.toggle1)
  7. end)
  8. w:Section('Middle')
  9. local old = workspace.CurrentCamera.FieldOfView
  10. local s = w:Slider("FOV", {
  11. min = math.floor(workspace.CurrentCamera.FieldOfView);
  12. max = 120;
  13. flag = 'fov'
  14. }, function(v)
  15. workspace.CurrentCamera.FieldOfView = v;
  16. end)
  17. local b2 = w:Button('Reset FOV', function()
  18. s:Set(old)
  19. end)
  20. w:Section('Bottom')
  21.  
  22. local box = w:Box('WalkSpeed', {
  23. flag = "ws";
  24. type = 'number';
  25. }, function(new, old, enter)
  26. print(new, old, enter)
  27. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(new)
  28. end)
  29.  
  30. w:SearchBox("gamers", {
  31. location = shared;
  32. flag = "memes";
  33. list = {
  34. "kiriot";
  35. "magikmanz";
  36. "gamer vision";
  37. "ironbrew";
  38. "wally";
  39. "firefox";
  40. "this is epic";
  41. }
  42. }, warn)
  43.  
  44. w:Dropdown("locations", {
  45. location = _G;
  46. flag = "memes";
  47. list = {
  48. "jewelryin";
  49. "jewelryout";
  50. 'bank';
  51. 'gas';
  52. 'prison';
  53. 'crimbase1';
  54. 'crimbase2';
  55. }
  56. }, function(new)
  57. warn(new)
  58. print(_G.memes)
  59. end)
  60.  
  61. w:Bind("Kill Player", {
  62. flag = "killbind";
  63. kbonly = true;
  64. default = Enum.KeyCode.RightAlt;
  65. }, function()
  66. game.Players.LocalPlayer.Character:BreakJoints()
  67. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement