Advertisement
hacimiks

Finity

Apr 9th, 2024 (edited)
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. local Finity = loadstring(game:HttpGet("https://raw.githubusercontent.com/GhostDuckyy/Ui-Librarys/main/Project%20%20Finity/source.lua", true))();
  2. local FinityWindow = Finity.new(true) -- 'true' means dark mode is enabled
  3.  
  4.  
  5. local FinityCategory = FinityWindow:Category("Main") -- name is the name of the FinityCategory
  6. local FinitySector = FinityCategory:Sector("Auto Farm") -- name is the name of the FinityCategory
  7. local FinityCheat = FinitySector:Cheat("Checkbox", "Auto Win", function (NewValue)
  8.     print(NewValue)
  9. end, {})
  10.  
  11. local FinityCategory2 = FinityWindow:Category("Miscellaneous") -- name is the name of the FinityCategory
  12. local FinitySector2 = FinityCategory2:Sector("Extras") -- name is the name of the FinityCategory
  13. local FinityCheat2 = FinitySector2:Cheat("Checkbox", "Infinite Jump", function (NewValue)
  14.     print(NewValue)
  15. end, {})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement