Advertisement
NiceBBMBThai

Gui Free Icon21

Apr 22nd, 2021
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. local CoastingLibrary = loadstring(game:HttpGet("https://pastebin.com/raw/3gQQtaKX"))()
  2.  
  3. local AimbotTab = CoastingLibrary:CreateTab("Aimbot")
  4. local MainSection = AimbotTab:CreateSection("Main")
  5. local ConfigSection = AimbotTab:CreateSection("Config")
  6.  
  7. MainSection:CreateButton("Click Me!", function()
  8. print("Boo!")
  9. end)
  10.  
  11. MainSection:CreateLabel("Namey", "Hello!")
  12.  
  13. MainSection:CreateToggle("Aimbot", function(boolean)
  14. print("Aimbot:", boolean)
  15. end)
  16.  
  17. MainSection:CreateSlider("Field Of View", 0, 150, 50, false, function(value)
  18. print("Field of View: " .. value)
  19. end)
  20.  
  21. ConfigSection:CreateColorPicker("Field of View Color", Color3.fromRGB(255, 255, 255), function(color)
  22. print("Field Of View Color:", color)
  23. end)
  24.  
  25. ConfigSection:CreateDropdown("Type", {"Mouse", "Character"}, 1, function(option)
  26. print("Type: " .. option)
  27. end)
  28.  
  29. ConfigSection:CreateKeybind("Aimbot Bind", Enum.KeyCode.Unknown, false, true, function(boolean)
  30. print("Aimbot Active:", boolean)
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement