Advertisement
wallop560

Untitled

Feb 8th, 2021
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1.  
  2. local library = loadstring(game:HttpGet('https://raw.githubusercontent.com/wallop560/wallopshub/main/ui%20lib.lua'))()
  3.  
  4. local win = library:Window('Test')
  5.  
  6. local Tab1 = win:Tab('Tab1')
  7. local sliderammount = 12
  8. Tab1:Slider('Fov',10,100,12,function(val)
  9. sliderammount = val
  10. workspace.CurrentCamera.FieldOfView = val
  11. end)
  12.  
  13. Tab1:Toggle('Pogchamp?',true,function(val)
  14. print(val)
  15. end)
  16.  
  17. Tab1:Button('print slider',function()
  18. print(sliderammount)
  19. end)
  20.  
  21. Tab1:DropDown('gamer?',{'yes','gamer','wowpog','wierdchamp','dropdown?','no','magic'},function(val)
  22. print(val)
  23. end)
  24.  
  25. Tab1:Box('No','String',function(val)
  26. print(val)
  27. end)
  28.  
  29. Tab1:Box('HH','Number',function(val)
  30. print(val)
  31. end)
  32. local players = {}
  33. for i,v in next,game.Players:GetPlayers() do
  34. players[v.Name] = v.Name
  35. end
  36.  
  37. local PlayerDD = Tab1:DropDown('Goto Plr',players,function(val)
  38. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[val].Character.HumanoidRootPart.CFrame
  39. end)
  40.  
  41. game.Players.PlayerAdded:Connect(function(v)
  42. players[v.Name] = v.Name
  43. PlayerDD.refresh(players)
  44. end)
  45. game.Players.PlayerRemoving:Connect(function(val)
  46. players[v.Name] = nil
  47. PlayerDD.refresh(players)
  48. end)
  49. local keybind = Enum.KeyCode.G
  50. local UIS = game:GetService('UserInputService')
  51. Tab1:Bind('ClickTp',Enum.KeyCode.G,function(val)
  52. keybind = val
  53. end)
  54. UIS.InputBegan:Connect(function(val)
  55. if val.KeyCode == keybind then
  56. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer:GetMouse().Hit.p + Vector3.new(0,5,0))
  57. end
  58. end)
  59. local Tab2 = win:Tab('Settings')
  60. Tab2:Bind('ToggleBind',Enum.KeyCode.T,function(val)
  61. library.ToggleBind = val
  62. end)
  63. Tab2:Bind('TabsBind',Enum.KeyCode.F,function(val)
  64. library.TabsBind = val
  65. end)
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement