Yingyang005

Premium panel key

Jan 20th, 2025 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. -- Chargement d'OrionLib
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3.  
  4. -- Création de la fenêtre principale
  5. local Window = OrionLib:MakeWindow({Name = "PremiumPanel|YIN HUB", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionConfig"})
  6.  
  7. -- Création d'un onglet
  8. local Tab = Window:MakeTab({
  9. Name = "Scripts",
  10. Icon = "rbxassetid://4483345998",
  11. PremiumOnly = false
  12. })
  13.  
  14. -- Variable pour contrôler l'exécution en boucle
  15. local isRunning = false
  16.  
  17. -- Fonction pour exécuter l'événement en boucle
  18. local function executeEventLoop()
  19. while isRunning do
  20. local args = {
  21. [1] = "p)AuXQ,^|U"
  22. }
  23.  
  24. game:GetService("ReplicatedStorage").Event.Remote.Tower.ButtonPut:FireServer(unpack(args))
  25. wait(1) -- Attendre 1 seconde entre chaque exécution pour éviter une surcharge du serveur
  26. end
  27. end
  28.  
  29. -- Créer un toggle pour contrôler l'exécution de l'événement
  30. Tab:AddToggle({
  31. Name = "Run Script Infinitely",
  32. Default = false,
  33. Callback = function(Value)
  34. isRunning = Value
  35. if isRunning then
  36. coroutine.wrap(executeEventLoop)()
  37. end
  38. end
  39. })
  40.  
  41. -- Fonction pour activer l'auto click
  42. local function autoClick()
  43. for _, tycoon in pairs(game:GetService("Workspace")["Zednov's Tycoon Kit"].Tycoons:GetChildren()) do
  44. if tycoon:FindFirstChild("PurchasedObjects") then
  45. local clicker = tycoon.PurchasedObjects:FindFirstChild("Mine") and tycoon.PurchasedObjects.Mine:FindFirstChild("Clicker")
  46. if clicker and clicker:FindFirstChild("ProximityPrompt") then
  47. fireproximityprompt(clicker.ProximityPrompt)
  48. end
  49. end
  50. end
  51. end
  52.  
  53. -- Ajout d'un bouton Auto Click
  54. Tab:AddButton({
  55. Name = "Auto Click",
  56. Callback = function()
  57. autoClick()
  58. end
  59. })
  60.  
  61. -- Fonction pour supprimer la durée de maintien
  62. local function removeDuration()
  63. local PP = game:GetService("Workspace").EScroll:FindFirstChild("PP")
  64. if PP and PP:FindFirstChild("ProximityPrompt") then
  65. PP.ProximityPrompt.HoldDuration = 0
  66. end
  67. end
  68.  
  69. -- Ajout d'un bouton Remove Duration
  70. Tab:AddButton({
  71. Name = "Remove Duration",
  72. Callback = function()
  73. removeDuration()
  74. end
  75. })
  76.  
  77. -- Ajout de toggles
  78. Tab:AddToggle({
  79. Name = "Auto Quiz Solver",
  80. Default = false,
  81. Callback = function(kdss)
  82. _G.toggles1dss = kdss or false
  83. while _G.toggles1dss and wait(2) do
  84. for i, v in pairs(game:GetService("Workspace")["TimedEvent_Quiz"]:GetDescendants()) do
  85. if string.find(v.Name, "AnswerTarget") and v:FindFirstChild("OnDied") then
  86. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame + v.HumanoidRootPart.CFrame.lookVector * -1
  87. end
  88. end
  89. wait(0.4)
  90. plr = game.Players.LocalPlayer.Character
  91. game:GetService("Workspace")[plr.Name].Combat.Attack:FireServer()
  92. local N = game:GetService("VirtualInputManager")
  93. N:SendKeyEvent(true, "F", false, game)
  94. end
  95. end
  96. })
  97.  
  98. -- Initialisation de l'interface
  99. OrionLib:Init()
  100.  
Advertisement
Add Comment
Please, Sign In to add comment