Advertisement
F6_youssef

Arsenal

Jan 1st, 2024
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3.  
  4. local Window = OrionLib:MakeWindow({Name = "Omg ahh Hub", HidePremium = false, IntoText = "omg ahhh Hub"})
  5.  
  6. local Tab = Window:MakeTab({
  7. Name = "Combat",
  8. Icon = "rbxassetid://4483345998",
  9. PremiumOnly = false
  10. })
  11.  
  12. local Section = Tab:AddSection({
  13. Name = "Combat Section"
  14. })
  15.  
  16. OrionLib:MakeNotification({
  17. Name = "Title!",
  18. Content = "Welcom"..player..Name.."",
  19. Image = "rbxassetid://4483345998",
  20. Time = 5
  21. })
  22.  
  23.  
  24. Tab:AddButton({
  25. Name = "AimBot",
  26. Callback = function()
  27. print("button pressed")
  28. end
  29. })
  30.  
  31.  
  32. Tab1:AddToggle({
  33. Name = "pop",
  34. Default = true,
  35. Save = true,
  36. Flag = "toggle"
  37. })
  38.  
  39. print(OrionLib.Flags["toggle"].Value) -- prints the value of the toggle.
  40.  
  41.  
  42.  
  43.  
  44. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement