Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Chargement d'OrionLib
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- -- Création de la fenêtre principale
- local Window = OrionLib:MakeWindow({Name = "PremiumPanel|YIN HUB", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionConfig"})
- -- Création d'un onglet
- local Tab = Window:MakeTab({
- Name = "Scripts",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- -- Variable pour contrôler l'exécution en boucle
- local isRunning = false
- -- Fonction pour exécuter l'événement en boucle
- local function executeEventLoop()
- while isRunning do
- local args = {
- [1] = "p)AuXQ,^|U"
- }
- game:GetService("ReplicatedStorage").Event.Remote.Tower.ButtonPut:FireServer(unpack(args))
- wait(1) -- Attendre 1 seconde entre chaque exécution pour éviter une surcharge du serveur
- end
- end
- -- Créer un toggle pour contrôler l'exécution de l'événement
- Tab:AddToggle({
- Name = "Run Script Infinitely",
- Default = false,
- Callback = function(Value)
- isRunning = Value
- if isRunning then
- coroutine.wrap(executeEventLoop)()
- end
- end
- })
- -- Fonction pour activer l'auto click
- local function autoClick()
- for _, tycoon in pairs(game:GetService("Workspace")["Zednov's Tycoon Kit"].Tycoons:GetChildren()) do
- if tycoon:FindFirstChild("PurchasedObjects") then
- local clicker = tycoon.PurchasedObjects:FindFirstChild("Mine") and tycoon.PurchasedObjects.Mine:FindFirstChild("Clicker")
- if clicker and clicker:FindFirstChild("ProximityPrompt") then
- fireproximityprompt(clicker.ProximityPrompt)
- end
- end
- end
- end
- -- Ajout d'un bouton Auto Click
- Tab:AddButton({
- Name = "Auto Click",
- Callback = function()
- autoClick()
- end
- })
- -- Fonction pour supprimer la durée de maintien
- local function removeDuration()
- local PP = game:GetService("Workspace").EScroll:FindFirstChild("PP")
- if PP and PP:FindFirstChild("ProximityPrompt") then
- PP.ProximityPrompt.HoldDuration = 0
- end
- end
- -- Ajout d'un bouton Remove Duration
- Tab:AddButton({
- Name = "Remove Duration",
- Callback = function()
- removeDuration()
- end
- })
- -- Ajout de toggles
- Tab:AddToggle({
- Name = "Auto Quiz Solver",
- Default = false,
- Callback = function(kdss)
- _G.toggles1dss = kdss or false
- while _G.toggles1dss and wait(2) do
- for i, v in pairs(game:GetService("Workspace")["TimedEvent_Quiz"]:GetDescendants()) do
- if string.find(v.Name, "AnswerTarget") and v:FindFirstChild("OnDied") then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame + v.HumanoidRootPart.CFrame.lookVector * -1
- end
- end
- wait(0.4)
- plr = game.Players.LocalPlayer.Character
- game:GetService("Workspace")[plr.Name].Combat.Attack:FireServer()
- local N = game:GetService("VirtualInputManager")
- N:SendKeyEvent(true, "F", false, game)
- end
- end
- })
- -- Initialisation de l'interface
- OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment